
CS 141 Final Exam Competition
Quiz by Jenna Yee
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
__________ provides an integrated development environment for rapidly developing Java programs. Editing, compiling, building, debugging, and online help are integrated in one graphical user interface.
If you forget to put a closing quotation mark on a string, what kind of error will be raised?
Which of the following are correct names for variables according to Java naming conventions?
Every letter in a Java keyword is in lowercase?
To assign a value 1 to variable x, you write
25 % 1 is ____
Math.pow(4, 1 / 2) returns _____
What is the value of (double)(5/2)?
What does the following expression evaluate to? 2354 + 5 + "2" + 7 + (1 + 2)
Assume x = 4 and y = 5, which of the following is true?
Assume x= 4, which of the following is true?
What is Math.round(4.7)?
What is Math.ceil(10.7)?
Will System.out.println((char)4) display 4?
Suppose s1 and s2 are two strings. Which of the following statements or expressions is correct?
What is the return value of "SELECT".substring(4, 4)?
______ is a simple but incomplete version of a method.
If you declare an array double[] list = new double[5], the highest index in array list is
Assume int[] t = {0, 1, 2, 3, 4, 5}. What is t.length
Which of the following statements are valid?