Quiz Discussion

What will be the output of these statement?

public class output {
        public static void main(String args[]) 
        {
            double a, b, c;
            a = 3.0/0;
            b = 0/4.0;
            c = 0/0.0;
 
	        System.out.println(a);
            System.out.println(b);
            System.out.println(c);
        } 
    }

 

Course Name: Java

  • 1]

    Infinity

  • 2]

    0.0

  • 3]

    NaN

  • 4]

    all of the mentioned

Solution
No Solution Present Yet

Top 5 Similar Quiz - Based On AI&ML

Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api

# Quiz
1
Discuss

What will be the output of the following Java code? - Increment / Decrement

public class increment {
   public static void main(String args[]) 
     {        
         int g = 3;
         System.out.print(++g * 8);
     } 
}

 

  • 1]

    25

  • 2]

    24

  • 3]

    32

  • 4]

    33

Solution
2
Discuss

Which of these values can a boolean variable contain?

  • 1]

    True & False

  • 2]

    0 & 1

  • 3]

    Any integer value

  • 4]

    True

Solution
3
Discuss

What is the output of this program?

public class array_output {
        public static void main(String args[]) 
        {    
            char array_variable [] = new char[10];
            for (int i = 0; i < 10; ++i) {
                array_variable[i] = 'i';
                System.out.print(array_variable[i] + "" );
                i++;
            }
        } 
    }

 

  • 1]

    i i i i i

  • 2]

    0 1 2 3 4

  • 3]

    i j k l m

  • 4]

    None of the mentioned

Solution
4
Discuss

What will be the output of the following Java code? - Average

public class average {
   public static void main(String args[])
     {
         double num[] = {5.5, 10.1, 11, 12.8, 56.9, 2.5};
         double result;
         result = 0;
         for (int i = 0; i < 6; ++i) 
         {
           result = result + num[i];
         } 
	    System.out.print(result/6);
 
      } 
  }

 

  • 1]

    16.34

  • 2]

    16.566666644

  • 3]

    16.46666666666667

  • 4]

    16.46666666666666

Solution
5
Discuss

What is the output of this program?

public class mainclass {
        public static void main(String args[]) 
        {
            char a = 'A';
            a++;
            System.out.print((int)a);
        } 
    }

 

  • 1]

    66

  • 2]

    67

  • 3]

    65

  • 4]

    64

Solution
6
Discuss

What is the numerical range of a char data type in Java?

  • 1]

    -128 to 127

  • 2]

    0 to 256

  • 3]

    0 to 32767

  • 4]

    0 to 65535

Solution
7
Discuss

What is the range of byte data type in Java?

  • 1]

    -128 to 127

  • 2]

    -32768 to 32767

  • 3]

    -2147483648 to 2147483647

  • 4]

    None of the mentioned

Solution
8
Discuss

What is the output of below code snippet?

   double a = 0.02;
   double b = 0.03;
   double c = b - a;
   System.out.println(c);
 
   BigDecimal _a = new BigDecimal("0.02");
   BigDecimal _b = new BigDecimal("0.03");
   BigDecimal _c = b.subtract(_a);
   System.out.println(_c);

 

  • 1]

    0.009999999999999998
    0.01

  • 2]

    0.01
    0.009999999999999998

  • 3]

    0.01
    0.01

  • 4]

    0.009999999999999998
    0.009999999999999998

Solution
9
Discuss

What is the numerical range of a char data type in Java?Which of these coding types is used for data type characters in Java?

  • 1]

    -128 to 127 ASCII

  • 2]

    0 to 256 ISO-LATIN-1

  • 3]

    0 to 32767 UNICODE

  • 4]

    0 to 65535 UNICODE

Solution
10
Discuss

What is the range of short data type in Java?

  • 1]

    -128 to 127

  • 2]

    -32768 to 32767

  • 3]

    -2147483648 to 2147483647

  • 4]

    None of the mentioned

Solution
# Quiz