SlideShare a Scribd company logo
1. Which pair of function below is used for single character I/O?

A) getchar() & putchar()
b) scanf() & printf()
c) Input () & output()
d) None of these

 2. Symbolic consists can be defined using?

a) #define
B) Const
b) Symbols
c) None of these

 3. Null character is represented by?

a) '(n)'
b) '(o)'
C) '(0)'
d) '(e)'

 4. Which among the following is a unconditional control structure?

a) do-while
b)if-else
C) goto
d) for
5. Consider the following code snippet

 String river = new String(“Columbia”);
 System.out.println(river.length());
 What is printed?

 a) 6
 b) 7
 C) 8
 d) Columbia


  6. Which of the following may be part of a class definition?

a) instance variables
b) instance methods
c) constructors
D) all of the above


  7. What is different between a Java applet and a Java application?

a) An application can in general be trusted whereas an applet can't.
b) An applet must be executed in a browser environment.
c) An applet is not able to access the files of the computer it runs on
D) (A), (B) and (C).


  8. Consider
 public class MyClass
{
   public MyClass(){/*code*/}
   // more code...
 }
To instantiate MyClass, you would write?

A) MyClass mc = new MyClass();
b) MyClass mc = MyClass();
c) MyClass mc = MyClass;
d) MyClass mc = new MyClass;
9. What is byte code in the context of Java?

A) The type of code generated by a Java compiler
b) The type of code generated by a Java Virtual Machine
c) It is another name for a Java source file
d) It is the code written within the instance methods of a class.



10. How many JDBC driver types does Sun define?

a) One

b) Two

c) Three

D) Four



11. Who invented Java?

a) Netscape

b) Microsoft

C) Sun

d) None of the above is correct



12. To run a compiled Java program, the machine must have what loaded and
running?

A) Java virtual machine

b) Java compiler

c) Java bytecode
d) A Web browser



13. What is bytecode?

a) Machine-specific code

b) Java code

C) Machine-independent code

d) None of the above is correct




14. JDBC stands for:

A) Java Database Connectivity

b) Java Database Components

c) Java Database Control

d) None of the above is correct



15. Constructors are used to?

A) Initialize the objects

b) Construct the data members

c) Both (1) & (2)

d) None of these



16. Which one of these lists contains only Java programming language
keywords?

a) class, if, void, long, Int, continue

B) goto, instanceof, native, finally, default, throws

c) try, virtual, throw, final, volatile, transient

d) strictfp, constant, super, implements, do



17. Which will legally declare, construct, and initialize an array?

a) int [] myList = {"1", "2", "3"};

b) int [] myList = (5, 8, 2);

c) int myList [] [] = {4,9,7,0};

D) int myList [] = {4, 3, 7};



18. Which is a valid keyword in java?

A) Interface

b) String

c) Float

d) unsigned



public interface Foo
{
  int k = 4; /* Line 3 */
}
19. Which three piece of codes are equivalent to line 3?

1. final int k = 4;

2. public int k = 4;

3. static int k = 4;

4. abstract int k = 4;

5. volatile int k = 4;

6. protected int k = 4;

A) 1, 2 and 3

b) 2, 3 and 4

c) 3, 4 and 5

d) 4, 5 and 6



20. Which three are valid declarations of a char?

1. char c1 = 064770;

2. char c2 = 'face';

3. char c3 = 0xbeef;

4. char c4 = u0022;

5. char c5 = 'iface';

6. char c6 = 'uface';

a) 1, 2, 4

B) 1, 3, 6
c) 3, 5

d) 5 only



21. Which one is a valid declaration of a boolean?

a) boolean b1 = 0;

b) boolean b2 = 'false';

C) boolean b3 = false;

d) boolean b4 = Boolean.false();



22. Which is a valid declarations of a String?

A) String s1 = null;

b) String s2 = 'null';

c) String s3 = (String) 'abc';

d) String s4 = (String) 'ufeed';



23. What is the name of the method used to start a thread execution?

a) init();

B) start();

c) run();

d) resume();
24. Which two are valid constructors for Thread?

1. Thread(Runnable r, String name)

2. Thread()

3. Thread(int priority)

4. Thread(Runnable r, ThreadGroup g)

5. Thread(Runnable r, int priority)

a) 1 and 3

b) 2 and 4

C) 1 and 2

d) 2 and 5



class X implements Runnable
{
   public static void main(String args[])
   {
     /* Missing code? */
   }
   public void run() {}
}


25. Which of the following line of code is suitable to start a thread ?

a) Thread t = new Thread(X);

b) Thread t = new Thread(X); t.start();

C) X run = new X(); Thread t = new Thread(run); t.start();
d) Thread t = new Thread(); x.run();



26. Which cannot directly cause a thread to stop executing?

a) Calling the SetPriority() method on a Thread object.

b) Calling the wait() method on an object.

C) Calling notify() method on an object.

d) Calling read() method on an InputStream object.



27. Which two of the following methods are defined in class Thread?

   1.   start()
   2.   wait()
   3.   notify()
   4.   run()
   5.   terminate()

A) 1 and 4

b) 2 and 3

c) 3 and 4

d) 2 and 4



28. Which of the following will directly stop the execution of a Thread?

A) wait()

b) notify()

c) notifyall()

d) exits synchronized code
29. Which method must be defined by a class implementing
the java.lang.Runnableinterface?

a) void run()

B) public void run()

c) public void start()

d) void run(int priority)




30. Which will contain the body of the thread?

A) run();

b) start();

c) stop();

d) main();
Java Questioner for

More Related Content

DOCX
Quiz test JDBC
PPTX
Java Quiz
PDF
Java apptitude-questions-part-1
DOCX
Java level 1 Quizzes
PPTX
Technical aptitude Test 1 CSE
PPTX
Technical aptitude test 2 CSE
PDF
Core java
PPTX
Puzles C#
Quiz test JDBC
Java Quiz
Java apptitude-questions-part-1
Java level 1 Quizzes
Technical aptitude Test 1 CSE
Technical aptitude test 2 CSE
Core java
Puzles C#

What's hot (16)

DOCX
C __paper.docx_final
PPTX
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 1
PDF
C++ questions And Answer
PPT
Generic Programming seminar
PPTX
PART - 1 Cpp programming Solved MCQ
PDF
Sample Paper 2 Class XI (Computer Science)
PPT
C++ Interview Questions
PDF
Hidden Truths in Dead Software Paths
PPTX
C Programming Language
PDF
C interview questions
PDF
5th semester Computer Science and Information Science Engg (2013 December) Qu...
PDF
C aptitude 1st jan 2012
PDF
GUESS FUNDAMENTAL PAPER FOE CCAT Feb 2014
PDF
Generic programming
PDF
important C questions and_answers praveensomesh
PDF
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
C __paper.docx_final
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 1
C++ questions And Answer
Generic Programming seminar
PART - 1 Cpp programming Solved MCQ
Sample Paper 2 Class XI (Computer Science)
C++ Interview Questions
Hidden Truths in Dead Software Paths
C Programming Language
C interview questions
5th semester Computer Science and Information Science Engg (2013 December) Qu...
C aptitude 1st jan 2012
GUESS FUNDAMENTAL PAPER FOE CCAT Feb 2014
Generic programming
important C questions and_answers praveensomesh
[C++ Korea] Effective Modern C++ Study, Item 11 - 13
Ad

Viewers also liked (16)

ZIP
Questioner
PPT
INTERPERSONAL AND COMMUNICATION SKILLS- C.10
PPTX
Cross culture presentation
PPTX
SUSL - Concept of culture original
PPT
Managing cross-cultural differences in a multinational company
PPTX
Supply Chain Management - Transportation - MBA Project
PPTX
Cross Cultural Management case study
PPTX
THE ROLE OF TRANSPORTATION IN LOGISTICS CHAIN
PPT
Cross Cultural Management
PPTX
Transportation in a supply chain management
PPT
Transportation management system
PPT
Cross cultural management
PPT
Transportation management
PDF
Transportation Management Ppt
PPTX
Chapter 2 cross cultural management
PPT
Means of transportation
Questioner
INTERPERSONAL AND COMMUNICATION SKILLS- C.10
Cross culture presentation
SUSL - Concept of culture original
Managing cross-cultural differences in a multinational company
Supply Chain Management - Transportation - MBA Project
Cross Cultural Management case study
THE ROLE OF TRANSPORTATION IN LOGISTICS CHAIN
Cross Cultural Management
Transportation in a supply chain management
Transportation management system
Cross cultural management
Transportation management
Transportation Management Ppt
Chapter 2 cross cultural management
Means of transportation
Ad

Similar to Java Questioner for (20)

PDF
ITI COPA Java MCQ important Questions and Answers
PDF
Java MCQ Important Questions and Answers
PDF
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
PDF
Java Programming.pdf
PDF
DAC CCAT GUESS PAPER Jun-Jul 2013
DOC
C Programming
PPTX
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
PDF
200 mcq c++(Ankit dubey)
PDF
PDF
C Language MCQ Programming Theory Questions
PPTX
Std 12 chapter 7 Java Basics Important MCQs
PDF
Model question paper_mc0061
DOCX
(Www.entrance exam.net)-tcs placement sample paper 2
DOCX
Data structures and algorithms unit i
PDF
DRDO Previous Year Computer Question (1000 MCQ)
PPTX
Std 10 chapter 11 data type, expression and operators important MCQs
PDF
CAPE Computer Science Unit 1 Paper 1 - Practice Paper
PDF
this pdf very much useful for embedded c programming students
DOCX
ExamName___________________________________MULTIPLE CH.docx
DOCX
CXC CSEC Information Technology Multiple Choice Questions
ITI COPA Java MCQ important Questions and Answers
Java MCQ Important Questions and Answers
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
Java Programming.pdf
DAC CCAT GUESS PAPER Jun-Jul 2013
C Programming
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
200 mcq c++(Ankit dubey)
C Language MCQ Programming Theory Questions
Std 12 chapter 7 Java Basics Important MCQs
Model question paper_mc0061
(Www.entrance exam.net)-tcs placement sample paper 2
Data structures and algorithms unit i
DRDO Previous Year Computer Question (1000 MCQ)
Std 10 chapter 11 data type, expression and operators important MCQs
CAPE Computer Science Unit 1 Paper 1 - Practice Paper
this pdf very much useful for embedded c programming students
ExamName___________________________________MULTIPLE CH.docx
CXC CSEC Information Technology Multiple Choice Questions

Recently uploaded (20)

PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Approach and Philosophy of On baking technology
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPT
Teaching material agriculture food technology
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
1. Introduction to Computer Programming.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Big Data Technologies - Introduction.pptx
PDF
Electronic commerce courselecture one. Pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
cuic standard and advanced reporting.pdf
PDF
Getting Started with Data Integration: FME Form 101
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Approach and Philosophy of On baking technology
“AI and Expert System Decision Support & Business Intelligence Systems”
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
MYSQL Presentation for SQL database connectivity
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Teaching material agriculture food technology
Spectral efficient network and resource selection model in 5G networks
The Rise and Fall of 3GPP – Time for a Sabbatical?
Dropbox Q2 2025 Financial Results & Investor Presentation
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
1. Introduction to Computer Programming.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Big Data Technologies - Introduction.pptx
Electronic commerce courselecture one. Pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
cuic standard and advanced reporting.pdf
Getting Started with Data Integration: FME Form 101
Reach Out and Touch Someone: Haptics and Empathic Computing
Agricultural_Statistics_at_a_Glance_2022_0.pdf

Java Questioner for

  • 1. 1. Which pair of function below is used for single character I/O? A) getchar() & putchar() b) scanf() & printf() c) Input () & output() d) None of these 2. Symbolic consists can be defined using? a) #define B) Const b) Symbols c) None of these 3. Null character is represented by? a) '(n)' b) '(o)' C) '(0)' d) '(e)' 4. Which among the following is a unconditional control structure? a) do-while b)if-else C) goto d) for
  • 2. 5. Consider the following code snippet String river = new String(“Columbia”); System.out.println(river.length()); What is printed? a) 6 b) 7 C) 8 d) Columbia 6. Which of the following may be part of a class definition? a) instance variables b) instance methods c) constructors D) all of the above 7. What is different between a Java applet and a Java application? a) An application can in general be trusted whereas an applet can't. b) An applet must be executed in a browser environment. c) An applet is not able to access the files of the computer it runs on D) (A), (B) and (C). 8. Consider public class MyClass { public MyClass(){/*code*/} // more code... } To instantiate MyClass, you would write? A) MyClass mc = new MyClass(); b) MyClass mc = MyClass(); c) MyClass mc = MyClass; d) MyClass mc = new MyClass;
  • 3. 9. What is byte code in the context of Java? A) The type of code generated by a Java compiler b) The type of code generated by a Java Virtual Machine c) It is another name for a Java source file d) It is the code written within the instance methods of a class. 10. How many JDBC driver types does Sun define? a) One b) Two c) Three D) Four 11. Who invented Java? a) Netscape b) Microsoft C) Sun d) None of the above is correct 12. To run a compiled Java program, the machine must have what loaded and running? A) Java virtual machine b) Java compiler c) Java bytecode
  • 4. d) A Web browser 13. What is bytecode? a) Machine-specific code b) Java code C) Machine-independent code d) None of the above is correct 14. JDBC stands for: A) Java Database Connectivity b) Java Database Components c) Java Database Control d) None of the above is correct 15. Constructors are used to? A) Initialize the objects b) Construct the data members c) Both (1) & (2) d) None of these 16. Which one of these lists contains only Java programming language
  • 5. keywords? a) class, if, void, long, Int, continue B) goto, instanceof, native, finally, default, throws c) try, virtual, throw, final, volatile, transient d) strictfp, constant, super, implements, do 17. Which will legally declare, construct, and initialize an array? a) int [] myList = {"1", "2", "3"}; b) int [] myList = (5, 8, 2); c) int myList [] [] = {4,9,7,0}; D) int myList [] = {4, 3, 7}; 18. Which is a valid keyword in java? A) Interface b) String c) Float d) unsigned public interface Foo { int k = 4; /* Line 3 */ }
  • 6. 19. Which three piece of codes are equivalent to line 3? 1. final int k = 4; 2. public int k = 4; 3. static int k = 4; 4. abstract int k = 4; 5. volatile int k = 4; 6. protected int k = 4; A) 1, 2 and 3 b) 2, 3 and 4 c) 3, 4 and 5 d) 4, 5 and 6 20. Which three are valid declarations of a char? 1. char c1 = 064770; 2. char c2 = 'face'; 3. char c3 = 0xbeef; 4. char c4 = u0022; 5. char c5 = 'iface'; 6. char c6 = 'uface'; a) 1, 2, 4 B) 1, 3, 6
  • 7. c) 3, 5 d) 5 only 21. Which one is a valid declaration of a boolean? a) boolean b1 = 0; b) boolean b2 = 'false'; C) boolean b3 = false; d) boolean b4 = Boolean.false(); 22. Which is a valid declarations of a String? A) String s1 = null; b) String s2 = 'null'; c) String s3 = (String) 'abc'; d) String s4 = (String) 'ufeed'; 23. What is the name of the method used to start a thread execution? a) init(); B) start(); c) run(); d) resume();
  • 8. 24. Which two are valid constructors for Thread? 1. Thread(Runnable r, String name) 2. Thread() 3. Thread(int priority) 4. Thread(Runnable r, ThreadGroup g) 5. Thread(Runnable r, int priority) a) 1 and 3 b) 2 and 4 C) 1 and 2 d) 2 and 5 class X implements Runnable { public static void main(String args[]) { /* Missing code? */ } public void run() {} } 25. Which of the following line of code is suitable to start a thread ? a) Thread t = new Thread(X); b) Thread t = new Thread(X); t.start(); C) X run = new X(); Thread t = new Thread(run); t.start();
  • 9. d) Thread t = new Thread(); x.run(); 26. Which cannot directly cause a thread to stop executing? a) Calling the SetPriority() method on a Thread object. b) Calling the wait() method on an object. C) Calling notify() method on an object. d) Calling read() method on an InputStream object. 27. Which two of the following methods are defined in class Thread? 1. start() 2. wait() 3. notify() 4. run() 5. terminate() A) 1 and 4 b) 2 and 3 c) 3 and 4 d) 2 and 4 28. Which of the following will directly stop the execution of a Thread? A) wait() b) notify() c) notifyall() d) exits synchronized code
  • 10. 29. Which method must be defined by a class implementing the java.lang.Runnableinterface? a) void run() B) public void run() c) public void start() d) void run(int priority) 30. Which will contain the body of the thread? A) run(); b) start(); c) stop(); d) main();