Fresher Than Fresh
Bimadirect Interview Questions and Answers
Q1. What is Jvm and it' architecture?
JVM stands for Java Virtual Machine, it is an abstract computing machine that enables a computer to run Java programs.
JVM is platform-independent and converts Java bytecode into machine code.
It provides memory management, garbage collection, and security features.
JVM architecture consists of class loader, runtime data areas, execution engine, and native method interface.
Q2. Write a java program finding same character
Java program to find and display the characters that are repeated in a given array of strings.
Iterate through each string in the array
For each string, iterate through each character and store them in a HashMap with character as key and count as value
Print the characters that have count greater than 1
Q3. What is oops concept?
OOPS (Object-Oriented Programming) is a programming paradigm that uses objects to represent and manipulate data.
OOPS focuses on the concept of objects, which are instances of classes.
It emphasizes encapsulation, inheritance, and polymorphism.
Encapsulation ensures data hiding and abstraction.
Inheritance allows classes to inherit properties and behaviors from other classes.
Polymorphism enables objects to take on multiple forms or behaviors.
Example: In Java, a class represents a...read more
Q4. What is java and it's features
Java is a high-level programming language known for its portability, security, and object-oriented features.
Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)
It is object-oriented, allowing for modular and reusable code
Java is secure with features like automatic memory management and exception handling
It supports multithreading, allowing for concurrent execution of tasks
Java has a rich set of APIs and libraries for various functio...read more
Q5. What is strings,data types?
Strings are a data type used to represent a sequence of characters in Java.
Strings are immutable, meaning they cannot be changed once created.
String literals are enclosed in double quotes, e.g. "Hello World".
Strings can be concatenated using the '+' operator, e.g. "Hello" + "World".
String objects have many useful methods like length(), substring(), etc.
Q6. What are array?
Arrays are a data structure that stores a fixed-size sequence of elements of the same type.
Arrays can be of any data type, including strings.
They have a fixed size, which is determined at the time of declaration.
Elements in an array are accessed using their index, starting from 0.
Arrays can be used to store and manipulate collections of data efficiently.
Q7. What is collection
A collection in Java is a framework that provides an architecture to store and manipulate a group of objects.
Collections can store objects of different types.
Common collection types include List, Set, and Map.
Collections provide methods for adding, removing, and accessing elements.
Example: List
names = new ArrayList<>();
Interview Process at Bimadirect
Top Java Developer Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month