javaquizvivek

javaquizvivek

University

12 Qs

quiz-placeholder

Similar activities

pointers and structures

pointers and structures

University

10 Qs

Operating System - Chapter 1-1

Operating System - Chapter 1-1

University

10 Qs

TES AWAL MODUL 2

TES AWAL MODUL 2

University

10 Qs

Saintek Campus Day 2020

Saintek Campus Day 2020

University

16 Qs

CPP/C

CPP/C

University

10 Qs

โปรแกรมประมวลผลคำ บทที่ 1 ByKrujang

โปรแกรมประมวลผลคำ บทที่ 1 ByKrujang

University

10 Qs

Round 2 for Preplacement Bootcamp

Round 2 for Preplacement Bootcamp

University

15 Qs

Teste python- Unesp-Jaboticabal

Teste python- Unesp-Jaboticabal

University

10 Qs

javaquizvivek

javaquizvivek

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

VIVEK PANDEY

Used 25+ times

FREE Resource

AI

Enhance your content in a minute

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

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  class yes

{

public static void main(String[] args)

{

int Integer = 24;

char String  = 'I';

System.out.print(Integer);

System.out.print(String);

}}

    24 I

I

     Compilation error

none

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class yes

{

 public static void main(String[] args){

                     short x = 10;

                     x =  x * 5;

                     System.out.print(x);

}}

50

10

compilation error

none

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public static void main(String[] args){

                     byte x = 127;

                     x++;

                     x++;

              System.out.print(x);}

127

128

-127

-128

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public static void main(String[] args){

      int i=10;

      int j;

      if(i==10)

        {j=30; }

     System.out.print(j);}

10

30

20

error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public static void main(String[] args){

      int i=10;

      int j;

      if(i==10)

        {

           j=30;

        }

     else {j=70;}

     System.out.print(j);}

10

20

30

70

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

. Identify the keyword among the following that makes a variable belong to a class,rather than being defined for each instance of the class.

final

volatile

static

abstract

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public static void main(String[] args){

      System.out.println("before loop");

      for(int i=0; ;i++){

     System.out.print("Students");}

     System.out.println("after loop");}

  Students infinite times

Before loop

  After loop

error

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?