programming languages Online Quiz - 40

programming languages Online Quiz - 40

20 Questions Published

Questions

Question 1 Multiple Choice (Multiple Answers)

There are 4 divisions in a cobol program. Which of the following is not one of them?

  1. Identification Division
  2. Linkage Division
  3. Data Division
  4. Procedure Division
Question 2 True/False

Cobol is self-documenting.

  1. True
  2. False
Question 3 Multiple Choice (Multiple Answers)

User defined names must follow which one of the following rules?

  1. Multiple word names must be separated with an underscore
  2. Names must be 10 or less characters
  3. Names must contain at least 1 alpha character in any position.
  4. Names must be lower case
Question 4 True/False

Cobol paragraphs contain sentences. A sentence must end in a period and can contain multiple statements.

  1. True
  2. False
Question 5 True/False

Sentences and statements must start on a new line.

  1. True
  2. False
Question 6 Multiple Choice (Single Answer)

When defining a file layout it is placed in the file section of the data division. Each record begins with an "01", a space, and the record name. Fields within a record traditionally began with 05?

  1. All of these answers.
  2. This is an alternate name for the 05 name.
  3. This is a breakdown of the 05 field.
  4. This is another format for the field.
Question 7 Multiple Choice (Single Answer)

Condition names are names associated with a field that take on a true/false status depending on whether their value is equal to the field value. They are indicated by a level number of what?

  1. 05
  2. 66
  3. 88
  4. 77
Question 8 True/False

If a field is defined as Pic s9(6)v99 comp-3, it uses 5 bytes of storage.

  1. True
  2. False
Question 9 True/False

If we are limited to 5 bytes of storage, is there be a way to store a complete 8 digit date?

  1. True
  2. False
Question 10 Multiple Choice (Single Answer)

You store it as YYYYMMDD in 8 bytes. What is the COBOL definition of this field?

  1. Pic Y(4)M(2)D(2)
  2. Pic date(yyyymmdd)
  3. Pic date(8)
  4. Pic X(8)
Question 11 Multiple Choice (Single Answer)

class PrintTest{ public static void main(String[] args) { double d=222.4578; System.out.printf(“% .2f”,d); } }

  1. Does not compile
  2. Throws IllegalFormatConversionException
  3. Prints 222.46
  4. Prints 222.45
Question 12 Multiple Choice (Single Answer)

What is the result of compiling and running the following code, assuming that the file bb.txt does not exist? class WriterTest{ public static void main(String[] args) throws IOException{ Writer w=new BufferedWriter(new FileWriter(“bb.txt”)); // Line1 w.write(1); // Line2 w.close(); } }

  1. Compiler error
  2. FileNotFoundException thrown at line 1
  3. IOException thrown at line 2
  4. None of these
Question 13 Multiple Choice (Single Answer)

Which of the following statements are true about the default implementation of the public int hashCode() method of the Object class?

  1. The Object class does not provide any implementation for the hashCode method; every class must override it
  2. As far as it may be practically possible, the hashCode method defined by the Object class does return distinct integers for distinct objects
  3. For two object references referring to the same object, the hashCode method returns the same integer
  4. It returns a fixed number that internally represents the Object class for the JVM
  5. Only choice D is correct
Question 14 True/False

whether the casting of objects can be done in java?

  1. True
  2. False
Question 15 Multiple Choice (Single Answer)

Read the code below. Will be the result of attempting to compile and run the code below. public class AQuestion { public void method(Object o){ System.out.println("Object Verion"); } public void method(String s){ System.out.println("String Version"); } public static void main(String args[]){ AQuestion question = new AQuestion(); question.method(null); } }

  1. The code does not compile
  2. The code compiles cleanly and shows “Object Version
  3. The code compiles cleanly and shows “String Version”
  4. The code throws an Exception at Runtime
Question 16 Multiple Choice (Single Answer)

Nohup command?

  1. kill the process
  2. To run the process even you shutdown the terminal
  3. display your terminal
  4. help command
Question 17 Multiple Choice (Single Answer)

cp command ?

  1. copies a file
  2. delete a file
  3. rename a file
  4. move a file
Question 18 Multiple Choice (Single Answer)

Grep Command ?

  1. compares two directories
  2. compares the two files
  3. To search one or more files to match an expression
  4. To make links to existing files
Question 19 True/False

uniq command removes duplicate adjacent lines from sorted file?

  1. True
  2. False
Question 20 Multiple Choice (Single Answer)

awk command?

  1. to change ownership of a file or directory
  2. used to schedule jobs
  3. stream line editor
  4. scripting language builtin on all unix systems