The thing to look for is compatible RAM, Processor and motherboard. Then I would choose my graphics card, hard drive, etc.
Answer:
Disadvantages of Batch Operating System:
- The computer operators should be well known with batch systems.
- Batch systems are hard to debug.
- It is sometime costly.
- The other jobs will have to wait for an unknown time if any job fails.
172.30.0.0: private network
10.20.1.0: public network
Answer:
The program to this question can be described as follows:
Program:
def ilovepython(): #defining a method
for i in range(3): #defining a loop that print messasge three times
print('I love Python')#print messasge
ilovepython() #calling the method
Output:
I love Python
I love Python
I love Python
Explanation:
Description of the python program can be described as follows:
- In the above Python program, a method "ilovepython" is defined, inside the method a for loop is used, inside the loop print method is used, that print the message "I love Python".
- In python for loop is used to iterate over series and we can execute a set of statements with the loop, tuple, series, once for each element in the list.