Interview Questions and Answers for 'Odessa technologie' | 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 'Odessa technologie' - 2 question(s) found - Order By Rating

 Q1. Write a Program to find age by birth date ?Core Java
Ans. LocalDate today = LocalDate.now();
LocalDate birthday = LocalDate.of(1960, Month.JANUARY, 1);
Period p = Period.between(birthday, today); //Now access the values as below
System.out.println(period.getDays());
System.out.println(period.getMonths());
System.out.println(period.getYears());

  Sample Code for LocalDate

  Sample Code for Period

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

   Like         Discuss         Correct / Improve     coding  code  date  LocalDate  Period     Asked in 1 Companies


Related Questions

  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 ?
 Within AWS S3, Why new files are available immediately for read operation but not the updates ?
  Will this code Work ? If not , Why ?
  Is java.util.Date an abstract Class ? Is java.util.Calendar an abstract Class ?
  Which of the following code is correct ?
  What is the use of parse method in DateFormat ?
  Which of the following is not a valid NumberFormat initialization ?
  Which of the following code is correct ?
  What will the following code do ?
  Name few Date and Time Classes you have used in your projects ?


Usually asked to entry level software developers.
  Q2. Write a program to swap two variables without using thirdCore Java
Ans. public static void main(String[] args) {
   int num1 = 1;   
   int num2 = 2;
   num1 = num1^num2;
   num2 = num1^num2;
   num1 = num1^num2;
   System.out.print("num1 = " + num1 +", num2 = "+num2);
}

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

   Like         Discuss         Correct / Improve     code  coding     Asked in 37 Companies      basic        frequent


Related Questions

  What are the steps to be performed while coding Junit with Mocking framework ?
  What is a Sequence File?
 What different level of logging you use while coding ?
 Have you ever encoded the response before sending it back from the service? If Yes , Which encoding was used ?
 What are the different type of encoding you have used ?
 How does encoding affect using Reader / writer classes or Stream classes in Java ?
 What is the difference between html encoding and url encoding ?
 Does spaces get's encoded in html encoding ?



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: