OCA

Description

National Senior Certificate (Matric) Information Technology Quiz on OCA, created by Kerri Chinneck on 18/03/2017.
Kerri  Chinneck
Quiz by Kerri Chinneck, updated more than 1 year ago
Kerri  Chinneck
Created by Kerri Chinneck about 7 years ago
51
2

Resource summary

Question 1

Question
What happens when the following program is compiled and run? public class MyData { String name; int i; int i2 = 4; int i3 = i2 / i; public static void main(String[] args){ MyData md = new MyData(); System.out.print(md.i3); } }
Answer
  • This code writes "0" to the standard output.
  • This code writes nothing to the standard output.
  • This code writes "null" to the standard output.
  • This code writes error dividing by zero to the standard output.

Question 2

Question
What happens when the following program is compiled and run? public class Employee { // Primitive data types double salary; int age; boolean isPaid; char gender = 'm'; // m = male, f = female public static void main(String[] args){ Employee emp = new Employee(); System.out.print(" " + emp.salary + ","); System.out.print(" " + emp.age + ","); System.out.print(" " + emp.isPaid + ","); System.out.print(" " + emp.gender); } }
Answer
  • This code writes ", , , m" to the standard output.
  • This code writes "1.0, 1, true, m" to the standard output.
  • This code writes "0.0, 0, false, m" to the standard output.
  • This code does not compile, because some of the variables are not initialized.

Question 3

Question
What will be the result of calling the following method with an input of 2? 1. public int adder( int N ){ 2. return 0x100 + N++ ; 3. }
Answer
  • The method will return 258.
  • The method will return 102.
  • The method will return 259.
  • The method will return 103.

Question 4

Question
What happens when you attempt to compile and run the following code? 1. public class Logic { 2. static int minusOne = -1 ; 3. static public void main(String args[] ){ 4. int N = minusOne >> 31 ; 5. System.out.println("N = " + N ); 6. } 7. }
Answer
  • The program will compile and run, producing the output "N = -1".
  • The program will compile and run, producing the output "N = 1".
  • A runtime ArithmeticException will be thrown.
  • The program will compile and run, producing the output "N = 0".

Question 5

Question
How many String objects are created in the following code? 1. String A, B, C ; 2. A = new String( "1234" ) ; 3. B = A ; 4. C = A + B ;
Answer
  • One
  • Two
  • Three
  • Four

Question 6

Question
Which of the following versions of initializing a char variable would cause a compiler error? [Check all correct answers.] char c = - 1 ; char c = '\u00FF' ; char c = (char) 4096 ; char c = 4096L ; char c = 'c' ; char c = "c" ;
Answer
  • char c = - 1 ;
  • char c = '\u00FF' ;
  • char c = (char) 4096 ;
  • char c = 4096L ;
  • char c = 'c' ;
  • char c = "c" ;

Question 7

Question
What happens when you try to compile and run the following code? 1. public class EqualsTest{ 2. public static void main(String args[]){ 3. char A = '\u0005' ; 4. if( A == 0x0005L ) { 5. System.out.println("Equal"); 6. } 7. else { 8. System.out.println("Not Equal"); 9. } 10. } 11. }
Answer
  • The compiler reports "Invalid character in input" in line 3.
  • The program compiles and prints "Not Equal".
  • The program compiles and prints "Equal".
  • The compiler objects to the use of == to compare a char and a long.

Question 8

Question
In the following code fragment, you know that the getParameter call may return a null if there is no parameter named size: 1. int sz ; 2. public void init(){ 3. sz = 10 ; 4. String tmp = getParameter("size"); 5. if( tmp != null X tmp.equals("BIG")) sz = 20 ; 6. }
Answer
  • &
  • &&
  • |
  • ||

Question 9

Question
What would happen if you tried to compile and run the following code? 1. public class EqualsTest{ 2. public static void main(String args[]){ 3. Long L = new Long( 7 ); 4. if( L.equals( 7L )) System.out.println("Equal"); 5. else System.out.println("Not Equal"); 6. } 7. }
Answer
  • The program would compile and print "Equal".
  • The program would compile and print "Not Equal".
  • The compiler would object to line 4.
  • A runtime cast error would occur at line 4.

Question 10

Question
What would happen if you tried to compile and run the following code? 1. public class EqualsTest{ 2. public static void main(String args[]){ 3. Object A = new Long( 7 ); 4. Long L = new Long( 7 ) ; 5. if( A.equals( L )) System.out.println("Equal"); 6. else System.out.println("Not Equal"); 7. } 8. }
Answer
  • The program would compile and print "Equal".
  • The program would compile and print "Not Equal".
  • The compiler would object to line 5.
  • A runtime cast error would occur at line 5.
Show full summary Hide full summary

Similar

CCNA Security 210-260 IINS - Exam 3
Mike M
Application of technology in learning
Jeff Wall
Innovative Uses of Technology
John Marttila
Ch1 - The nature of IT Projects
mauricio5509
The Internet
Gee_0599
SQL Quiz
R M
CCNA Answers – CCNA Exam
Abdul Demir
Professional, Legal, and Ethical Issues in Information Security
mfundo.falteni
System Analysis
R A
Flash Cards Networks
JJ Pro Wrestler
EDUC260- Multimodal Literacies for a Digital Age
angelwoo2002