There were two sections Aptitude Technical
Aptitude
-
If m-4 is 7 more than n then m+9 is how much more than n+2
-
If 10x coins are added to the no. of original coins he has (5y + 1) times more coins. Find out how many coins he
had originally in terms of x and y -
Find out the Simple Interest paid for a sum of $4000 at the rate of 8% per annum for 3 months.
-
If it takes 10 technicians working 6 hours to build a server. They start woring at 11 AM and 1 technician is
added per hour starting at 5 PM. At what time they will finish the server? -
A chart was there giving the speed of train after some minutes like
0 30 60 90 120 150 180
40 45 50 55 60 65 70 -
Find the % increase in the speed of train?
-
If it is extrapolated further what will be the speed after 5 hrs.
-
If the data is for 10 bogies and for every 2 bogies added speed decreases by 5% what will be the speed after 5
hrs. -
The type of questions where Both stmt are necessary First one is sufficient in itself…..… What is the perimeter of the quadrilateral?
-
The quadrilateral is rectangle
-
The area of the quadrilateral is 36 What is a*b
-
6a+4b=43
-
3a+12b=63
-
The house is big and lovely but since nobody uses it it is pretty much a white Elephant What does White Elephant mean?
-
Sometime they irritate me because they are up with the lark whereas I like to lie in What does Up with Lark
mean?
Technical
-
What exception can an overridden method throw in comparison with the method it is overriding?
-
What does parseQueryString return?
-
Anonymous classes – Can they have constructors?
-
what is wrong with this
abstract class MyClass
{
transient a,
synchronized b.
} -
How can an inner class access the members of outer class?
-
Find the output:
String a=”abc”;
String b=”abc”;
If(a==b)
System.out.println(“1”);
Else
System.out.println(“2”);
If a.equals(b)
System.out.println(“3”);
Else
System.out.println(“4”); -
Find the output Code showing Call by reference and call by value was given Array was used.
-
Some For stmts was given Mark all valid once
-
byte b=1
While(++b > 0);
System.out.println(b);