What type of Java statement(s) stores a value in a variable?
A. input
B. output
C. assignment
D. Both an input statement and an assignment statement
Answer: D
Computer Science & Information Technology
You might also like to view...
A ________ network can contain servers as well as individual computers
A) switch B) star C) client/server D) peer-to-peer
Computer Science & Information Technology
Given the following pseudocode, how many conditions will be tested if 70 is input?
``` Start Read GRADENUM CASENTRY GRADENUM CASE 60 < GRADENUM ? 80 GRADE = “A’ CASE 59 ? GRADENUM ? 70 GRADE = “B’ CASE 50 < GRADENUM ? 60 GRADE = “C’ CASE other GRADE = “No Grade” ENDCASE Write GRADE Stop ``` a) 1 b) 2 c) 3 d) 4
Computer Science & Information Technology