Third Year Placement Training Revision Test

Third Year Placement Training Revision Test

University

10 Qs

quiz-placeholder

Similar activities

GIT COURSE

GIT COURSE

University

13 Qs

basic computer design

basic computer design

University

10 Qs

Network Management Week 14

Network Management Week 14

University

10 Qs

Python List

Python List

4th Grade - University

15 Qs

Determining System Requirements

Determining System Requirements

University

11 Qs

1.1.1 The structure and function of the processor

1.1.1 The structure and function of the processor

11th Grade - University

15 Qs

ITF Chapter 1 Computing Devices

ITF Chapter 1 Computing Devices

University

14 Qs

INTRODUCCION A LA PROGRAMACION

INTRODUCCION A LA PROGRAMACION

6th Grade - University

10 Qs

Third Year Placement Training Revision Test

Third Year Placement Training Revision Test

Assessment

Quiz

Computers

University

Practice Problem

Medium

Created by

Prema Selvam

Used 28+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Number of primitive data types in Java are?

6

7

8

9

2.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Find the output of the following code.

int Integer = 24;

char String = 'I';

System.out.print(Integer);

System.out.print(String);

Compile error

Throws exception

I

24 I

3.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Find the output of the following program.

public class Solution {

public static void main(String[] args) {

short x = 10;

x = x * 5;

System.out.print(x); } }

50

10

Compile error

Syntax Error

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

How many times will 'Interview' be printed?

int count = 101;

do {

System.out.println('Interview');

count++;

} while (count < 10);

8

9

10

1

5.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Find the output:

int n = 12345;

int r = 0;

while (n > 0) {

r = n % 10;

System.out.println(r); }

54321

12345

Compile Error

Infinite Loop

6.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Consider the following user inputs one by one as 10, java for the below program:

import java.util.Scanner;

public class extra1 {

public static void main(String[] args) {

Scanner s = new Scanner(System.in);

int a = s.nextInt();

System.out.println(a); } }

10.0, Error

10, Error

Java, 10

10, java

7.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What is the purpose of the PATH environment variable in Java?

To locate Java libraries

To store Java bytecode

To locate the Java compiler

To optimize Java code

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?