0

programming languages Online Quiz - 255

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

program helloworld(output); var I: Integer; begin WriteLn('Hello, World!'); for I := 1 to 10 do WriteLn(I); end

  1. C

  2. PASCAL

  3. ADA

  4. LISP


Correct Option: B

000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. HELLOWORLD. 000300 000400* 000500 ENVIRONMENT DIVISION. 000600 CONFIGURATION SECTION. 000700 SOURCE-COMPUTER. RM-COBOL. 000800 OBJECT-COMPUTER. RM-COBOL. 000900 001000 DATA DIVISION. 001100 FILE SECTION. 001200 100000 PROCEDURE DIVISION. 100100 100200 MAIN-LOGIC SECTION. 100300 BEGIN. 100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS. 100500 DISPLAY "Hello world!" LINE 15 POSITION 10. 100600 STOP RUN. 100700 MAIN-LOGIC-EXIT. 100800 EXIT.

  1. COBOL

  2. LISP

  3. FORTRAN

  4. BASIC


Correct Option: A

AI Explanation

To answer this question, you need to identify the programming language used in the given code snippet.

The correct answer is A) COBOL. This option is correct because the code snippet uses the syntax and structure specific to COBOL programming language. The code contains COBOL-specific sections such as IDENTIFICATION DIVISION, ENVIRONMENT DIVISION, DATA DIVISION, and PROCEDURE DIVISION. Additionally, it includes COBOL-specific statements like DISPLAY and STOP RUN.

with Text_To; use Text_To procedure hello is begin put("Hello World"); end hello

  1. LISP

  2. PROLOG

  3. ADA

  4. BASIC


Correct Option: C

hello_world :- write('Hello World!').

  1. PROLOG

  2. PYTHON

  3. PASCAL

  4. PERL


Correct Option: A

C++ main() { cout << "Hello World!"; return 0; }

  1. C

  2. JAVA

  3. C#

  4. C++


Correct Option: D

JAVA class myfirstprog { public static void main(String args[]) { System.out.println("Hello World!"); } }

  1. JAVA

  2. Visual BASIC

  3. C++

  4. C#


Correct Option: A

Identify the programming language

  1. PERL

  2. LISP

  3. FORMAC

  4. LOGO


Correct Option: B

10 PRINT "Hello World!" 20 GOTO 10

  1. PYTHON

  2. Z

  3. CSP

  4. BASIC


Correct Option: D

PROGRAM HELLO WRITE(,) 'Hello World' END PROGRAM

  1. ALGOL

  2. FORTRAN

  3. COBRA

  4. IDL


Correct Option: B

main() { cout << "Hello World!"; return 0; }

  1. C#

  2. C++

  3. JAVA

  4. C


Correct Option: B

class myfirstprog { public static void main(String args[]) { System.out.println("Hello World!"); } }

  1. JAVA

  2. C#

  3. JavaScript

  4. PYTHON


Correct Option: A

Find a character in a string. Choose the correct one.

  1. substr

  2. find_first_of

  3. find_last_of

  4. compare


Correct Option: B

Find character in string from the end. Choose the correct one.

  1. find_last_of

  2. find_first_not_of

  3. data

  4. find


Correct Option: A

Append character to string

  1. erase

  2. copy

  3. push_back

  4. swap


Correct Option: C

Return size of allocated storage

  1. length

  2. size

  3. max_size

  4. capacity


Correct Option: D

Which of the following statements regarding threads is true?

  1. A thread dies as soon as the execution of the start() method ends.

  2. A thread's priority can be specified as an argument to its constructor

  3. A sleeping thread can be made runnable by invoking notify().

  4. A thread can call notify() on an object only if it holds the lock on that object.


Correct Option: D

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) A thread dies as soon as the execution of the start() method ends. This option is incorrect because a thread continues to execute even after the start() method ends. The start() method is responsible for creating a new thread and invoking the run() method of that thread. The thread will continue to execute until the run() method completes or until it is explicitly interrupted or terminated.

Option B) A thread's priority can be specified as an argument to its constructor. This option is correct. When creating a new thread in Java, you can specify its priority using the Thread class constructor. The thread priority range is from 1 to 10, where 1 is the lowest priority and 10 is the highest priority.

Option C) A sleeping thread can be made runnable by invoking notify(). This option is incorrect. The notify() method is used to wake up a thread that is waiting on a specific object's monitor. It does not make a sleeping thread runnable. To make a sleeping thread runnable, you need to use the interrupt() method to interrupt the sleep and resume the execution of the thread.

Option D) A thread can call notify() on an object only if it holds the lock on that object. This option is correct. In Java, a thread can only call the notify() method on an object if it currently holds the lock (synchronized) on that object. This ensures that only the thread that has acquired the lock can notify other threads waiting on the same object's monitor.

The correct answer is: D. This option is correct because a thread can call notify() on an object only if it holds the lock on that object.

You have created a TimeOut class as an extension of Thread, the purpose being to print a "Time's Up" message if the Thread is not interrupted within 10 seconds of being started. Here is the run method that you have coded. 1. public void run() 2. { 3. System.out.println("Start!"); 4. try 5. { 6. Thread.sleep(10000); 7. System.out.println("Time's Up!"); 8. } 9. catch(InterruptedException e) 10. { 11. System.out.println("Interrupted!"); 12. } 13. } Given that a program creates and starts a TimeOut object, which of the following statements is true?

  1. Exactly 10 seconds after the start method is called, "Time's Up!" will be printed.

  2. Exactly 10 seconds after "Start!" is printed, "Time's Up!" will be printed.

  3. The delay between "Start!" being printed and "Time's Up!" will be 10 seconds plus or minus one tick of the system clock.

  4. If "Time's Up!" is printed you can be sure that at least 10 seconds have elapsed since "Start!" was printed.


Correct Option: D

There are 10 threads waiting for the lock of an object. How will you bring the 5th thread myThread out of the waiting state?

  1. By calling notify(5)

  2. By calling notifyAll()

  3. By calling myThread.notify()

  4. By calling notify(myThread)

  5. None of these


Correct Option: D

Which of the following statements regarding the wait() method are correct? choose three

  1. It is an instance method of Object class.

  2. It is a static method of the Object class

  3. It is an instance method of Thread class.

  4. The Thread must have a lock on the object on which the wait() method is to be invoked

  5. An object can have only one Thread in a waiting state at a time

  6. It must be called in a synchronized code


Correct Option: A,D,F
- Hide questions