Software Engineering Mcqs

How to find out what version of ASP.NET I am using on my machine ?

(A) Response.Write(Version.ToString() );

(B) Response.Write(System.Version.ToString() );

(C) Response.Write(System.Environment.Version.ToString() );

(D) not possible

Submitted By: Ali Uppal


In your ASP.NET 2.0 web application you want to display an image that is selected from a collection of images. What approach will you use to implementing this ?

(A) Use the ImageMap control and randomly select a HotSpot to show or hide.

(B) Use the AdServer control and create an XML file with configuration of the control.

(C) Use an ImageButton control to predict randomness of the image to be loaded based on the clicks of the control.

(D) Use the Image control to hold the image and a Calendar control to randomly select a date for each image to be displayed.

Submitted By: Ali Uppal


Submitted By: Ali Uppal


Which is the predefined package ?

(A) Lang package

(B) util package

(C) io package

(D) All of above

Submitted By: Ali Uppal


Which of the following automatic type conversion will be possible ?

(A) byte to int

(B) short to int

(C) long to int

(D) int to long

Submitted By: Ali Uppal


Object which can store group of other objects is called___________________?

(A) Package

(B) Wrapper

(C) Java object

(D) Collection object

Submitted By: Ali Uppal


In which we clone the object and their constituent parts_______________?

(A) Deep cloning

(B) Shallow cloning

(C) Both of above

(D) None of above

Submitted By: Ali Uppal


What is jdb_________________?

(A) java Disassemble

(B) java Interpreter

(C) java compiler

(D) java debugger

Submitted By: Ali Uppal


Java intermediate code is known as_________________?

(A) Byte code

(B) First code

(C) Mid code

(D) None of above

Submitted By: Ali Uppal


Inheritance means ?

(A) Sub class create object of super class

(B) Sub class extends Base class

(C) Sub class extends super class

(D) All of the above

Submitted By: Ali Uppal