Answer:
2.working ... heading.
3. demoting ...document
4: creating .......Navigation view
Explanation:
The outline view shows the document uniquely. It leverages advantage from the Word's style of heading for sorting out the problems of the groups by helping then arrange their thoughts, plotlines, and the ideas, as well as mix in the text for helping to arrange the thoughts. Hence, 2 and 3 are correct options. Also, the headings are displayed on the navigation view. And hence the fourth option is also correct.
Devices designed primarily to be used with a company network are called thin clients.
Over here lol- it’s pretty cool
Answer:Following is the C program:-
#include <stdio.h>
int fun()//function fun of return type int and it returns value 6.
{
return 6;
}
int main() {
int a, b;
a = 10;
b = a + fun();//adds 6 to a.
printf("With the function call on the right, ");
printf("\n%d ",b);//printing b..
return 0;
}
Output:-
With the function call on the right,
16
Explanation:
The function fun return the value 6 so it adds 6 to a and stores the result in b.
Answer:
Image result for what is the name of the fields in an x.509 digital certificate that are used when the parties negotiate a secure connection?
Common applications of X. 509 certificates include SSL/TLS and HTTPS for authenticated and encrypted web browsing, signed and encrypted email via the S/MIME protocol, code signing, document signing, client authentication, and government-issued electronic ID.
Explanation: