Answer:
In the View tab, you will find Zoom Option. Set the Zoom level to 100%.
Explanation:
You need to set the Zoom level to 100%, And you can do this, by setting the zoom level to 100%, from the scroll bar. Or you can move to view tab in the main menu, and then in the Ribbon, you need to select the zoom % and set it to 100 percent. You will then be able to see the entire page. And if you want, you can increase the Zoom level to even further, for getting an even more clearer picture.
Answer:
#include <iostream>
#include<string.h>
using namespace std;
void printCharacter(string name){
for(int i=0;name[i]!='\0';i++){
cout<<name[i]<<endl;
}
}
int main()
{
string name;
cout<<"enter the name: ";
cin>>name;
printCharacter(name);
}
Explanation:
first include the two libraries iostream for input/output and string library for using the string.
then, create the main function and declare the variable type string.
cout instruction is used o display the message on the screen.
cin is used to store the value in the name variable.
after that, call the function. The program control move to the the function. In the function for loop is used to print the character one by one until end of the name.
Answer:
The following steps will help you design a safe and effective stretching program.
Explanation:
1. You will have to follow the ACSM's guidelines used for flexibility training.
2. evaluate your flexibility rate with the "sit-and-reach" test.
3. you have to also apply the basic principles of FITT in designing your own program.
4. have a "range-of-motion" tests performance.
5. make use of SMART guidelines when setting explicit flexibility goals.
Answer:
False.
Explanation:
The /tmp directory is a directory that contains files that are required temporarily and also for temporary storage of data.The data inside the /tmp directory gets deleted when the system boots or shuts down.Since the directory exists permanently the content inside it is temporary.
So we can conclude that the answer is False.
Answer:
The detail answer of this question is given in explanation section.
The simple answer is option B
Explanation:
Let took at each option:
A) an html tag
An html tag is used to start and end html document. It does not have anything to do with rendering.
B) a doctype declaration
The document type declaration is necessary because it tell the browser which version of html should be rendered.
C)Body tag tell the browser. it is the visible area of website.
D) A hear tag is used to clear meta data about website.