Answer:
JAVA
for(int i = 50; i <= 100 i++;)
{
int cubedNum = Math.pow(i, 4);
System.out.println(cubedNum);
}
Explanation:
The For loop is set so that it will go the amount of times until the variable i reaches 100, then it will stop increasing i.
Then, we raise i to the 4th power in the loop, and then print it out.
<u><em>#teamtrees #PAW (Plant And Water)</em></u>
Answer:
there are 2 landscape and portrait
Explanation:
there are just 2 you can confirm using word and layout
Answer:
Wait. Then you try it again
Explanation:
You wait and try again later and if this still persists, you may have to check the optical drive from the drive manager peradventure there is an issue there probably a software issue, also you may have to clean the optical drive using the cleaner disc, likewise you may need to test an old disc on the optical drive to be sure the fault is not from the disc you inserted.
Answer:
(a) Correlated.
Explanation:
Correlated subquery :These sub queries reference columns from outer table or uses values from outer query.These sub queries are processed atleast once for every row processed.So because of this reason correlated sub queries can be slow.Since the query in the question also uses value from the outer query so it is a correlated query.