programming languages Online Quiz - 255
Description: programming languages Online Quiz - 255 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
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.
hello_world :- write('Hello World!').
C++ main() { cout << "Hello World!"; return 0; }
JAVA class myfirstprog { public static void main(String args[]) { System.out.println("Hello World!"); } }
Identify the programming language
int main() { printf("hello, world"); return 0; }
10 PRINT "Hello World!" 20 GOTO 10
PROGRAM HELLO WRITE(,) 'Hello World' END PROGRAM
main() { cout << "Hello World!"; return 0; }
Find character in string from the end. Choose the correct one.
Which of the following statements regarding threads is true?
There are 10 threads waiting for the lock of an object. How will you bring the 5th thread myThread out of the waiting state?
Which of the following statements regarding the wait() method are correct? choose three