Solved

Consider the Following Program Segment

Question 25

Multiple Choice

Consider the following program segment. Consider the following program segment.   Which of the following statements at Line 3 can be used to open the file progdata.dat and input data from this file into x and y at Line 4? A)  inFile.open( progdata.dat ) ; B)  inFile(open, progdata.dat ) ; C)  open.inFile( progdata.dat ) ; D)  open(inFile, progdata.dat ) ; Which of the following statements at Line 3 can be used to open the file progdata.dat and input data from this file into x and y at Line 4?


A) inFile.open("progdata.dat") ;
B) inFile(open,"progdata.dat") ;
C) open.inFile("progdata.dat") ;
D) open(inFile,"progdata.dat") ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions