0

programming languages Online Quiz - 8

Description: programming languages Online Quiz - 8
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

What is the output of the below JavaScript?


var bol = new Boolean();        
alert(bol);     

  1. false

  2. true

  3. error

  4. None of the above


Correct Option: A

    var str = "This is an Example";
    alert(str.replace("Example", "Error"));     

  1. Example

  2. Error

  3. This is an Example

  4. This is an Error


Correct Option: D

var one = ["a", "b", "c"];          
one.pop();          
alert(one);     

  1. a,b

  2. b,c

  3. error

  4. a,b,c


Correct Option: A

What is the output of the below JavaScript?


var one = ["a", "b", "c", "d"];         
alert(one.slice(-2));       

  1. error

  2. a,b

  3. a,b,c,d

  4. c,d


Correct Option: D
  1. The before() method will print 1 2

  2. The before() method will print 1 2 3

  3. The before() method will print three numbers, but the order cannot be determined

  4. The before() method will not compile

  5. The before() method will throw exception at runtime


Correct Option: E

Given:


import java.util.*;   
public class Magellan {   
  public static void main(String[] args) {   
    TreeMap myMap = new TreeMap();   
    myMap.put("a", "apple"); myMap.put("d", "date");   
    myMap.put("f", "fig"); myMap.put("p", "pear");   
    System.out.println("1st after mango: " +   // sop 1  
       myMap.higherKey("f"));  
     System.out.println("1st after mango: " +   // sop 2  
       myMap.ceilingKey("f"));  
     System.out.println("1st after mango: " +   // sop 3  
       myMap.floorKey("f"));  
     SortedMap sub = new TreeMap();  
     sub = myMap.tailMap("f");  
     System.out.println("1st after mango: " +   // sop 4  
       sub.firstKey());  
   }  
 }

Which of the System.out.println statements will produce the output 1st after mango: p?

  1. sop 1

  2. sop 2

  3. sop 3

  4. sop 4

  5. compilation fails


Correct Option: A
Explanation:

To solve this question, we need to understand the methods used in the given Java code. TreeMap is a class that implements the Map interface using a tree structure. It stores key-value pairs in a sorted order. The methods used in the given code are:

  • higherKey(Object key): Returns the least key strictly greater than the given key, or null if there is no such key.
  • ceilingKey(Object key): Returns the least key greater than or equal to the given key, or null if there is no such key.
  • floorKey(Object key): Returns the greatest key less than or equal to the given key, or null if there is no such key.
  • tailMap(K fromKey): Returns a view of the portion of this map whose keys are greater than or equal to fromKey.

Now, let's go through each option and determine which one will produce the output "1st after mango: p":

A. sop 1: This statement calls the higherKey() method on the TreeMap object with the argument "f". This returns the least key strictly greater than "f", which is "p". The output of this statement will be "1st after mango: p". Therefore, option A is correct.

B. sop 2: This statement calls the ceilingKey() method on the TreeMap object with the argument "f". This returns the least key greater than or equal to "f", which is "f" itself. The output of this statement will be "1st after mango: f". Therefore, option B is incorrect.

C. sop 3: This statement calls the floorKey() method on the TreeMap object with the argument "f". This returns the greatest key less than or equal to "f", which is "f" itself. The output of this statement will be "1st after mango: f". Therefore, option C is incorrect.

D. sop 4: This statement creates a new TreeMap object named sub using the tailMap() method on the existing TreeMap object myMap. The tailMap() method returns a view of the portion of this map whose keys are greater than or equal to "f". The sub.firstKey() method returns the first key in the sub map, which is "f". The output of this statement will be "1st after mango: f". Therefore, option D is incorrect.

E. compilation fails: There are no compilation errors in the given code. Therefore, option E is incorrect.

The Answer is: A. sop 1

Given:

import java.util.*;   
public class Looking {   
  public static void main(String[] args) {   
    String input = "1 2 a 3 45 6";   
    Scanner sc = new Scanner(input);   
    int x = 0;   
    do {  
       x = sc.nextInt();  
       System.out.print(x + " ");  
     } while (x!=0);  
   }  
 }

What is the result?

  1. 1 2

  2. 1 2 3 45 6

  3. 1 2 3 4 5 6

  4. 1 2 a 3 45 6

  5. 1 2 followed by an exception


Correct Option: E

SAS stands for

  1. Statistical Analysis System

  2. Statistical Analysis Systems

  3. Statistic Analysis System

  4. Statestical Analysis System


Correct Option: A

SAS is a

  1. Low Level Language

  2. High Level Language

  3. Machine Level Language

  4. Binary Level Language


Correct Option: B
  1. Sixth Generation Language

  2. Third Generation Language

  3. Fifth Generation Language

  4. Fourth Generation Language


Correct Option: D

SAS can be used to

  1. Data access

  2. Data management

  3. Data analysis

  4. All the above


Correct Option: D
- Hide questions