JSharp 2003 Test Answers
ยท
1. You have created the following
class to print some numbers:
public class PrintNumber {
int a;
int b;
public
void basefunt() {
a = 0;
b = 0;
int[] c = { 0 };
modify(b, c);
System.out.println("" + a + b + c[0]);
}
public
void modify(int b, int[] c) {
a = 1;
b = 1;
c[0] = 1;
}
public static void main(String args[]) {
PrintNumber p = new PrintNumber();
p.basefunt();
}
}
What will be the output?
Answers:
โข 000
โข 101
โข 001
โข 110
โข 100
2. Which of the following is incorrect
with regard to Exceptions?
Answers:
โข Catching
java.lang.Exception will catch any .NET exceptions
โข Catching
System.Exception will catch any .NET exceptions
โข Catching
java.lang.Exception will catch any java exceptions
โข Catching
System.Exception will catch any java exceptions
3. You have defined an Integer as
follows:
int IntPageId = 5;
What would you write for changing it
into a String data type?
Answers:
โข String
strPageId = System.Data.ToString(IntPageId);
โข String
strPageId = IntPageId.ToString();
โข String
strPageId = System.Convert.ToString(IntPageId);
โข String
strPageId = IntPageId;
4. You have defined two classes (as
mentioned below) in a java file named "CustomerClass.java" :
class Customer
{
. . .
}
class OldCustomer
{
. . .
}
None of the classes defined above have
any static void method. What will happen on compiling the classes on .Net
command prompt?
Answers:
โข This will give
a compilation error saying 'one class must be declared public'
โข This will give
a compilation error saying 'two non-public classes cannot be declared in one
java file'
โข This will give
a compilation error saying, 'No main method found'
โข None of the
above
5. You want a component to resize
vertically, but not horizontally. How should it be placed?
Answers:
โข BorderLayout in
the North or South location
โข FlowLayout as
the first component
โข BorderLayout in
the East or West location
โข BorderLayout in
the Center location
โข GridLayout
6. Two functions are defined with the
same name in a class:
public boolean isGreater(int no1, int
no2)
public boolean isGreater(String st1,
String st2)
Which of the following concept does
this definition represent?
Answers:
โข Abstraction
โข Overloading
โข Overriding
โข Encapsulation
7. Which of the following statements
is incorrect with regard to data types?
Answers:
โข J# wraps
primitive types to Objects behind the scene
โข Primitive data
types are defined as structures in the system namespace
โข Internal
handling of primitive data types in J# is exactly the same as in java
8. A Student class extends Person
class:
1 class Person
2 {
3 int heightcm;
4
5 Person()
6 this.heightcm=160; }
7
8 int getHeight()
9 return heightcm;
}
10
11
String display()
12
return
"Person height is " + heightcm; }
13
}
14
class Student
extends Person
15
{
16
int studhtcm;
17
String
className()
18
return
"Student"; }
19
20
public static
void main(String args[])
21
{
22
Person obj = new
Student();
23
System.out.println(obj.getHeight());
24
System.out.println(obj.display());
25
System.out.println(obj.className());
26
}
27
}
What will happen on compiling and running
the code?
Answers:
โข The Program
will compile and run successfully.
โข The Program
will not compile due to an error in line 23
โข The Program
will not compile due to an error in line 24
โข The Program
will not compile due to an error in line 25
9. Which of the following statements
is incorrect with regard to Java Code?
Answers:
โข The java code
can be compiled in Netbean/Eclipse as well as in VisualStudio
โข Netbean
compiles java source to Java byte code whereas Visual Studio compiles it to
MSIL
โข Both Netbean
and Visual Studio produce class files as a result of compilation
โข All of the
above
10. You created a few classes (as
mentioned below) for file manipulation:
public class CopyFile
{
}
class ReadFile
{
}
class WriteFile
{
}
Which of the following is a valid way
to name the '.java' file containing the above classes?
Answers:
โข ReadFile.java
โข WriteFile.java
โข
FileManupulation.java
โข All of the
above
11. What will be the output when the
following code is compiled and run?
abstract class Search {
public Search() { }
public abstract void
Result();
}
public class SearchMain extends Search
{
public SearchMain() { }
public int Result() {
System.out.println("I am Result()");
return 1;
}
public static void main(String
str[]) {
new
SearchMain().Result();
}
}
Answers:
โข The code will
fail to compile
โข The code will
compile but fails to run
โข The code will
compile and print "I am Result()"
โข The code will compile
but does not produce any output
12. You have defined the following
methods in one of the java classes:
1
void setId(int newId)
2
private void manageRecord(int RecordNo)
3
protected void delete(int recordNo)
4
boolean isValidRecord(int recordNo)
Which of the following methods is
incorrect for a class that extends above class?
Answers:
โข public void
setId(int newId)
โข void
manageRecord(int RecordNo)
โข void delete(int
recordNo)
โข protected
boolean isValidRecord(int recordNo)
13. You have compiled a java class
named "DirReader.java" using .Net command prompt. Which of the
following commands helps you run it from the same window?
Answers:
โข >java
DirReader
โข >java
DirReader.java
โข >vj
DirReader
โข >DirReader
14. You have written a java class file
named "CustomerManager.java." Which of the following commands helps
you compile it on .Net Command prompt?
Answers:
โข javax
CustomerManager.java
โข java
CustomerManager.java
โข jsharp
CustomerManager.java
โข vjc
CustomerManager.java
15. What will be the output of the
following program?
public class Prnt
{
public static void
main(String args[])
{
System.out.println(11 ^ 2);
}
}
Answers:
โข 10
โข 9
โข 11
โข 13
โข 121
16. What will be the output when
myMethod() is executed?
class MyPoint {
void myMethod() {
int x,
y;
x = 5; y = 3;
System.out.print( " ( " + x + ", " + y + " ) " );
switchCoords(
x, y );
System.out.print( " ( " + x + ", " + y + " ) " );
}
void switchCoords( int x, int y
) {
int
temp;
temp = x;
x = y;
y = temp;
System.out.print( " ( " + x + ", " + y + " ) " );
}
}
Answers:
โข (5, 3) (5, 3)
(5, 3)
โข (5, 3) (3, 5)
(3, 5)
โข (5, 3) (3, 5)
(5, 3)
โข No output will
be printed
17. You have a simple java class named
"Record":
public class Record
{
protected void readRecord(int newId)
throws Exception,IOException{}
protected void insertRec(int recNo)
throws FileNotFoundException,IOException{}
protected void deleteRecord(int
recordNo) throws EOFException{}
protected boolean isValidRecord(int
recordNo) throws Exception{return true;}
}
Which of the following method
declarations will not be legitimate for the child class of "Record"
class?
Answers:
โข protected void
readRecord(int newId) throws IOException
โข protected void
insertRec(int recNo) throws Exception
โข public void
deleteRecord(int recordNo) throws EOFException
โข public boolean
isValidRecord(int recordNo) throws EOFException
18. Which of the following statements
is correct with regard to Final and Abstract?
Answers:
โข An abstract
class cannot have final methods
โข An abstract
class cannot have non abstract methods
โข A final class
cannot have abstract methods
โข A final class
cannot have final methods
19. Given below is the definition of
two classes in "Maruti.java":
public class Automobile
{
Automobile(int i) {} }
class Maruti extends Automobile
{
public Maruti()
{ System.out.println("In Maruti()");
}
public static void main(String str[])
{ new
Maruti();
}
}
What will happen when this code is
compiled and run?
Answers:
โข The code will
compile but throws an exception when it is run
โข The code will
compile and does not produce any output when it is run
โข The code will
fail to compile
โข None of the
above
20. Which of the following classes
does not generate action events?
Answers:
โข Choice
โข MenuItem
โข List
โข Checkbox
21. Consider the following program:
import java.util.*;
public class ListColl {
public static void
main(String str[]) {
List l =
new ArrayList();
l.add("1");
l.add("2");
l.add(1,"3");
List l2 = new
LinkedList(l);
l.addAll(l2);
System.out.println(l);
}
}
Which of the following sequences will
be printed when the above program is run?
Answers:
โข [1, 3, 2, 1, 1,
2]
โข [1, 3, 1, 1, 3,
2]
โข [1, 1, 2, 1, 3,
2]
โข [1, 3, 2, 1, 3,
2]
22. What will be returned by the
length()method of File class?
Answers:
โข The number of
characters in the file
โข The number of
bytes in the file
โข The number of
lines in the file
โข None of the
above
23. You created the 'Msg' class as
follows:
class Msg {
Msg() {
String str1 = "Health";
String str2 = "is";
String str3 = "Wealth";
System.out.println(str1.concat(str2));
str1.concat(str2);
System.out.println(str1.concat(str3));
}
public static void main(String str[]) {
new Msg();
}
}
What will happen on compiling and
running the code?
Answers:
โข This code will
fail to compile because arrayIndexOutOfBound exception is not caught
โข It will print
Healthis on the first line followed by HealthWealth on the second line
โข It will print
Healthis on the first line followed by HealthisWealth on the second line
โข It will print
Healthis on the first line followed by HealthisHealthWealth on the second line
24. A class named MyLoop is defined as
follows:
public class MyLoop
{
public static void main(String args[])
{
int counter = 0;
lbl1: for (int i=10; i<0; i--)
{
int j = 0;
lbl2: while (j < 10)
{
if (j > i) break lbl2;
if (i == j)
{
counter++;
continue lbl1;
}
}
counter--;
}
System.out.println(counter);
}
}
What will happen when you try to
compile and run the program?
Answers:
โข The program
will fail to compile
โข The program
will compile and produce no output
โข The program
will print 0 as output
โข The program
will print 10 as output
25. You have defined a static method
to divide two integers:
1 public static int divide(int a,int b)
throws Exception
2 {
3 if(b==0)
4 throw new Exception("Invalid
Value for denominator");
5 else
6 return (a/b);
7 }
Which of the following statements is
correct?
Answers:
โข The method
syntax is correct
โข The general
Exception cannot be specified with parameter (line 4)
โข In the line 4,
the word 'throw' should be replaced with 'throws'
โข A static method
can be throw not as throw Exceptions
26. What will be the output when the
following code is compiled and run?
class Equates {
Equates() {
int a,b,c;
a
= b = c = 20;
System.out.println(a);
}
public static
void main(String str[]) {
new Equates();
}
}
Answers:
โข The code will
fail to compile
โข 20 is printed
โข Nothing is
printed
โข True is printed
27. The classes Zen and Matiz are as
follows:
class Zen {
int x = 10;
}
class Matiz {
Matiz() {
Zen z1 = new Zen();
Zen z2 = new Zen();
update(z1);
update(z2);
z1 = z2;
update(z1);
update(z2);
}
private
void update(Zen z) {
z.x = 20;
System.out.println(z.x);
}
public static
void main(String str[]) {
new Matiz();
}
}
What will be the result obtained on
compiling and running the Matiz class?
Answers:
โข The code will
fail to compile
โข 10 10 10 10
โข 20 20 20 20
โข 10 20 10 20
28. You need to create a class that
associates a set of keys with a set of values. Which of these interfaces is
most appropriate?
Answers:
โข Collection
โข Set
โข Map
โข SortedSet
29. In the following code, val is an Integer
variable:
if( val > 4 ) {
System.out.println(
"Test A" );
}else if( val > 9 ) {
System.out.println(
"Test B" );
}else
System.out.println( "Test
C" );
Which of the following values of 'val'
will print 'Test C'?
Answers:
โข val < 4
โข val between 4
and 9
โข val > 9
โข No values for
val will result in "Test C" being printed
30. Consider the following class:
public class Intro {
static int a;
int b;
public
Intro() {
int c;
c = a;
a++;
b += c;
}
public void Intro() {
int c;
c = a;
a++;
b += c;
}
public static void main(String args[]) {
new Intro();
}
}
What will happen on compiling and
running this class?
Answers:
โข The code will
fail to compile because there are two constructors with the same names and
parameters
โข The code will
fail to compile because the constructor is trying to access a static variable
โข The code will
compile but gives a runtime error
โข The code will
compile and runs successfully
31. Which of the following Classes
contains a method to create a directory?
Answers:
โข File
โข DataOutput
โข Directory
โข FileDescriptor
โข
FileOutputStream
32. Which of the following statements
is correct with regard to J#?
Answers:
โข All the J# data
types are derived from java.lang.Object
โข The
java.lang.Object is a superclass of System.Object
โข The
java.lang.Object is an alias for System.Object
โข The ObjectImpl
package provides functionality for all the methods belonging to
java.lang.Object
33. Consider the following class:
import java.util.*;
public class Coll
{
public static void
main(String str[])
{
List l =
new ArrayList();
l.add("1");
l.add("2");
l.add(1,"3");
l2 = new LinkedList(l);
l.addAll(l2);
System.out.println(l);
}
}
Which of the following sequences will
be printed on running this class?
Answers:
โข [1, 3, 2, 1, 1,
2]
โข [1, 3, 1, 1, 3,
2]
โข [1, 1, 2, 1, 3,
2]
โข [1, 3, 2, 1, 3,
2]
34. What will be the output when the
following code is compiled and run?
class Num {
Num() {
int k = 1;
int i = ++k + k++ + + k;
System.out.println(i);
}
public static
void main(String str[]) {
new Num();
}
}
Answers:
โข The code will
fail to compile
โข 8 is printed
โข 9 is printed
โข 7 is printed
35. What is wrong with the following
method?
public void manageCalc()
{
try {
compute();
}
finally {
release();
}
catch (MyException e) {}
}
}
Answers:
โข There is no
error in the code
โข The block
'finally' should come after the block 'catch'
โข An empty catch
block is not allowed
โข None of the
above
36. Two classes are defined as follows:
class Category {}
class Document extends Category {}
class Legal extends Document {}
You initialized the class Legal like
this:
Legal legl = new Legal();
What is the sequence of call to the
given classes?
Answers:
โข It calls Legal(),Document(),
and Category()
โข It calls
Legal(),Category(), and Document()
โข It calls
Category(),Document(), and Legal()
โข It calls
Category(),Legal(), and Document()
37. The Tracer and Viewer classes are
as follows:
class Tracer {
public static int traceNo = 10;
}
class Viewer {
Viewer() {
Tracer t1 = new Tracer();
Tracer t2 = new Tracer();
update(t1);
update(t2);
}
private
void update(Tracer t) {
t.traceNo = t.traceNo + 1;
System.out.println(t.traceNo);
}
public static
void main(String str[]) {
new Viewer();
}
}
What will be the result obtained on
compiling and running the viewer on .net command prompt?
Answers:
โข The code will
fail to compile
โข 11 12
โข 11 11
โข 12 12
38. Consider the following classes:
class Model
{
public int modelNo;
Model(int modelNum)
{
modelNo=modelNum; }
public int getModel()
{ return
modelNo; }
}
public class Item extends Model
{
Item() {}
public static void main(String args[])
{ Item i = new
Item(); }
}
What will happen on compiling and
running the above classes?
Answers:
โข The code will
compile and run successfully
โข The code will not
compile as the constructor Item (int modelNo) is missing in the Item class
โข The code will
not compile as the call super (ModelNumber) is missing in Item()
โข The code will
compile but gives runtime error
39. Which of the following statements
is incorrect with regard to interfaces?
Answers:
โข A class can
implement multiple interfaces
โข An abstract
class cannot extend multiple interfaces
โข An interface
can extend multiple interfaces
โข Methods with same
name, arguments, and sequence can exist in the interfaces implemented by a
class
40. Which of the following methods
will cause a thread to stop?
Answers:
โข Calling
interrupt() method of the thread
โข Calling sleep()
method on thread
โข Conclusion of
execution of the run() method
โข None of the
above
41. Which of the following is correct
with regard to Net J#?
Answers:
โข It supports sun
java up to JDK 1.1.5
โข It supports sun
java up to JDK 1.1.4
โข It supports sun
java up to JDK 1.1.3
โข It supports sun
java enterprise edition and standard edition
42. For a J# project in Visual Studio
.Net, the files can be a mixture of .jsl or .java extensions.
Answers:
โข True
โข False
43. Which of the following is not a
correct way of getting 'sin' value?
Answers:
โข Math m = null;
double val = m.sin(25);
โข double val =
Math.sin(25);
โข Math m = new
Math(); double val = m.sin(25);
44. Which of the following visibility
modes is not defined in J#?
Answers:
โข protected
โข private
โข package
โข default
45. Visual J# runs on .Net framework.
Answers:
โข True
โข False
46. Which of the following helps you
get a double value from a String object named "StrValue?"
Answers:
โข
(System.Double)(System.GetDouble(StrValue))
โข
(System.Double)(System.ParseDouble(StrValue))
โข
(System.Double)(System.Double.Parse(StrValue))
โข
System.Double.Parse(StrValue)
47. What will be written to the
standard output when the following program is run?
public class Message
{
public static void
main(String args[])
{
String msg = "GoodDay";
System.out.println(msg.substring(3, 4));
}
}
Answers:
โข o
โข odD
โข d
โข dDay
48. How is applet loading speed
increased with J# 1.1?
Answers:
โข By using a
special algorithm to increase the download speed
โข By using CAB
files to download the applet
โข By using ZIP
files to reduce the size for download
โข All of the
above
49. Which of the following are
supported by J#?
Answers:
โข Windows Forms
โข ASP.NET Web
Forms and Mobile Web Forms
โข XML Web
services
โข Cross-language
integration
โข All of the
above