Answer:
A
Explanation:
The main output of Project palnning is project plan.
Answer:
All of these choices
Explanation:
Clarity → the quality of being coherent and intelligible.
Sincerity → the quality of being free from pretense, deceit, or hypocrisy
Open mind → Open-mindedness is receptiveness to new ideas.
Answer:
Page view and outline view available in "View" Tab.
Explanation:
<u>Page View:</u>
<u>There are four types of page views available in word.</u>
<u>1. Normal: </u>(Useful when we need to write more text in word)
<u>2. Web layout: </u>(Use only when we are creating a website)
<u>3. Print layout: </u>(It is used to show the left, right, top and bottom margin for printing)
<u>4. Outline View:</u> (Used to make outline of whole document)
Answer:
atof
Explanation:
atof function is used to convert a string to a double.
It takes a single parameter of type const char * and returns a double value.
The function signature is: double atof (const char* str);
In order to use this function in the code, you need to include the header file <stdlib.h>
For example:
#include <stdio.h>
#include <stdlib.h>
int main()
{
char str[5] = "0.01";
double d = atof(str);
printf("Value = %f\n", d);
return 0;
}