Hello World
Quiz by , created more than 1 year ago

Quiz on sdp14, created by Hello World on 18/01/2017.

328
0
0
No tags specified
Hello World
Created by Hello World over 7 years ago
Close

sdp14

Question 1 of 14

1

201. Which of the following has member elements?

Select one of the following:

  • a) Class

  • b) Interface

  • c) Both

  • d) None

Explanation

Question 2 of 14

1

202. Which of the following can be used for implementing runtime polymorphism ?

Select one of the following:

  • a) Class

  • b) Interface

  • c) Both

  • d) None

Explanation

Question 3 of 14

1

203. Parent of all collection classes is a/an ….?

Select one of the following:

  • a) Class

  • b) Interface

  • c) Both

  • d) None

Explanation

Question 4 of 14

1

204. Which exception is thrown by the read() method of InputStream class?

Select one of the following:

  • a) IOException

  • b) FileNotFoundException

  • c) ReadException

  • d) Exception

Explanation

Question 5 of 14

1

205. Which of the following methods can be used to remove a java.awt.Component object from the display?

Select one of the following:

  • a) remove()

  • b) disappear()

  • c) hide()

  • d) delete()

Explanation

Question 6 of 14

1

206. Which of the following sets the frame to 300 pixels wide by 200 high?

Select one of the following:

  • a) frm.setSize( 300, 200 );

  • b) frm.setSize( 200, 300 );

  • c) frm.paint( 300, 200 );

  • d) frm.setVisible( 300, 200 );

Explanation

Question 7 of 14

1

207. What is a Graphics object?

Select one of the following:

  • a) The Graphics object represents the part of the Frame that you can draw on.

  • c) The Graphics object represents the entire monitor.

  • b) The Graphics object represents the whole Frame

  • d) The Graphics object represents the graphics board.

Explanation

Question 8 of 14

1

208. In Java, the default layout manager for a JFrame component is

Select one of the following:

  • a) BorderLayout

  • b) GridBagLayout

  • c) FlowLayout

  • d) GridLayout

Explanation

Question 9 of 14

1

209. The ListSelectionEvent class and ListSelectionListener interface are available in the _____ package of Java.

Select one of the following:

  • a) java.awt.event

  • b) javax.swing.event

  • c) javax.event

  • d) java.event

Explanation

Question 10 of 14

1

210. Which of the following categorizations can be applied to both the data fields and the methods in a Java class?

Select one of the following:

  • a) static and non-static

  • b) default and non-default

  • c) abstract and non-abstract

  • d) native and non-native

Explanation

Question 11 of 14

1

211. Which is a Java access modifier used to designate that a particular data field will not be inherited by a subclass?

Select one of the following:

  • a) protected

  • b)final

  • c)private

  • d) default

Explanation

Question 12 of 14

1

212. Which of these will happen if recursive method does not have a base case?

Select one of the following:

  • a) An infinite loop occurs

  • c) After a lot of calls it will be automatically stopped.

  • b) System stops the program after some time.

  • d) None of the above

Explanation

Question 13 of 14

1

213. Which of these is not a correct statement?

Select one of the following:

  • a) A recursive method must have a base case.

  • b) Recursion always uses stack.

  • c) Recursive methods are faster that programmers written loop to call the function repeatedly

  • d) Recursion is managed by Java’s run time environment.

Explanation

Question 14 of 14

1

214. Which of these packages contains the exception Stackoverflow in Java?

Select one of the following:

  • a) java.lang

  • b) java.util

  • c) java.io

  • d) java.system

Explanation