Answer: 10,5,0
Explanation: i think its 10,5,0
srry if its wrong
Answer:alphabetic keys, numeric keys, function keys and special keys.
Explanation:
answer to the google
i didn't knew it but i need points
Answer:C) Uninterruptible power supply
Explanation:Uninterruptible power supply(UPS) is the device that is used when the input source of power does not work or fails and thus it acts as a power supply in the emergency situation.This electronic devices in the protection of the hardware components of computer system etc.
Other option are incorrect because power strips, surge protector and password generator are no the devices that work during the power black out situation.Thus, the correct option is option(C).
Answer:
Following are the program in the C++ Programming Language.
#include <iostream> // header file
using namespace std; // namespace
int main() // main function
{
int n=8; //variable declaration
for(int k=n;n>=0;n-=2) // iterating over the loop to print the format
{
int n1=n;
for(int j=n1;n1>=0;n1-=2)
{
cout<<n1<<" "; // display the format
}
cout<<endl; // next line
}
return 0;
}
<u>Output</u>:
8 6 4 2 0
6 4 2 0
4 2 0
2 0
0
Explanation:
Following are the description of the program.
- Set an integer type variable "n" and initialize in it to 8.
- Set two for loop, the first loop iterate from the variable "n" that is 8 to 0 with decrement by 2 and next for loop also iterate from 8 to 0 then, print the value of the variable "n1".
- Finally, we break line after the second for loop.