Answer:
The answer is "option a".
Explanation:
To resolve the automatic reboot problem we must change the CPU cooling fan because if we don't change a computer fan so, it will be heated and damage other components. This cooling fan used inside the CPU. It expels warm air from inside and moves air across the particular component. and other options are not correct that can be described as:
- In option b, power supply is used to turn on the computer. It is not used to solve the reboot problem.
- In option c, Motherboard is to serve as the base upon which a computer's components are built.
- In option d, It is primarily used to store the data.
Answer:
A virtual privte network is a particular type of network that uses circuits that run over the Internet but that appears to the user to be a private network.
The transitions between slides in a presentation are one of type of power point
Animation.
Animation is a set of effects which can be applied to objects in power point so that they will animate in the slideshow power point.motion paths allow objects to move around the slide show.
Answer:
True is the correct answer for the above question.
Explanation:
- The social website is used to connect the people using the internet to communicate. With the help of this, any people can communicate within the world's people.
- If anyone posts their pictures or comment on this type of website, then they need to care for that post or pictures. it means he needs to make decisions to choose the pictures or comments while posting.
- It is because when the user posts the wrong comments or pictures, then their popularity is less in front of the other people called society.
- This concept is also said by the question, hence it is a true statement.
Answer:
#include <iostream>
using namespace std;
int main()
{
int cookies;
cin >> cookies;
cout << "The calorie consumption is: " << cookies * 142 << endl;
return 0;
}
Explanation:
First line: include basic library of C++(input and output).
using namespace std;
Says to compiler we are using std.
int main() Main function
int cookies, cookies variable, of int type
cin >> cookies
get the number of the cookies from user
cout Print the text and calories(one cookie have 142 calories)
Have a nice day ;)