testquiz

testquiz

University

25 Qs

quiz-placeholder

Similar activities

Fundamentals of programming Quiz

Fundamentals of programming Quiz

University

25 Qs

SAS Dasar Program Keahlian RPL Kelas X

SAS Dasar Program Keahlian RPL Kelas X

10th Grade - University

25 Qs

Pretest Alpro Dasar

Pretest Alpro Dasar

University

20 Qs

UNIT-4-EXCEPTION-HANDLING & I/O BASICS

UNIT-4-EXCEPTION-HANDLING & I/O BASICS

University

30 Qs

Java MCQs on Syntax and Semantics

Java MCQs on Syntax and Semantics

University

20 Qs

Week 3-4

Week 3-4

University

25 Qs

PPL (Quiz 5)  Procedures and Functions

PPL (Quiz 5) Procedures and Functions

University

25 Qs

DSA (QUIZ 6) Hashing, Graphs, Advanced Graph Algorithms, and DP

DSA (QUIZ 6) Hashing, Graphs, Advanced Graph Algorithms, and DP

University

20 Qs

testquiz

testquiz

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Ahmad Awais

Used 3+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

int[] arr = {2, 4, 6, 8};

System.out.println(arr[arr.length - 2]);

2

6

8

4

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which component would best be used for multiline text input in Swing?

JTextField

JTextArea

JPasswordField

JLabel

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is true about 2D arrays?

All rows must be the same length

You can't use indexes with them

They can only be declared dynamically

They can be jagged

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What does the following recursive function return?

int func(int n) {

if (n <= 0) return 1;

return n * func(n - 1); }

System.out.println(func(3));

3

9

6

1

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In exception handling, finally block:

Executes only if an exception occurs

Never executes

Always executes

Executes after catch only

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following can be used to catch an exception?

try-catch

catch-finally

try-finally

throw-catch

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which method is used to write text to a file?

File.read()

File.write()

write() of FileWriter

Scanner.next()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?