



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A fully solved quiz for chapter 1 of an introduction to java programming course. It includes questions covering basic concepts such as java bytecode, reserved words, the history of java development, and fundamental programming elements like classes, methods, and comments. The quiz also tests understanding of storage devices, java jdk, and common programming errors, making it a valuable resource for students learning java. It offers practical insights into java syntax, compilation, and execution.
Typology: Exams
1 / 5
This page cannot be seen from the preview
Don't miss anything!




The extension name of a java bytecode file is? - answer .class Which of the following are the reserved words? - answer public, static, void, class Java was developed by? - answer sun microsystems Analyze the following code public class Test{ public static void main(String[] args){ System.out.println("Welcome to Java!"); } } && public class - answer Which of the following statements is correct to display Welcome to Java on the console? - answer System.out.println("Welcome to Java"); Which of the following lines are Java comments? - answer /** comment / // comment /comment*/
Suppose you define a Java class as follows: public class Test{ } In order to run this program the source code must be stored in a fine named? - answer Test.java Which of the following are storage devices? - answer hard disk, cd- rom, flash stick, floppy disk A java application must have a main method? - answer true ________ consists of a set of separate programs for developing and testing Java programs, each of which is invoked from a command line. - answer Java JDK Every statement is Java ends with? - answer ; Java source code can be executed on a Java Virtual Machine? - answer false One byte has _______ bits. - answer 8 If you forget to put a closing quotation mark on a string, what kind of error will be raised? - answer a compilation error A java program block starts with an open brace { and ends with a } brace. - answer true The public classname must be the same as the filename that contains the class. - answer true
Which of the following statements is correct to display Welcome to Java on the console? - answer System.out.println("Welcome to Java"); Which of the following lines are Java comments? - answer /** comment / // comment /comment*/ Suppose you define a Java class as follows: public class Test{ } In order to run this program the source code must be stored in a fine named? - answer Test.java Which of the following are storage devices? - answer hard disk, cd- rom, flash stick, floppy disk A java application must have a main method? - answer true ________ consists of a set of separate programs for developing and testing Java programs, each of which is invoked from a command line. - answer Java JDK Every statement is Java ends with? - answer ; Java source code can be executed on a Java Virtual Machine? - answer false One byte has _______ bits. - answer 8
If you forget to put a closing quotation mark on a string, what kind of error will be raised? - answer a compilation error A java program block starts with an open brace { and ends with a } brace. - answer true The public classname must be the same as the filename that contains the class. - answer true A java interpreter is a program that translates Java source code into Java bytecode. - answer false __________ is a software that interprets Java bytecode. - answer Java virtual machine The extension name of a java source code file is? - answer .java A block is enclosed inside? - answer braces How to take in input? - answer Scanner input= new Scanner(System.in); int value = input.nextInt();