...

/

Practice Challenges for Fun

Practice Challenges for Fun

This lesson contains challenges to test what you have learned so far.

Quiz

Attempt the following quiz questions and check your understanding of the basics of Java.

Quiz questions

1

What are the general categories of Java identifiers?

( You can select multiple correct answers )

A)

Identifiers that we invent, such as sum and index

B)

Identifiers that other programmers have chosen, such as print and String

C)

Identifiers that are part of the Java language, such as private and if

D)

Identifiers that are part of the other language, such as cout and cin

Question 1 of 90 attempted

Challenge 1: Display the given phrase

What two Java statements will display the following phrase exactly as shown?

To be or
not to be
Press + to interact
class Solution
{
public static void displayPhrase()
{
// Write your code here
}
}
1.

What one Java statement will produce the output shown in Challenge 1?

To be or
not to be
Show Answer
Q1 / Q1
Did you find this helpful?

Challenge 2: Calculate and display the sales tax

...