Filter interviews by
I applied via Walk-in and was interviewed before Aug 2022. There were 2 interview rounds.
Fiber is a material made of long, thin strands of glass or plastic that transmit data through light signals.
Fiber optics use total internal reflection to transmit data through light signals
Fiber cables are made of glass or plastic fibers that are bundled together
Fiber is used in telecommunications, internet connections, and medical imaging
Fiber can transmit data over long distances with minimal signal loss
Fiber is a connection that uses optical fibers to transmit data through light signals.
Fiber optics use thin strands of glass or plastic to transmit data as pulses of light.
Fiber connections are known for their high speed and reliability.
Examples of fiber connections include Fiber to the Home (FTTH) and Fiber to the Premises (FTTP).
Fiber is a type of network that uses fiber optic cables to transmit data at high speeds.
Fiber networks use fiber optic cables to transmit data
Fiber networks are known for their high speed and reliability
Examples of fiber networks include Fiber to the Home (FTTH) and Fiber to the Premises (FTTP)
The 3 types of fibre are soluble fibre, insoluble fibre, and resistant starch.
Soluble fibre dissolves in water and helps lower cholesterol and regulate blood sugar levels (e.g. oats, beans, fruits)
Insoluble fibre does not dissolve in water and promotes healthy digestion by adding bulk to the stool (e.g. whole grains, vegetables)
Resistant starch resists digestion in the small intestine and acts as a prebiotic, feeding b...
Optical fiber is important for communication due to its high bandwidth, low attenuation, and immunity to electromagnetic interference.
High bandwidth allows for faster data transmission over long distances
Low attenuation ensures signals can travel far without losing strength
Immunity to electromagnetic interference results in clearer communication
Used in telecommunications, internet connectivity, cable television, and mo
Top trending discussions
I was interviewed in Jan 2025.
Exception handling is crucial in programming to handle errors and ensure proper execution. The 'finally' block is used to clean up resources, and throwing exceptions allows for error propagation.
Exception handling is used to manage errors and unexpected situations in a program.
The 'finally' block is used to execute code that should always run, regardless of whether an exception is thrown or not.
Throwing exceptions allo...
ACID properties ensure data integrity in transactions. CAP Theorem states that a distributed system can only guarantee two out of three: Consistency, Availability, Partition Tolerance.
ACID properties: Atomicity, Consistency, Isolation, Durability
Example: In a banking application, a transfer of funds should be atomic, consistent, isolated, and durable
CAP Theorem: Consistency, Availability, Partition Tolerance - a distri...
Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java Collections.
Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.
Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.
To implement Comparable, the class needs to override the compare...
Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.
Generics provide type safety by allowing compile-time type checking.
They enable code reusability and reduce the need for casting.
Example: List<String> list = new ArrayList<>();
Code to reverse a string using recursion
Create a recursive function that takes a string as input
Base case: if the string is empty or has only one character, return the string
Recursive case: return the last character of the string concatenated with the result of calling the function on the substring excluding the last character
Object comparison with specific fields involves comparing values of selected fields between two objects.
Object comparison can be done by comparing the values of specific fields in two objects.
Fields can be selected based on unique identifiers or criteria for comparison.
Example: Comparing the 'name' field of two person objects to check if they are the same.
Distributed transactions in microservices involve using compensating transactions and event-driven architecture.
Microservices typically use compensating transactions to maintain consistency across multiple services.
Event-driven architecture can help in coordinating distributed transactions by using events to trigger actions in different services.
Implementing distributed transactions in microservices requires careful de...
Aggregator pattern is used in microservices architecture to combine multiple service responses into a single response.
Aggregator pattern helps in reducing the number of client requests by combining multiple service responses.
It can be implemented using a separate service or within an existing service.
Example: A shopping website aggregating product information from different microservices like inventory, pricing, and re
Factory design pattern is a creational pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.
Factory method pattern defines an interface for creating objects, but lets subclasses decide which class to instantiate.
It promotes loose coupling by eliminating the need to bind application-specific classes into the code.
Example: A car m...
Indexing in a database is a technique to improve the speed of data retrieval by creating a data structure that allows for quick lookup.
Indexing involves creating a separate data structure that contains pointers to the actual data in the database.
Common data structures used for indexing include B-trees, hash tables, and binary search trees.
Indexes can be created on one or multiple columns in a database table to speed up...
My approach involves using load balancing, caching, asynchronous processing, and horizontal scaling.
Implement load balancing to distribute requests evenly across multiple servers.
Utilize caching mechanisms to store frequently accessed data and reduce response times.
Use asynchronous processing for long-running tasks to free up resources for handling more requests.
Implement horizontal scaling by adding more servers to ha...
CQRS pattern in microservices separates read and write operations for improved scalability and performance.
CQRS stands for Command Query Responsibility Segregation
It separates the read and write operations into two different models
Write operations update the data store, while read operations query a separate data store
CQRS can improve performance and scalability by allowing each model to be optimized for its specific t
API Gateway acts as a single entry point for all client requests in a microservices architecture.
API Gateway handles authentication, authorization, rate limiting, and routing of requests to appropriate microservices.
It helps in decoupling client applications from individual microservices, providing a more flexible and scalable architecture.
API Gateway can also perform tasks like request/response transformation, logging...
SQL query to fetch data from two tables using joins
Use the JOIN keyword to combine rows from two tables based on a related column
Specify the columns to select from each table in the SELECT statement
Use the ON keyword to specify the join condition
I applied via LinkedIn and was interviewed in Dec 2024. There were 3 interview rounds.
1.Sum numbers in linked list
2. Maximum sum subarray
Implement a hashmap data structure in code.
Use an array to store key-value pairs
Implement a hash function to map keys to indices in the array
Handle collisions using techniques like chaining or open addressing
Design a platform similar to LinkedIn for professional networking.
Create user profiles with work experience, education, skills, and endorsements.
Allow users to connect with others, join groups, and follow companies.
Include features like job postings, messaging, news feed, and recommendations.
Implement algorithms for personalized content and job suggestions.
Ensure data privacy and security measures are in place.
I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.
posted on 31 Jan 2025
I was interviewed in Dec 2024.
The assessment consisted of an online round lasting one hour, during which there were 33 questions, all of which were challenging, including the multiple-choice questions. The questions were divided into six subsections: 1. Data Structures and Algorithms (DSA) - with a problem related to dynamic programming or recursion; 2. Java; 3. Java 8; 4. Spring; 5. Spring Boot; 6. Microservices.
I was interviewed in Sep 2024.
2 coding questions asked meeting rooms ds algo
It was a DSA round .
Find the intersection point of two linked lists.
Use two pointers to traverse the linked lists
Calculate the difference in length between the two lists
Move the pointer of the longer list ahead by the difference
Move both pointers simultaneously until they meet at the intersection point
I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.
Online Coding Round Easy and Medium questions
I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.
There was a aptitude test with coding problems
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Team Lead
400
salaries
| ₹1.4 L/yr - ₹4.5 L/yr |
Sales Executive
389
salaries
| ₹0.5 L/yr - ₹4.1 L/yr |
Department Manager
305
salaries
| ₹2.8 L/yr - ₹5.8 L/yr |
Store Manager
266
salaries
| ₹3.4 L/yr - ₹12 L/yr |
Sales Associate
239
salaries
| ₹1 L/yr - ₹3.7 L/yr |
Croma
Vijay Sales
Sangeetha Mobile
Poorvika Mobiles