Answer:
computer is one of the part of our technology so that let's take care of it and improve so that we can used for better and sufficient ly not maybe now but maybe soon.
 
        
                    
             
        
        
        
Geographically, the state of Ohio falls within the lines of latitude of 75 °W and 90 °W. The timezone corresponding to this portion of the globe is eastern standard time (EST). The prime meridian at 0 °, has the timezone greenwich mean time (GMT) from which all other timezones are referenced. And eastern standard time, local time in Ohio, will be 5 hours behind GMT.
        
                    
             
        
        
        
Answer:
#program in Python
#read until user Enter an integer
while True:
    #try block to check integer
    try:
        #read input from user
        inp = int(input("Enter an integer: "))
        #print input 
        print("The integer is: ",inp)
        break
    #if input is not integer
    except ValueError:
        #print message
        print("Wrong: try again.")
Explanation:
In try block, read input from user.If the input is not integer the print a message  in except block.Read the input until user enter an integer. When user enter an  integer then print the integer and break the loop.
Output:
Enter an integer: acs                                                                                                      
Wrong: try again.                                                                                                          
Enter an integer: 4a                                                                                                       
Wrong: try again.                                                                                                          
Enter an integer: 2.2                                                                                                      
Wrong: try again.                                                                                                          
Enter an integer: 12                                                                                                       
The integer is:  12  
 
        
                    
             
        
        
        
software programming like adobe flash.
 
        
             
        
        
        
Answer:
A nuclear power plant is actually a thermal power station in which the heat source is a nuclear reactor.
Explanation:
Ask me more if you want more.