InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
In which format Data store Happen in API Baas and why? |
|
Answer» In which format Data STORE Happen in API BAAS and why? |
|
| 2. |
Write code to reverse a string in Java? |
|
Answer» Write code to reverse a string in Java? |
|
| 3. |
What is Java LinkedList and its features |
|
Answer» What is Java LinkedList and its features |
|
| 4. |
what is OOAD |
|
Answer» OOAD is a Software Engineering approach that models a system as a group of interacting objects and its object REPRESENTS some entity or attribute in this system and its object defined by its class, its state, and its behavior.In other defination we can say that OOAD is a methodology which helps to analyze,design and develop application using objects and their relations and message based communication to each other.In OOAD everything rotates on objects and classes. OOAD INTRODUCED a PARADIGM shift from thinking and programming procedurally to objects oriented programming.This approach helps in designing complex real time systems.Some of its features like DATA Abstraction and Encapsulation, INHERITANCE and Polymorphism form are basic fundamentals of object oriented programming. |
|
| 5. |
Deine covariant return type in core java? |
|
Answer» Deine covariant return type in core JAVA? |
|
| 6. |
Different Memory Allocations available in Java? |
|
Answer» DIFFERENT MEMORY Allocations available in Java? Below are the five significant types of memory allocations in Java. (1)CLASS Memory (2)Heap Memory (3)Stack Memory (4)Program Counter-Memory (5)NATIVE METHOD Stack Memory |
|
| 7. |
Difference between JDK and JRE? |
|
Answer» Difference between JDK and JRE? |
|
| 8. |
String handling and find the output of Java program? |
|
Answer» String HANDLING and find the output of Java program? |
|
| 9. |
Is it possible to declare a constructor as final in corejava? |
|
Answer» Is it possible to declare a CONSTRUCTOR as final in corejava? |
|
| 10. |
Define the System Class in Java? |
|
Answer» Define the System Class in Java? |
|
| 11. |
Why delete function faster in the linked list as compare to array in Java? |
|
Answer» Why delete function faster in the linked LIST as COMPARE to array in Java? |
|
| 12. |
Difference between ArrayList and LinkedList |
|
Answer» Difference between ArrayList and LinkedList |
|
| 13. |
Write code to find the Second Highest number in an ArrayList in Java? |
|
Answer» Write code to find the Second HIGHEST number in an ArrayList in Java? |
|
| 14. |
Difference between applications and applets |
|
Answer» 1)Application must be run on local MACHINE whereas applet needs no EXPLICIT installation on local machine. |
|
| 15. |
Comparison between List, Set, and Queue in Java |
|
Answer» Comparison between LIST, Set, and QUEUE in Java |
|
| 16. |
What are Basic Operators in Java? |
|
Answer» What are Basic Operators in Java? |
|
| 17. |
Difference between Local and Instance variable in Java with example |
|
Answer» Difference between Local and Instance variable in Java with example |
|
| 18. |
Can we inherited the constructor in Java? |
|
Answer» Can we INHERITED the CONSTRUCTOR in JAVA? |
|
| 19. |
difference between C and Java on pointers |
|
Answer» (1)Both of these have pointers but JAVA pointers are not same as c pointers. |
|
| 20. |
Final keyword in Java and different contexts |
|
Answer» Final KEYWORD in JAVA and different contexts |
|
| 21. |
What do you think why pointer are not used in Java? |
|
Answer» What do you think why POINTER are not used in Java? |
|
| 22. |
Basic of JDK, JRE and JVM and there difference? |
|
Answer» Basic of JDK, JRE and JVM and there difference? |
|
| 23. |
what is an object |
|
Answer» An object is an entity with certain attributes/ QUALITIES and behaviors to under stand this we take an example of a 'computer'. Computer is an object which has certain attributes LIKE WEIGHT,COLOR,screen size,manufacturer,noofkeys etc. It also has various behaviors or activities to do or act upon, as play games,browse Internet,CHECK emails , watch movies ,listen music,calc,notepad etc. |
|
| 24. |
what is a transient variable in java |
|
Answer» A variable that donot allow for object serialisation. so that the STATE of the value will always be defaulted after the deserialisation.It is CALLED transient variables to UNDERSTAND this we TAKE a example of it:- |
|