Core java - Interview Questions and Answers for 'Gemalto' | Search Interview Question - javasearch.buggybread.com
Questions
Search
List By Company
List By Topic
Legacy
Tests
Repository
DashBoard
Java
Java 8
Java 7
Java Abbreviations
OCJP / SCJP
Class List
New in Java 8
Java Exceptions
Spring Exceptions
Java Enums
Java 8 Lambda
Java 8 java.time
Big Data
Best Of Java
Discussion
Search
Subscribe
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
Search
Submit Question
Core java - Interview Questions and Answers for 'Gemalto' - 2 question(s) found
- Order By Newest
Very Frequently asked to fresh graduates and less experienced. Favorite question in Walk in drives. Frequently asked in Indian Services companies.
Q1.
Difference between Overloading and Overriding ?
Core Java
Ans. Overloading - Similar Signature but different definition , like function overloading.
Overriding - Overriding the Definition of base class in the derived class.
Sample Code for overloading
Sample Code for overriding
Help us improve. Please let us know the company, where you were asked this question
:
Like
Discuss
Correct / Improve
 java   oops   overloading   overriding   oops concepts   basic interview question   overloading vs overriding
Asked in 86 Companies
basic
 
frequent
Correction
Duplicate of Another Question
Company where this question was Asked
Suggestion
Try 1 Question(s) Test
Which of the following can be overridden ?
final instance methods
final static methods
non final instance methods
non final static methods
Related Questions
What are the difference between composition and inheritance in Java?
Explain OOPs
or
Explain OOPs Principles
or
Explain OOPs Concepts
or
Explain OOPs features
or
Tell me something about OOPs
What is the difference between Encapsulation and Abstraction?
What are points to consider in terms of access modifier when we are overriding any method?
What is Polymorphism in Java ?
Can you give a real world example of Encapsulation and Abstraction ?
Why every object constructor automatically call super() in Object before its own constructors?
How compiler handles the exceptions in overriding ?
Difference between Composition and Inheritance ?
Usually asked to entry level software developers.
Q2.
Write a program to swap two variables without using third
Core 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
Correction
Duplicate of Another Question
Company where this question was Asked
Suggestion
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: