Answer:
computer is an electronic machine that accept raw data ,process and then give result. it's uses:
It is used for storing data and information.
 
        
             
        
        
        
Answer:
# import the  turtle library
from turtle import *
# create a turtle space
space = Screen()
# create a turtle object
z = Turtle()
  
# create a single Z
z.forward(50)
z.right(120)
z.forward(100)
z.left(120)
z.forward(50)
  
# adjust the turtle position
z.up()
z.left...
Explanation:
 
        
             
        
        
        
C) fair use
Hope this helps... mark as Brainliest plz
        
             
        
        
        
The program is an illustration of loops.
Loops are used to perform repetitive and iterative operations.
The program in C++ where comments are used to explain each line is as follows:
#include <iostream>
using namespace std;
int main(){
    //This declares and initializes all variables
    string star = "*", blank = " ", temp;
    //The following iteration is repeated 8 times
    for (int i = 1; i <= 8; i++) {
        //The following iteration is repeated 8 times
        for (int j = 1; j <= 8; j++) {
            //This prints stars
            if (j % 2 != 0) {
                cout << star;
            }
            //This prints blanks
            else if (j % 2 == 0) {
                cout << blank;
            }
        }
        //This swaps the stars and the blanks
        temp = star;
        star = blank;
        blank = temp;
        //This prints a new line
        cout << endl;
    }
}
Read more about similar programs at:
brainly.com/question/16240864
 
        
             
        
        
        
Answer: False 
Explanation:
   The given statement is false as, a stored program computer is one of the type of computer system which storing the program instruction in the form of electronic memory. 
- It perform different types of tasks in the sequence and it also enables the digital computer system more effective and flexible. 
- In this stored program computer the program instructions are get stored on the plugboards. 
 Therefore, the given statement is false.