Answer:
hardware is a physical installation while software is onling and not a physical thing u can touch u know?
B. ensure that he has enough IP addresses for the networks and subnets to account for the vNICS that are in bridging mode.
The program is an illustration of file manipulations
<h3>What are file manipulations?</h3>
File manipulations are program statements that are used to write & append to file, and also read from the file
<h3>The actual program in Python</h3>
Assume the file name is top10.txt, the program in Python where comments are used to explain each line is as follows:
#This opens the file
a_file = open("top10.txt")
#This reads the file contents
file_contents = a_file.read()
#This prints the contents
print(file_contents)
Read more about file manipulations at:
brainly.com/question/15683939
Take this one step at a time. Your teacher has given you the code for step 1. Now write step 2. Then 3, and so on.
For step 2: if you're using Python v2.x you'd use a line like
guess = int( raw_input( "Take another guess: " ) )
For Python v3.x it would be:
guess = int( input( "Take another guess: " ) )
Break it down into small pieces, it's not a complicated assignment.
I guess the correct answer is VARCHAR, DATE, CHAR
VARCHAR - Hοlds a variablе lеngth string (can cοntain lеttеrs, numbеrs, and spеcial charactеrs). Thе maximum sizе is spеcifiеd in parеnthеsis. Can stοrе up tο 255 charactеrs.
DATE - A datе. Fοrmat: YYYY-MM-DD
CHAR - Hοlds a fixеd lеngth string (can cοntain lеttеrs, numbеrs, and spеcial charactеrs). Thе fixеd sizе is spеcifiеd in parеnthеsis. Can stοrе up tο 255 charactеrs