Answer:
Following are the program in C++ language :
#include <iostream> // header file
using namespace std; // using namespace
int main() // main method
{
int amount,total=0; // two int variable declaration
cout<<" enter amount:";
cin>>amount; // read input amount first time
total=total+amount; // first calculation
cout<<" enter amount:";
cin>>amount; //read input amount second time
total=total+amount;// second calculation
cout<<" enter amount:";
cin>>amount;// read input amount third time
total=total+amount;// third calculation
cout<<"total:"<<total; // display total
return 0;
}
Output:
enter amount:12
enter amount:12
enter amount:12
total:36
Explanation:
Following are the explanation of program which is mention above
- Declared the two variable total and amount of int type .
- Initialize the variable total to "0".
- Read the 3 input in "amount" variable in one by one by using cin function and adding their value to the "total "variable .
- Finally display the total.
A bar code is a series of bars and spaces representing numbers or letters.
<h3><u>
Explanation:</u></h3>
A method that is used for the purpose of representing a data in the form of a picture or image that can be easily understood by the machine. It consists of many lines that has different widths and spaces. They either represent the letter or a number. These are mainly used for the representation of data in the machine understandable format.
For example an UPC-A bar codes has 12 numbers. The numbering system is represented by the first digit. The manufacturer will be represented by the next five digits in it. The product will be represented by the five digits following it. Check digit is represented in the last digit.
Answer:
A) Array of buttons for<u> quick access </u>to commonly used <u>commands and tools</u>: Tool bar
That's what most people will use most of the time, to quickly perform the most common tasks.
B) <u>List of commands</u> to create, format and edit presentations: Menu Bar.
When the features listed in the tool bar aren't enough, we go to the Menu system, which lists all the features of the program.
C) <u>Provides info</u> about current slide<u> at the bottom</u> of the slide: Status Bar.
The status bar is always located at the <u>bottom of the screen</u>.
D) <u>Provides navigation</u> through the slides: Scroll bar.
Where you can scroll down and up your slides.

The correct answer is A. true.
It was written in 1948 by the bureau of Labor statistics .
HOPE IT HELPS YOU
Answer:
import java.io.*;
import java.util.Scanner;
class divide {
public static void main (String[] args) {
Scanner num=new Scanner(System.in);//scanner object.
int userNum=num.nextInt();
while(userNum>1)//while loop.
{
userNum/=2;//dividing the userNum.
System.out.print(userNum+" ");//printing the userNum.
}
}
}
Input:-
40
Output:-
20 10 5 2 1
Input:-
2
Output:-
1
Input:-
0
Output:-
No Output
Input:-
-1
Output:-
No Output.
Explanation:
In the program While loop is used.In the while loop it divides the userNum by 2 in each iteration and prints the value of userNum.The inputs and corresponding outputs are written in the answer.