Answer:
Explanation:
iname=input("Enter the file name: ")
inputfile=open(iname,'r')
lines=[]
for line in inputfile:
lines.append(line)
inputfile.close()
print("The file has ",len(lines)," lines")
while True:
linenumber=int(input("Enter the line number or 0 to quit: "))
if linenumber==0:
break
elif linenumber > len(lines):
print("Error: line number must be less than ", len(lines))
else:
print(linenumber, " : ", lines[linenumber - 1])
Answer:
C. BMP
Explanation:
BMP is a simple bitmap image format developed by Microsoft and IBM.
It's used almost exclusively on the Microsoft Windows operating system these days, was used on OS/2. It's the format the basic MS Paint program, that comes with Windows, edits its file in.
It's also a basic graphic format to use for programmers.
Of course GIF, PDF, TIFF and PNG are also used on Windows, as well as on most other operating system.
The correct answer is A it transfers control to the next loop in the program.
The most valid answer is that the break statement Exits the loop and continues executing the program, but assuming that there are other loops, the control of the program will go to them since the first loop is broken out of.
Answer:
Decode. To change how information is represented so that it can be read by a person.
Explanation:
Decoding is the ability to apply your knowledge of letter-sound relationships, including knowledge of letter patterns, to correctly pronounce written words. Understanding these relationships gives children the ability to recognize familiar words quickly and to figure out words they haven't seen before.