Advertisements
Advertisements
Name any two basic principles of Object-oriented Programming.
Concept: undefined > undefined
Write a difference between unary and binary operator.
Concept: undefined > undefined
Advertisements
Name the keyword which: indicates that a method has no return type.
Concept: undefined > undefined
Name the keyword which: makes the variable as a class variable.
Concept: undefined > undefined
Identify and name the following tokens:
(i) public
(ii) ‘a’
(iii) ==
(iv) {}
Concept: undefined > undefined
What are the various types of errors in Java?
Concept: undefined > undefined
Write a Java expression for the following : |x2+2xy|
Concept: undefined > undefined
Write the return data type of the following function: startsWith( )
Concept: undefined > undefined
Write the return data type of the following function: random( )
Concept: undefined > undefined
If the value of basic=1500, what will be the value of tax after the following statement is executed?
tax = basic > 1200 ? 200 : 100
Concept: undefined > undefined
Give the output of following code and mention how many times the loop will execute?
int i;
for(i=5; i> =l;i~)
{
if(i%2 ==1)
continue;
System.out.print(i+ ”
}
Concept: undefined > undefined
Evaluate the following expression if the value of x = 2,y = 3 and z = 1.
v = x + – z + y + + + y.
Concept: undefined > undefined
What is meant by a package?
Concept: undefined > undefined
Design a class name ShowRoom with the following description :
Instance variables/ Data members :
String name – To store the name of the customer
long mobno – To store the mobile number of the customer
double cost – To store the cost of the items purchased
double dis – To store the discount amount
double amount – To store the amount to be paid after discount
Member methods: –
ShowRoom() – default constructor to initialize data members
void input() – To input customer name, mobile number, cost
void calculate() – To calculate discount on the cost of purchased items, based on following criteria
Cost | Discount (in percentage) |
Less than or equal to ₹ 10000 | 5% |
More than ₹ 10000 and less than or equal to ₹ 20000 | 10% |
More than ₹ 20000 and less than or equal to ₹ 35000 | 15% |
More than ₹ 35000 | 20% |
void display() – To display customer name, mobile number, amount to be paid after discount
Write a main method to create an object of the class and call the above member methods.
Concept: undefined > undefined
Using the switch-case statement, write a menu driven program to do the following :
(a) To generate and print Letters from A to Z and their Unicode Letters Unicode
(b) Display the following pattern using iteration (looping) statement: 1
Concept: undefined > undefined
Name the operators listed below are
(i) <
(ii) + +
(iii) &&
(iv) ? :
Concept: undefined > undefined
Write one difference between / and % operator.
Concept: undefined > undefined
Give the output of the following program segment and also mention the number of times the loop is executed:
int a,b;
for (a=6, b=4; a< =24; a=a + 6)
{
if (a%b= =0)
break;
}
System, out .println(a);
Concept: undefined > undefined
Write the output:
charch= ‘F’;
int m= ch;
m=m+5;
System.out.println(m+ ” ” +ch);
Concept: undefined > undefined
Write a Java expression for the following :
ax5 + bx3 + c
Concept: undefined > undefined