Static in Java

Static in Java

Professional Development

8 Qs

quiz-placeholder

Similar activities

Java Strings and lops

Java Strings and lops

Professional Development

10 Qs

Test - condicionales y bucles

Test - condicionales y bucles

Professional Development

11 Qs

Python quiz

Python quiz

University - Professional Development

10 Qs

SDT1

SDT1

Professional Development

10 Qs

Skill Development - Debugging Practice1

Skill Development - Debugging Practice1

10th Grade - Professional Development

10 Qs

CEH Pre Assessment

CEH Pre Assessment

Professional Development

10 Qs

PDS - 04225 Pointers & Dynamic Arrays - Chapter 8

PDS - 04225 Pointers & Dynamic Arrays - Chapter 8

University - Professional Development

10 Qs

C# Quiz

C# Quiz

Professional Development

10 Qs

Static in Java

Static in Java

Assessment

Quiz

Computers

Professional Development

Practice Problem

Hard

Created by

DEVAKI AMIR

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

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

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. class Test1 {

    public

        static void main(String[] args)

        {

            int x = 20;

            System.out.println(x);

        }

        static

        {

            int x = 10;

            System.out.print(x + " ");

        }

    }

10 20

20 10

10 10

20 20

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

class Test1 {

    static int x = 10;

public

    static void main(String[] args)

    {

        Test1 t1 = new Test1();

        Test1 t2 = new Test1();

  

        t1.x = 20;

        System.out.print(t1.x + " ");

        System.out.println(t2.x);

    }

}

10 10

20 20

10 20

20 10

Answer explanation

static variable is class level variable. if we do update in any reference then automatically all pointing reference value are changed.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

class Test1 {

    int x = 3;

public

    static void main(String[] args)

    {

        System.out.println(x);

    }

    static

    {

        System.out.print(x + " ");

    }

}

3 3

Error

Exception

None

Answer explanation

If we are trying to print the instance variable inside the static block or static method without creating class instance then it will give the error : non-static variable x cannot be referenced from a static context.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

class Test1 {

    static int i = 1;

public static void main(String[] args)

    {

        int i = 1;

        for (Test1.i = 1; Test1.i < 10; Test1.i++) {

            i = i + 2;

            System.out.print(i + " ");

        }

    }

}

1 3 9

1 2 3 … 9

3 5 7 9 11 13 15 17 19

None

Answer explanation

Here, two different i copies of variable are declared, one is static and other one is local. If we write Test1.i then, static variable is executed and if we write only i, then local variable are executed.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

class Test1 {

    static int i = 1;

public static void main(String[] args)

    {

        for (int i = 1; i < 10; i++) {

            i = i + 2;

            System.out.print(i + " ");

        }

    }

}

3 6 9

3 6 9 …. 27

Error

Answer explanation

Here local variables are printed after execution. If we want to execute static variables, then we write Test1.i or we write Test1 object.i.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

  1. class overload

  2. {int x;

  3. int y;

  4. void add(int a){

  5. x = a + 1;

  6. }

  7. void add(int a, int b){

  8. x = a + 2;

  9. }}

  10. class Overload_methods{

  11. public static void main(String args[]){

  12. overload obj = new overload();

  13. int a = 0;

  14. obj.add(6);

  15. System.out.println(obj.x);

  16. }

  17. }

5

6

7

8

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

  1. class overload{

  2. int x;

  3. double y;

  4. void add(int a , int b){

  5. x = a + b;}

    void add(double c , double d){

  6. y = c + d;}

  7. overload(){

  8. this.x = 0;

  9. this.y = 0;

  10. }

  11. }

  12. class Overload_methods{

  13. public static void main(String args[]){

  14. overload obj = new overload();

  15. int a = 2;

  16. double b = 3.2;

  17. obj.add(a, a);

  18. obj.add(b, b);

  19. System.out.println(obj.x + " " + obj.y);

  20. }

  21. }

6 6

6.4 6.4

6.4 6

4 6.4

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?