In general, there are two types of files which are Select one: A. static and dynamic. B. encrypted and unencrypted. C. text and binary. D. delimited and unlimited. {Ans: text and binary}A loop that repeats a specific number of times is known as a(s) Select one: A. count-controlled. B. pretest. C. infinite. D. conditional. {Ans: count-controlled}What will be the value of x after the following code is executed? int x = 10, y = 20; while (y<100){ x += y; y += 20; } Select one: A. 110 B. 210 C. 130 D. 90 {Ans: 210}Given the following statement, which statement will write the string "Calvin" to the file DiskFile.txt? PrintWriter diskOut = new PrintWriter("DiskFile.txt"); Select one: A. DiskFile.println("Calvin"); B. System.out.println(diskOut, "Calvin"); C. diskOut.println("Calvin"); D. PrintWriter.println("Calvin"); {Ans: diskOut.println("Calvin");}What will be the value of x after the following code is executed? int x = 10; while (x<100){ x += 100; } Select one: A. 10 B. 110 C. 90 D. 100 {Ans: 100}A(n) ________ is a special value that cannot be mistaken as a member of a list of data items and signals that there are no more data items to be processed. Select one: A.