Computer Quiz(Java)(16-10-2020)

Computer Quiz(Java)(16-10-2020)

9th Grade

10 Qs

quiz-placeholder

Similar activities

Code.org APCSA Unit

Code.org APCSA Unit

9th - 12th Grade

10 Qs

JavaScript Quiz

JavaScript Quiz

9th - 10th Grade

15 Qs

Python-Basic

Python-Basic

3rd Grade - University

15 Qs

Introduction to Arrays

Introduction to Arrays

KG - University

10 Qs

AP CSA Unit 1 & 2 Review

AP CSA Unit 1 & 2 Review

9th - 12th Grade

10 Qs

Java Math

Java Math

9th - 12th Grade

15 Qs

operators(part-1)

operators(part-1)

9th Grade

10 Qs

JAVA: Level-1

JAVA: Level-1

5th - 12th Grade

15 Qs

Computer Quiz(Java)(16-10-2020)

Computer Quiz(Java)(16-10-2020)

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Sherlin Anup

Used 30+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. What will be the output of the following program code?

int a=0,b=30,c=40;

a=--b+c++ +b;

System.out.println(a);

97

90

98

100

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

int a=27;

a/=3;

System.out.println(a);

24

30

9

3

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The method which returns the value of the argument a which may be of either float or double data type rounded to the nearest integer is ________________

Math.ceil(a)

Math.floor(a)

Math.round(a)

Math.rint(a)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A bug in a program that causes it to operate incorrectly, but not to terminate abnormally is ______________

Syntax Error

Semantics Error

Logical Error

Runtime Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which among the following forms of Operators works with three Operands?

Unary

Binary

Ternary

Tertiary

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Give the output of the following code.

class op

{

public static void main(String args[])

{

int m=0,n=0;

int p=--m*--n*n--*m--;

System.out.println(p);

}

}

1

0

-1

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Give the output of the following code?

public class op7

{

public static void main(String args[])

{

int i=11;

int j=i++ +i--;

System.out.println(j);

}

}

21

22

23

20

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?