Advertisements
Advertisements
What is the value of xl if x=5?
x1 = + +x – X+ + + –x
Concept: undefined > undefined
Why is an object called an instance of a class?
Concept: undefined > undefined
Advertisements
Name any two OOP’s principles.
Concept: undefined > undefined
Convert following do-while loop into for loop.
int i = 1;
int d = 5;
do {
d=d*2;
System.out.println(d);
i+ + ; } while (i< =5);
Concept: undefined > undefined
What are identifiers?
Concept: undefined > undefined
What are keywords ? Give an example.
Concept: undefined > undefined
Analyze the given program segment and answer the following questions :
for(int i = 3; i <= 4; i++){
for(int j = 2; j <i; j++){
System.out.print("");
}
System.out.println("WIN");
}
(i) How many times does the inner loop execute ?
(ii) Write the output of the program segment.
Concept: undefined > undefined
Name any two library packages.
Concept: undefined > undefined
Name the type of error ( syntax, runtime or logical error) in each case given below:
(i) Math.sqrt (36 – 45)
(ii) int a;b;c;
Concept: undefined > undefined
What is the difference between the Scanner class functions next () and nextLine()?
Concept: undefined > undefined
State the difference between == operator and equals () method.
Concept: undefined > undefined
What is the type of casting shown by the following example:
char c = (char) 120;
Concept: undefined > undefined
Write a function prototype of the following:
A function PosChar which takes a string argument and a character argument and returns an integer value.
Concept: undefined > undefined
Name any two types of access specifiers.
Concept: undefined > undefined
Using switch statement, write a menu-driven program for the following :
(i) To find and display the sum of the series given below :
S = x1 -x2 + x2 – x4 + x5 – x20
(where x = 2)
(ii) To display the following series :
1 11 111 1111 11111
For an incorrect option, an appropriate error message should be displayed.
Concept: undefined > undefined
Give the output of the following string functions:
- "MISSISSIPPI".indexOf('S') + "MISSISSIPPI".lastIndexOf('I')
- "CABLE".compareTo("CADET")
Concept: undefined > undefined
Give the output of the following Math functions:
(i) Math.ceil(4.2)
(ii) Math.abs(-4)
Concept: undefined > undefined
State the difference between while and do-while loop.
Concept: undefined > undefined
Write down java expression for:
`"T" = sqrt("A"^2 + "B"^2 + "C"^2)`
Concept: undefined > undefined
Rewrite the following using ternary operator:
if (x%2 == o)
System.out.print(“EVEN”);
else
System.out.print(“ODD”);
Concept: undefined > undefined