Answer:
Following are the statement in C++ language :
#include <iomanip> // header file
using namespace std; // namespace
int main() // main method
{
int x1,x2,x3,x4,x5; // variable declaration
cout<<" Enter the 5 sucessive integer:";
cin>>x1>>x2>>x3>>x4>> x5; // taking 5 input from user
cout<<right;
// prints each of its own line and form a right-justified
cout<<setw(5)<< x1 << "\n" << setw(5) << x2 << "\n" <<setw(5) << x3 << "\n" << setw(5) << x4 << "\n" << setw(5) << x5 << "\n";
return(0);
}
Output:
Enter the 5 sucessive integer: 45
23
445
6
8
45
23
445
6
8
Explanation:
Description of program is given below
- Declared a 5 integer value x1,x2,x3,x4,x5 respectively.
- Read the 5 integer value from user by using cin funtion.
- Finally Print these 5 value in its own line and form a right-justified by using setw() function on it
Errrrrrrrrrrrr....... you can’t accept the cheque then, it’s wrong morally and legally. The cheque will bounce because you won’t accept it
Answer:
Dissipate heat
Explanation:
As CPU works efficiently while there is cool
Answer:
The following statement is False.
Explanation:
The following statement is not true because the rootkit is an application that provides unauthorized access to the computer or any program and it is the software that is intended to harm the computer system. So, that's why the rootkit is not used to create a flood of the network traffic in the user's system.
Pros: Readability. Unique closing reserved words on compound
statements will enhance readability and flexibility of a language. When an
endwhile or an endif in a program is written by someone else, it is vivid which
block is ending. Using braces is much harder is sometimes much harder to read.
Cons: Writability. They have the disadvantage of writability
and thus, complicating the language by increasing the number of keywords. Use
of more of these reserved words mean less words available for the programmer.