Interview Questions and Answers for 'Lenovo' | Search Interview Question - javasearch.buggybread.com
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers for 'Lenovo' - 2 question(s) found - Order By Newest

Frequently asked in Accenture.
  Q1. What is your biggest achievement at work ?General
Ans. [Open Ended Answer]

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     general question  non technical question     Asked in 20 Companies        frequent


Related Questions

  Describe, in general, how java's garbage collector works ?
  What is a ConcurrentHashMap ?
  What is Generalization and Specialization in terms of casting ?
 Which java frameworks have you used ?
  What the Bean scopes provided by Spring ?
  What are the various Auto Wiring types in Spring ?
  When should we use prototype scope and singleton scope for beans ?
 When do we generally get this database error - integrity constraint violated - parent key not found ?
 Write a program for Coin Changer application ?
 When do we generally get the database error - Unique Constraint Violated ?


 Q2. Write a program in Java that prints the numbers from 1 to 100. But for multiples of three print Fizz instead of the number and for the multiples of five print Buz. For numbers which are multiples of both three and five print FizzBuzzCore Java
Ans. public class Class{
public static void main(String[] args){
for(int i=1;i<= 100;i++){
if(i%3 == 0){
if(i%5 == 0){
System.out.println("FizzBuzz");
}
System.out.println("Fizz");
} else if(i%5 == 0){
System.out.println("Buzz");
} else {
System.out.println(i);
}

}
}
}

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     code  coding     Asked in 2 Companies


Related Questions

  Which keyword is used to provide explicit access of a code block to single thread ?

a. Transient
b. Final
c. Explicit
d. Synchronized
  How does volatile affect code optimization by compiler?
  Will this code give error if i try to add two heterogeneous elements in the arraylist. ? and Why ?
 What is the difference between the following two code lines ?

1. new OuterClass().new InnerClass();

2. new OuterClass.InnerClass();
  Which String class does not override the equals() and hashCode() methods, inheriting them directly from class Object?
 If arrays cannot be resized , Why is this code valid

String[] strArray = new String[2];
strArray = new String[5];
  Will the static block be executed in the following code ? Why ?
  If you are given a choice to implement the code to either Insert a Record or Update if already exist, Which approach will you follow ?
  Which of the following is not the advantage of Mocking frameworks ?
  How can we make sure that a code segment gets executed even in case of uncatched exceptions ?



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: