75.2k views
4 votes
Express in Qbasic assignment statement


v = \ √(t) ^(2) - 4s / {d}^(4)


K = {8}{x} ^(3) - {2}{y}^( 6) / {5}{d}+ {e}^(4)

User EFreak
by
4.5k points

1 Answer

4 votes

Answer:

v = sqr(t^(1/2)) - 4 * s / d^4

K = 8 * x^3 - 2 * y^6 / 5 * d + e^4

Step-by-step explanation:

Given


v = \ √(t) ^(2) - 4s / {d}^(4)


K = {8}{x}^(3) - {2}{y}^( 6) / {5}{d}+ {e}^(4)

Required

The equivalent in Q Basic

To solve this, we use the following rules:

+ , - and * are written as + , - and *


/ is written as /

^ stands for raise to power

SQR is used for square

^(1/2) stands for square root.

So, the equivalents of the above statements are:

v = SQR(t^(1/2)) - 4 * s / d^4

K = 8 * x^3 - 2 * y^6 / 5 * d + e^4

User Hans Kilian
by
4.1k points