Search Header Logo

Java Certification 1 (2025)

Authored by Bryan Campbell

Computers

9th - 12th Grade

26 Questions

Used 3+ times

Java Certification 1 (2025)
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

1.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

For very large numbers with decimals, which data type should be used?

Float

Short

Double

Boolean

Long

2.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

Where does a java program start executing instructions from:

class

source file

main method

object

3.

DROPDOWN QUESTION

1 min • 4 pts

Media Image

Using the dropdown menus, finish the following code so that the first print prints the number of characters in the s1 variable. The second print needs to print the hexadecimal version of s1.

public class Main {
  public static void main(String[] args) {
    String s1 = "bookworm reader";

int i1 =s1. (a)   ;

 System.out.println(i1);

String s2 = ​ (b)   ("​ (c)   ", i1);​

System.out.println(s2);

}

}

length
length();
%x
String.format
String.convert
%h
%e

4.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Which is not a compound assignment operator?

*=

/=

=

-=

5.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Which of the following statements about instance variables is true?

They are accessible only inside the method where they are declared.

They are shared across all instances of a class.

They are accessible anywhere inside the class but belong to an instance of the class.

They cannot have different values for different objects.

6.

DRAG AND DROP QUESTION

1 min • 4 pts

A new Java developer is trying to get a better understanding of how unary operators affect variables and their displayed values. Using drag and drop, match each print statement with its correct answer, using the following variable declarations:

int x = 13;

int y = 3;

​ ​​ (a)   3

​ (b)   ​ 14​ ​

​ (c)   ​ 12

​ (d)   13

System.out.println(y--);
System.out.println(++x);
System.out.println(x-=1)
System.out.println(x++);

7.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

What will be the output of this code?

String s="Stacey";

s.concat(" Green");

System.out.println(s);

s = "Robin Little";

Robin Little

Stacey Green

Stacey

Green

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?