Operators QuizS2C Home « Operators Quiz
The questions in this Java quiz are on the topics covered in the Java - Beginning Java section of the site. The table below lists the lesson used for each quiz, a description of the lesson content and the quiz number and questions associated with that lesson.
Beginning Java Quizzes Summary
Click on a lesson in the table to go to that lesson for a refresher on the topics for that quiz.
Click on a quiz in the table to go straight to the quiz for a particular lesson.
Beginning Java Lessons | Description | Quiz Info. |
---|---|---|
Lesson 2 - Code Structure & Syntax | For this lesson we look at the code structure of a Java source file and look at some syntax. | Quiz1 8 questions |
Lesson 3 - Primitive Variables | This lesson is about the primitive variable data types available in Java. | Quiz2 8 questions |
Lesson 4 - Method Scope | In this lesson we look at Java method scope and what scope and its definition mean. | Quiz3 8 questions |
Lesson 5 - Operators | This lesson is the first of two about the symbols used in Java for mathematical and logical manipulation. | This quiz. 6 questions |
Lesson 6 - Bitwise Operators | In our second lesson on operators we look at the Java bitwise operators. | Quiz5 6 questions |
Lesson 7 - Conditional Statements | In this lesson we look at the conditional statements available in Java. | Quiz6 8 questions |
Lesson 8 - Loop Statements | This lesson is all about the loop statements available in Java. | Quiz7 8 questions |
Beginning Java Quiz 4
The quiz below tests your knowledge of the material learnt in Beginning Java - Lesson 5 - Operators.
Question 1 : What values do
a
and b
hold after the following expressions?int a = 5; int b = 10; b = a++;
- a = 6 and b = 5 as the the postfix increment is applied after the expression is evaluated.
Quiz Progress Bar
What's Next?
The next quiz on Java is all about Bitwise Operators.