Answer: The correct answer is to hover the cursor over the different styles in the gallery.
Explanation: The fastest way to preview the different styles in the style gallery is to hover the cursor over each style. This will preview the style, without making the permanent change so that you can see how it looks without changing to each individual style.
Answer:
2.342m
Explanation:
Given
Time = 0.5 s
Height of Window = 2m
Because the pot was in view for a total of 0.5 seconds, we can assume that it took the cat 0.25 seconds to go from the bottom of the window to the top
Using this equation of motion
S = ut - ½gt²
Where s = 2
u = initial velocity = ?
t = 0.25
g = 9.8
So, we have.
2 = u * 0.25 - ½ * 9.8 * 0.25²
2 = 0.25u - 0.30625
2 + 0.30625 = 0.25u
2.30625 = 0.25u
u = 2.30625/0.25
u = 9.225 m/s ------------ the speed at the bottom of the pot
Using
v² = u² + 2gs to calculate the height above the window
Where v = final velocity = 0
u = 9.225
g = 9.8
S = height above the window
So, we have
0² = 9.225² - 2 * 9.8 * s
0 = 85.100625 - 19.6s
-85.100625 = -19.6s
S = -85.100625/19.6
S = 4.342
If 4.342m is the height above the window and the window is 2m high
Then 4.342 - 2 is the distance above the window
4.342 - 2 = 2.342m
Answer:
Following are the answer for the given question
for(int i=1;i<=99;++i) // for loop
{
cout<<"EXAM"<<endl; // display the word EXAM
}
Explanation:
In this question we using for loop which is iterating 99 times and print the
word "EXAM " 99 times.
The variable i is initialized by 1 and check the condition if the condition in loop is true it will execute the loop and print "EXAM" .The loop will executed 99 times when the condition in loop is false then loop become terminated.
Following are the program in c++
#include<iostream>// header file
using namespace std;
int main() // main method
{
for(int i=1;i<=99;++i) // for loop
{
cout<<"EXAM"<<endl; // display the word EXAM
}
return 0;
}
Answer:
"Crowdsourcing" is the correct answer for the above question.
Explanation:
- Crowdsourcing is a term from which any organization advertises the thinks or can get the ideas or solutions for any particular problem.
- It is a term that refers to the problem to the number of solvers to achieve the result correct and frequent.
- For example, If anyone wants to prepare the two websites. Then he assigns the works to the number of people and the works done faster with the help of this.
- The above question states that some websites can be successful with the help of the type of work. They are successful with the help of crowdsourced work. Because it saves time. So the answer is Crowdsourcing.