Java aptitude/interview questions - Part 1
This is Objectives type java question with answers which will help fresh engineering graduates to crack the interview and java aptitude test.
________________________________________
Question 1) Which of the following lines will compile without warning or error.
1) float f=1.3;
2) char c="a";
3) byte b=257;
4) boolean b=null;
5) int i=10;
________________________________________
Question 1) Which of the following lines will compile without warning or error.
1) float f=1.3;
2) char c="a";
3) byte b=257;
4) boolean b=null;
5) int i=10;
__________
______________________________
Question 2)
What will happen if you try to compile and run the following code
public class MyClass {
public static void main(String arguments[]) {
amethod(arguments);
}
public void amethod(String[] arguments) {
System.out.println(arguments);
System.out.println(arguments[1]);
}
}
1) error Can't make static reference to void amethod.
2) error method main not correct
3) error array must include parameter
4) amethod must be declared with String
________________________________________
Question 3)
Which of the following will compile without error
1)
import java.awt.*;
package Mypackage;
class Myclass {}
2)
package MyPackage;
import java.awt.*;
class MyClass{}
3)
/*This is a comment */
Question 2)
What will happen if you try to compile and run the following code
public class MyClass {
public static void main(String arguments[]) {
amethod(arguments);
}
public void amethod(String[] arguments) {
System.out.println(arguments);
System.out.println(arguments[1]);
}
}
1) error Can't make static reference to void amethod.
2) error method main not correct
3) error array must include parameter
4) amethod must be declared with String
________________________________________
Question 3)
Which of the following will compile without error
1)
import java.awt.*;
package Mypackage;
class Myclass {}
2)
package MyPackage;
import java.awt.*;
class MyClass{}
3)
/*This is a comment */
package MyPackage;
import java.awt.*;
class MyClass{}
________________________________________
Question 4)
A byte can be of what size
1) -128 to 127
2) (-2 power 8 )-1 to 2 power 8
3) -255 to 256
4)depends on the particular implementation of the Java Virtual machine
Question 4)
A byte can be of what size
1) -128 to 127
2) (-2 power 8 )-1 to 2 power 8
3) -255 to 256
4)depends on the particular implementation of the Java Virtual machine
________________________________________
Question 5)
What will be printed out if this code is run with the following command line?
java myprog good morning
public class myprog{
Question 5)
What will be printed out if this code is run with the following command line?
java myprog good morning
public class myprog{
public static void main(String argv[])
{
{
System.out.println(argv[2])
}
}
1) myprog
2) good
3) morning
4) Exception raised: "java.lang.ArrayIndexOutOfBoundsException: 2"
}
1) myprog
2) good
3) morning
4) Exception raised: "java.lang.ArrayIndexOutOfBoundsException: 2"
________________________________________
Question 6)
Question 6)
Which of the following are java reserved words?
1) if
2) then
3) goto
4) while
5) case
________________________________________
Question 7)
1) if
2) then
3) goto
4) while
5) case
________________________________________
Question 7)
Which of the following are legal identifiers
1) 2variable
2) variable2
3) _whatavariable
4) _3_
5) $anothervar
6) #myvar
________________________________________
Question 8)
What will happen when you compile and run the following code?
1) 2variable
2) variable2
3) _whatavariable
4) _3_
5) $anothervar
6) #myvar
________________________________________
Question 8)
What will happen when you compile and run the following code?
public class MyClass{
static int i;
public static void main(String argv[]){
System.out.println(i);
}
}
1) Error Variable i may not have been initialized
2) null
3) 1
4) 0
________________________________________
Question 9)
What will happen if you try to compile and run the following code?
public class Q {
1) Error Variable i may not have been initialized
2) null
3) 1
4) 0
________________________________________
Question 9)
What will happen if you try to compile and run the following code?
public class Q {
public static void main(String argv[]){
int anar[]=new int[]{1,2,3};
System.out.println(anar[1]);
}
}
1) 1
2) Error anar is referenced before it is initialized
3) 2
4) Error: size of array must be defined
1) 1
2) Error anar is referenced before it is initialized
3) 2
4) Error: size of array must be defined
________________________________________
Question 10)
Question 10)
What will happen if you try to compile and run the following code?
public class Q {
public class Q {
public static void main(String argv[]){
int anar[]=new int[5];
System.out.println(anar[0]);
}
}
1) Error: anar is referenced before it is initialized
2) null
3) 0
4) 5
________________________________________
Question 11)
1) Error: anar is referenced before it is initialized
2) null
3) 0
4) 5
________________________________________
Question 11)
What will be the result of attempting to compile and run the following code?
abstract class MineBase {
abstract class MineBase {
abstract void amethod();
static int i;
}
public class Mine extends MineBase {
public class Mine extends MineBase {
public static void main(String argv[]){
int[] ar=new int[5];
for(i=0;i < ar.length;i++)
System.out.println(ar[i]);
}
}
1) a sequence of 5 0's will be printed
2) Error: ar is used before it is initialized
3) Error Mine must be declared abstract
4) IndexOutOfBoundes Error
________________________________________
Question 12)
What will be printed out if you attempt to compile and run the following code ?
int i=1;
1) a sequence of 5 0's will be printed
2) Error: ar is used before it is initialized
3) Error Mine must be declared abstract
4) IndexOutOfBoundes Error
________________________________________
Question 12)
What will be printed out if you attempt to compile and run the following code ?
int i=1;
switch (i) {
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");
default:
System.out.println("default");
}
1) one
2) one, default
3) one, two, default
4) default
________________________________________
Question 13)
What will be printed out if you attempt to compile and run the following code?
int i=9;
1) one
2) one, default
3) one, two, default
4) default
________________________________________
Question 13)
What will be printed out if you attempt to compile and run the following code?
int i=9;
switch (i) {
default:
System.out.println("default");
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");
}
1) default
2) default, zero
3) error default clause not defined
4) no output displayed
________________________________________
Question 14)
Which of the following lines of code will compile without error
1)
int i=0;
1) default
2) default, zero
3) error default clause not defined
4) no output displayed
________________________________________
Question 14)
Which of the following lines of code will compile without error
1)
int i=0;
if(i) {
System.out.println("Hello");
}
2)
boolean b=true;
2)
boolean b=true;
boolean b2=true;
if(b==b2) {
System.out.println("So true");
}
3)
int i=1;
3)
int i=1;
int j=2;
if(i==1|| j==2)
System.out.println("OK");
4)
int i=1;
4)
int i=1;
int j=2;
if(i==1 &| j==2)
System.out.println("OK");
toms outlet, http://www.tomsoutlet-stores.com/
ReplyDeletenike roshe, http://www.nikerosherunshoes.co.uk/
prada handbags, http://www.pradahandbagsoutlet.co.uk/
soccer jerseys, http://www.cheapsoccerjersey.net/
michael kors outlet store, http://www.michaelkorsoutlet-store.us.com/
true religion jeans, http://www.truereligionjeansoutlets.us.com/
oakley sunglasses, http://www.oakleysunglasses-outlet.us.com/
nike free 5, http://www.nikefree5.us/
louis vuitton bags, http://www.louisvuittonbag.us.com/
chanel handbags, http://www.chanelhandbags-outlet.co.uk/
chanel handbags, http://www.chanelhandbags-outlet.us.com/
louis vuitton handbags, http://www.louisvuittonhandbag.us/
louis vuitton outlet, http://www.louisvuittonoutlet.in.net/
ghd hair straighteners, http://www.ghdhairstraightenerssale.co.uk/
nba jerseys, http://www.nbajerseys.us.com/
coach outlet, http://www.coachoutletstores.com.co/
true religion jeans, http://www.truereligionjeanscanada.com/
swarovski crystal, http://www.swarovskicrystals.co.uk/
mbt shoes, http://www.mbtshoesoutlet.us.com/
michael kors handbags, http://www.michaelkorshandbags.in.net/
chanel handbags, http://www.chanelhandbagsoutlet.in.net/
michael kors outlet online, http://www.michaelkorsoutletonline.in.net/
polo ralph lauren, http://www.poloralphlauren.us.org/
the north face clearance, http://www.thenorthfaceclearances.us.com/
jordan shoes, http://www.jordan-shoes.us.com/
beats by dr dre, http://www.beatsbydrdre-headphones.us.com/
the north face uk, http://www.thenorthfaces.org.uk/
0929maoqiuyun
michael kors outlet goes new balance shoes into michael kors outlet online east cheap true religion and chris paul jersey southern new balance canada Ukraine. toronto raptors jerseys Sectoral air max 90 sanctions huarache could cheap eyeglasses be lulu lemon damaging. adidas The coach outlet store online sectors ed hardy are north face outlet energy, babyliss financial abercrombie and fitch services, juicy couture metals mont blanc and gucci mining, tiffany jewelry defense bcbg max azria and roshe runs engineering, cheap oakley so air max fairly shoes outlet far chi jerseys reaching.Note ray ban that michael kors canada Obama michael kors purses
ReplyDeleteVery good post. I'm facing some of these issues as well.
ReplyDeletehttp://el-tamimi.com/
http://el-tamimi.com/legal-consultants/
http://el-tamimi.com/divorce-lawyer/
http://el-tamimi.com/best-lawyer/
http://el-tamimi.com/lawyer-number/
20161220meiqing
ReplyDeletecheap oakley sunglasses
ralph lauren
coach outlet store
nfl jerseys
christian louboutin shoes
uggs
rolex watches
oakley sunglasses outlet
uggs
nmd adidas
Even when the whistle is blown, the Warriors are fun to watch.Following a Klay Thompson block on Raptors guard Kyle Lowry's Warriors Team Store layup attempt, Andre Iguodala ended up with the ball and threw Shaun Livingston a stupid, between-the-legs, behind-the-back lob canada goose outlet for the alley-oop finish.MORE: Durant hates L2M reports, but the reason why may surprise you.The whistle blew prior Lebron James Shose to the sequence, so the basket didn't count. But it was still ridiculous to watch. The Raptors got Custom NBA Jerseys down big early Wednesday night, and they hadn't done much to cut into the Golden State lead entering Kyrie Irving Jerseys the fourth quarter. Toronto did bring the deficit down to single digits in the final frame, but the canada goose jacket Warriors held on for a 121-111 victory.
ReplyDeleteStephen Curry didn’t have a banner day on the basketball court Custom NCAA Jerseys on Christmas, but it’s not the stats that stick out to most fans that have his coach concerned.Curry Russell Westbrook Jerseys scored 15 points, making just 4 of 11 shots from the field, as the Golden State Warriors blew Cleveland Cavaliers Jerseys
tommy hilfiger outlet
ReplyDeleteoakley sunglasses canada
ed hardy clothing
cheap ugg boots
true religion jeans
canada goose outlet
coach factory outlet
michael kors outlet
ray ban sunglasses
new york knicks jerseys
chenlina20170214
thank you for allowing for me to comment
ReplyDeletehttp://www.prokr.net/2016/09/eliminate-cockroaches-15.html
http://www.prokr.net/2016/09/eliminate-cockroaches-13_12.html
http://www.prokr.net/2016/09/eliminate-cockroaches-13.html
http://www.prokr.net/2016/09/eliminate-cockroaches-12.html
ugg shoes
ReplyDeleteuggs
mulberry handbags
coach outlet
michael kors outlet
adidas outlet
ugg outlet
cheap oakley sunglasses
canada goose outlet
jordan shoes
gucci outlet
ReplyDeletenfl jerseys
air jordan
red bottom shoes
coach outlet online
louboutin
asics running shoes
nike huarache shoes
polo ralph lauren
nike shox
20184.13chenjinyan
moncler jackets
ReplyDeletekobe 11
hermes belt
adidas tubular
adidas nmd
lacoste polo
nike air max
adidas yeezy
lacoste outlet
john wall shoes
Your site is very helpful
ReplyDeletehttps://noran-love.tumblr.com/
http://antiinsectss.zohosites.com/
http://antiinsectss.wallinside.com/
https://www.prokr.net/ksa/jeddah-water-leaks-detection-isolate-companies/
http://saudiacleann.com/
20181101 leilei3915
ReplyDeletepandora jewelry
ralph lauren polo
air jordan retro
coach outlet online
coach outlet store online
christian louboutin shoes
tory burch handbags
true religion outlet
swarovski crystal
polo ralph lauren outlet
AbstractEther phospholipids are major components of the membranes of humans and Leishmania. In protozoan parasites they occur separately or as part of the glycosylphosphatidylinositol (GPI) anchor of Ray Ban Outlet molecules implicated in virulence, such as lipophosphoglycan (LPG), smaller glycosylinositolphospholipids (GIPLs), and GPI anchored proteins. We generated null mutants of the Leishmania major alkyldihydroxyacetonephosphate synthase (ADS), the first committed step Yeezy Boost 350 of ether lipid synthesis.
ReplyDeleteThe GTW is a value assigned to each index term to indicate the Coach Outlet Store topic of Ray Ban Glasses the Yeezy Discount documents. It has Coach Outlet the discrimination New Jordan Shoes 2020 value of the term to discriminate between documents in the same collection. The LTW is a value that Coach Handbags Clearance measures the contribution of the index term in the document.