Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


for(i=0;i<100;i++)
{
int i=method();//method returns no's from 1 to 10;


/*
insert some stmts which can give output like no.of times
numbers(1-10) returned. (for example if it returns 2 then i
want output how many times 2 returned) like that i want
output for no's 1 - 10 how many times each no returned.

*/

}

Answers were Sorted based on User's Feedback



for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert so..

Answer / abhishek.cusat.it2007

class X
{
public void method()
{
int x=0;
do{
x++;
System.out.println(x);
}
while(x<10);
{
System.out.println("this is your Ptogaram");
}

}

public static void main(String[] as)
{
X a=new X();
for(int i=0;i<100;i++)
{
a.method();
break;
}
}
}

Is This Answer Correct ?    3 Yes 2 No

for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert so..

Answer / abhishek kumar

class X
{
public void method()
{
int x=0;
do{
x++;
System.out.println(x);
}
while(x<10);
{
System.out.println("this is your Ptogaram");
}

}
public static void main(String[] as)
{
X a=new X();
for(int i=0;i<100;i++)
{
a.method();
break;
}
}
}

Is This Answer Correct ?    2 Yes 2 No

for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert so..

Answer / $ourav

static int []arr=new int[10];
arr[i]++;

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

Explain the private protected method modifier?

0 Answers  


Should database connections be singleton?

0 Answers  


What is a layout manager and what are different types of layout managers available in java awt?

0 Answers  


What is synchronization? How it can be achieved?

2 Answers  


What isan abstract class and when do you use it?

1 Answers   Genpact,


If set accepts only one argument then how can it compare two objects to avoid duplicates

5 Answers  


What is an object's lock and which object's have locks in java programming?

0 Answers  


Is java map thread safe?

0 Answers  


what is nested class in java?

0 Answers   IBS,


Can we extend singleton class in java?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


Can we create an object of private class?

0 Answers  


Categories