Class Java Script
Sunday, 21 April 2013
Class -10-
package net.dharmaraj;
import java.util.*;
public class TechnoSample {
public static void main(String args[]) {
Vector col = new Vector();
col.add(new Integer(1));
col.add(new Integer(2));
col.add(new Float(3.2d));
col.add(col.elementAt(0));
System.out.println(col.elementAt(0));
col.setElementAt(col.elementAt(2), 0);// setElementAt(Object,Index)
System.out.println(col);
}
}
Answer:-
1
[3.2, 2, 3.2, 1]
Class -9-
package net.dharmaraj;
import java.util.Date;
public class Example
{
public static void main(String ar[])
{
Date d1=new Date(99,11,31);
Date d2=new Date(99,11,31);
method(d1,d2);
System.out.println("d1 is "+d1 +" \n d2 is"+d2);
}
public static void method(Date d1,Date d2)
{
d2.setYear(100);
d1=d2;
}
}
Class -8-
package net.dharmaraj;
public class TechnoSample {
public static void main(String args[]) {
TechnoSample t = new TechnoSample();
TechnoSample d = new DerivedSample();
d.echoN(d.paramA);
}
int paramA = 9;
void echoN(int n) {
System.out.println("number is in Base " + n);
}
}
class DerivedSample extends TechnoSample {
int paramA = 3;
void echoN(int n) {
System.out.println("number is in Derived " + n);
}
}
Answer :--
number is in Derived 9
Class -7-When executed the following line of code will print System.out.println(-1 * Double.NEGATIVE_INFINITY);
Class -7-When executed the following line of code will print System.out.println(-1 * Double.NEGATIVE_INFINITY);
package net.dharmaraj;
class dev {
public static void main(String ff[]) {
System.out.println(-1 * Double.NEGATIVE_INFINITY);
}
}
A) -Infinity
B) Infinity
C) NaN
D) -NaN
package net.dharmaraj;
class dev {
public static void main(String ff[]) {
System.out.println(-1 * Double.NEGATIVE_INFINITY);
}
}
A) -Infinity
B) Infinity
C) NaN
D) -NaN
Class -6-What will happen if you compile/run the folowing lines of code?
Class -6-What will happen if you compile/run the folowing lines of code?
package net.dharmaraj;
import java.util.*;
public class dev {
public static void main(String[] xyz) {
Vector a = new Vector();
// a.addElement(new Integer(10));
a.addElement(10);
System.out.println(a.elementAt(0));
}
}
1: Vector a = new Vector();
2:
3: a.addElement(10);
4:
5: System.out.println(a.elementAt(0));
A) Prints 10.
B) Prints 11.
C) Compilation error at line 3.
D) Prints some garbage.
package net.dharmaraj;
import java.util.*;
public class dev {
public static void main(String[] xyz) {
Vector a = new Vector();
// a.addElement(new Integer(10));
a.addElement(10);
System.out.println(a.elementAt(0));
}
}
1: Vector a = new Vector();
2:
3: a.addElement(10);
4:
5: System.out.println(a.elementAt(0));
A) Prints 10.
B) Prints 11.
C) Compilation error at line 3.
D) Prints some garbage.
Class -5-What will be the output when you compile and execute the following program.
Class -5-What will be the output when you compile and execute the following program.
package net.dharmaraj;
public class Base {
private int i;
static public void main(String[] a) {
System.out.println("Value is: " + new Base().i);
}
}
Select most appropriate answer(s).
a) Value is: 0
b) Compile time error. Can't access the private variable i defined in class Base.
c) Compile time error. Can't make a static reference to nonstatic variable i in class Base.
d) Runtime error. Variable i is uninitialized
e) Compile time error. Variable i is uninitialized
f) None
package net.dharmaraj;
public class Base {
private int i;
static public void main(String[] a) {
System.out.println("Value is: " + new Base().i);
}
}
Select most appropriate answer(s).
a) Value is: 0
b) Compile time error. Can't access the private variable i defined in class Base.
c) Compile time error. Can't make a static reference to nonstatic variable i in class Base.
d) Runtime error. Variable i is uninitialized
e) Compile time error. Variable i is uninitialized
f) None
Class -4-What will be the output when you compile and execute the following program.
Class -4-What will be the output when you compile and execute the following program.
public class Base
{
// private int i;
// private static int i;
// static int i;
static public void main(String[] a)
{
System.out.println("Value is: " + i);
}
}
Select most appropriate answer(s).
a) Value is: 0
b) Compile time error. Can't access the private variable i defined in class Base.
c) Compile time error. Can't make a static reference to nonstatic variable i in class Base.
d) Runtime error. Variable i is uninitialized
e) Compile time error. Variable i is uninitialized
f) None
public class Base
{
// private int i;
// private static int i;
// static int i;
static public void main(String[] a)
{
System.out.println("Value is: " + i);
}
}
Select most appropriate answer(s).
a) Value is: 0
b) Compile time error. Can't access the private variable i defined in class Base.
c) Compile time error. Can't make a static reference to nonstatic variable i in class Base.
d) Runtime error. Variable i is uninitialized
e) Compile time error. Variable i is uninitialized
f) None
Class -3- What will be the result when you try to compile and run the following code?
Class -3- What will be the result when you try to compile and run the following code?
package net.dharmaraj;
class Base {
Base() {
int i = 100;
System.out.println(i);
}
}
public class Pri extends Base {
static int i = 200;
public static void main(String argv[]) {
Pri p = new Pri();
System.out.println(i);
}
}
1) Error at compile time
2) 200
3) 100 followed by 200
4) 100
package net.dharmaraj;
class Base {
Base() {
int i = 100;
System.out.println(i);
}
}
public class Pri extends Base {
static int i = 200;
public static void main(String argv[]) {
Pri p = new Pri();
System.out.println(i);
}
}
1) Error at compile time
2) 200
3) 100 followed by 200
4) 100
Class -2-
/*Q.350)
public class MyClass1{
public static void main(String argv[]){ }
/*Modifier at XX class MyInner {}
}
What modifiers would be legal at XX in the above code?
1) public
2) private
3) static
4) friend
*/
public class MyClass1{
public static void main(String[] x){}
class MyInner{}
}
Class -1- What is the result when you compile and run the following code?
Class -1- What is the result when you compile and run the following code?
package net.dharmaraj;
import java.util.*;
public class MyVector {
public Vector myVector() {
Vector v = new Vector();
// return v.addElement("Adding element to vector");
// return v.addElement(new String("dev"));
// MyVector s=v.addElement(new Integer(1));
// return v.addElement(new Integer(1)) ;
return v;
}
public static void main(String[] args) {
MyVector mv = new MyVector();
System.out.println(mv.myVector());
}
}
A) Prints Adding element to vector
B) Compile time error
C) Runtime error
D) Compiles and runs successfully
package net.dharmaraj;
import java.util.*;
public class MyVector {
public Vector myVector() {
Vector v = new Vector();
// return v.addElement("Adding element to vector");
// return v.addElement(new String("dev"));
// MyVector s=v.addElement(new Integer(1));
// return v.addElement(new Integer(1)) ;
return v;
}
public static void main(String[] args) {
MyVector mv = new MyVector();
System.out.println(mv.myVector());
}
}
A) Prints Adding element to vector
B) Compile time error
C) Runtime error
D) Compiles and runs successfully
Subscribe to:
Posts (Atom)