Answer:
Live Preview
Explanation:
With Live Preview mode on in Microsoft Outlook while composing an email content, a user will be able to see effects of the when the mouse cursor is placed format for the text including, the text size, font of the text, the text color, which are immediately applied to the selected text to give a preview of what the effect of the editing function the cursor is hovering over can do.
A search stagey is useful because you can make complicated searches easily and also get reliable data.
Answer:
// here is code in C++.
#include<iostream>
using namespace std;
int main()
{
// declare variables
double num1, num2, mun3, t;
cout << "Enter three numbers: ";
// read the three numbers
cin >> num1 >> num2 >> mun3;
//sort the three numbers
if( num1>num2 )
{
t = num1;
num1 = num2;
num2 = t;}
if( num2>mun3 ){
t = num2;
num2 = mun3;
mun3 = t;}
if( num1>num2 ){
t = num1;
num1 = num2;
num2 = t;
}
// print the output
cout<<"numbers in ascending order:";
cout << num1 << " " << num2 << " " << mun3 << endl;
return 0 ;
}
Explanation:
Declare three variables to store the input. Read the value of all three variables. If first number is greater than second, then with the help of variable "t" swap the value of first and second.after that if second is greater than third number, swap them.In last if first number is greater than second one then swap them. This will sort the three numbers in ascending order.
Output:
Enter three numbers: 3 7 2
numbers in ascending order:2 3 7
Answer:
1. Unordered list.
Explanation:
Web development is the creation of web pages. A web page can be a portfolio or personal website, an e-store etc. The web page comprises of a header, body and a footer component.
The header is the introduction of the web page, it holds the brand name, logo and other introductory elements.
The body is the main content of the web page. It uses other elements like the list to hold a group of data. There two types of list, they are ordered and unordered list. The ordered list are numbered while the unordered list are dotted not numbered.
Lucy would use the unordered list to outline are accomplishments and certification in details.
Answer: Multithreaded
Explanation: Multithreaded program is the program that has the capability of supporting multiple execution through one thread. The multiple execution through single thread refers to the instructions that can take place simultaneously in a sequence manner.
Every instruction in the execution is provided with their own control unit which helps in flow control.Individual execution flow that takes place in sequence of instruction is called threads