Filter interviews by
I applied via LinkedIn
I appeared for an interview in Apr 2023.
The overall turnover of the business refers to the total revenue generated by the company within a specific period of time.
Calculate the total revenue earned by the company in a given time frame
Consider factors such as sales, services, and other sources of income
Compare the turnover to previous periods to track growth or decline
Use financial statements and reports to analyze the turnover
I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.
Unemployment in India
Narendra Modi is the current Prime Minister of India.
Narendra Modi has been serving as the Prime Minister of India since May 2014.
He is a member of the Bharatiya Janata Party (BJP).
Modi previously served as the Chief Minister of the Indian state of Gujarat from 2001 to 2014.
The current Chief Minister of India is Narendra Modi.
Narendra Modi is the leader of the Bharatiya Janata Party (BJP)
He has been serving as the Prime Minister of India since 2014
Prior to becoming Prime Minister, he served as the Chief Minister of the state of Gujarat
The national flower of India is the lotus, which holds great cultural and religious significance in the country.
The lotus symbolizes purity, beauty, and grace in Indian culture.
It is often associated with Hindu gods and goddesses, and is considered sacred.
The lotus is also a symbol of enlightenment and spiritual growth.
It is commonly used in religious ceremonies and decorations in India.
The national animal of India is the Bengal Tiger, known for its majestic appearance and significance in Indian culture.
The Bengal Tiger is the largest tiger species in the world
It is known for its distinctive orange coat with black stripes
The tiger is a symbol of strength, power, and grace in Indian culture
It is found in various national parks and reserves in India, such as Ranthambore and Jim Corbett National Park
The national game of India is field hockey.
Field hockey is a popular sport in India with a rich history.
The Indian men's field hockey team has won multiple Olympic gold medals.
The Indian women's field hockey team has also achieved success in international competitions.
RBI was established on April 1, 1935.
RBI stands for Reserve Bank of India
It was established under the Reserve Bank of India Act, 1934
The first Governor of RBI was Sir Osborne Smith
RBI is the central bank of India and regulates the country's monetary policy
Shaktikanta Das is the current Governor of the Reserve Bank of India (RBI).
Shaktikanta Das was appointed as the 25th Governor of RBI on December 12, 2018.
He has previously served as the Economic Affairs Secretary of India and as a member of the 15th Finance Commission.
As the Governor of RBI, Shaktikanta Das is responsible for overseeing the country's monetary policy and regulating the banking sector.
The past headquarters of RBI was located in Kolkata, India.
The Reserve Bank of India (RBI) was originally established in Kolkata in 1935.
It was later moved to Mumbai in 1937.
The current headquarters of RBI is in Mumbai, Maharashtra, India.
The present headquarter of RBI is located in Mumbai, India.
The Reserve Bank of India (RBI) is headquartered in Mumbai, Maharashtra, India.
The RBI was originally established in Kolkata in 1935, but later moved to Mumbai in 1937.
The present head office building of RBI in Mumbai is known as the Central Office Building.
RBI (Reserve Bank of India) has several features including monetary policy, currency issuance, and regulation of financial institutions.
Monetary policy decisions to control inflation and promote economic growth
Issuance of currency notes and coins
Regulation and supervision of banks and financial institutions
Management of foreign exchange reserves
Development of the financial system through various initiatives
I applied via Campus Placement
I appeared for an interview in Feb 2025, where I was asked the following questions.
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage. Choose based on performance needs.
ArrayList is backed by a dynamic array, allowing fast random access. Example: accessing an element by index is O(1).
LinkedList consists of nodes that hold data and references to the next and previous nodes, making insertions/deletions O(1) if the node is known.
ArrayList has a fixed size, and resizing ...
== checks reference equality, while .equals() checks value equality in Java objects.
== compares memory addresses (references) of objects.
Example: String a = new String("test"); String b = new String("test"); a == b returns false.
.equals() compares the actual content of objects.
Example: a.equals(b) returns true.
Use == for primitive types (int, char, etc.) and .equals() for object comparisons.
Improper use of == can lead
Java's garbage collector automatically manages memory by reclaiming unused objects, enhancing performance and preventing memory leaks.
Java uses automatic garbage collection to manage memory, freeing developers from manual memory management.
The main garbage collection algorithms in Java include: Serial GC, Parallel GC, Concurrent Mark-Sweep (CMS), and G1 GC.
Serial GC is a simple, single-threaded collector suitable for s...
Java 8 introduced lambdas and the Stream API, enhancing functional programming and data processing capabilities.
Lambdas: Enable concise representation of functional interfaces, e.g., (x, y) -> x + y.
Stream API: Facilitates functional-style operations on collections, e.g., list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to interfaces without breaking exis...
Checked exceptions must be declared or handled, while unchecked exceptions do not require explicit handling in Java.
Checked exceptions are subclasses of Exception but not of RuntimeException.
Unchecked exceptions are subclasses of RuntimeException.
Example of checked exception: IOException, which must be caught or declared.
Example of unchecked exception: NullPointerException, which does not require explicit handling.
Chec...
The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.
The Java Memory Model (JMM) specifies how threads interact through memory and what behaviors are allowed.
It ensures visibility of shared variables across threads, preventing stale data issues.
Synchronization mechanisms (like synchronized blocks) enforce mutual exclusion and visibility.
The 'volatile' k...
Method overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.
Method Overloading: Same method name, different parameter types or counts.
Example of Overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.
Use Overloading for convenience and readability when methods perform similar functions.
Method Overriding: Redefining a method in a ...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList uses a dynamic array for storage, while LinkedList uses a doubly linked list structure.
ArrayList provides fast random access (O(1)) due to its underlying array structure.
LinkedList allows for efficient insertions and deletions (O(1)) at both ends and in the middle.
ArrayList has a fixed size, requiring resizing (O(n)) when capacity is exceeded, while LinkedList grows dynamically.
Example: Use ArrayList for freq...
Java's synchronized keyword offers simplicity but has limitations compared to ReentrantLock in flexibility and performance.
Synchronized is easy to use and requires less code, e.g., 'synchronized(this) { ... }'.
It can lead to thread contention and performance bottlenecks in high-concurrency scenarios.
Synchronized blocks are not interruptible, meaning a thread cannot be stopped while waiting for a lock.
ReentrantLock prov...
== checks reference equality, while .equals() checks value equality in Java objects.
== compares memory addresses (references) of objects.
Example: String a = new String("test"); String b = new String("test"); a == b returns false.
.equals() compares the actual content of objects.
Example: a.equals(b) returns true for the same content.
Use == for primitive types (int, char, etc.) and .equals() for object comparisons.
Imprope...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and improve code readability.
Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.
Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to interfaces with...
Checked exceptions must be handled or declared, while unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception, excluding RuntimeException and its subclasses.
Unchecked exceptions are subclasses of RuntimeException and Error.
Example of checked exception: IOException, which must be caught or declared in the method signature.
Example of unchecked exception: NullPointerException, ...
The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.
The Java Memory Model (JMM) specifies how threads interact through memory and what behaviors are allowed.
It ensures visibility of shared variables between threads, preventing stale data issues.
Synchronization mechanisms (like synchronized blocks) enforce mutual exclusion and visibility.
The 'volatile' ...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.
Method Overloading: Same method name, different parameters (type, number, or both).
Example of Overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.
Use Overloading for convenience and readability when methods perform similar functions.
Method Overriding: Redefi...
HR Manager
5
salaries
| ₹2 L/yr - ₹5 L/yr |
Project Manager
4
salaries
| ₹3.6 L/yr - ₹5 L/yr |
Program Manager
4
salaries
| ₹3 L/yr - ₹6 L/yr |
Executive Accountant
3
salaries
| ₹1 L/yr - ₹3 L/yr |
Center Manager
3
salaries
| ₹3 L/yr - ₹5 L/yr |
ACTE
Birla White
Zeetech Management And Marketing
Ricoh