Filter interviews by
Java is a high-level programming language known for its platform independence and object-oriented features.
Java is a class-based, object-oriented programming language.
It is designed to have as few implementation dependencies as possible.
Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM).
Inheritance is a mechanism in which a new class inherits properties and behaviors from an existing class.
Allows for code reusability
Establishes a parent-child relationship between classes
Derived class can access non-private members of the base class
Example: Class Car extends Vehicle
There are four main types of OOP concepts: Inheritance, Encapsulation, Polymorphism, and Abstraction.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation restricts access to certain components within a class.
Polymorphism allows objects to be treated as instances of their parent class.
Abstraction hides the implementation details and only shows the necessary features.
Spring MVC flow is the process of handling web requests in a Spring MVC application.
Client sends a request to the DispatcherServlet
DispatcherServlet sends the request to the appropriate Controller
Controller processes the request and returns a ModelAndView object
DispatcherServlet selects the view and renders the response
Client receives the response
Spring MVC is a framework for building web applications in Java.
Spring MVC stands for Model-View-Controller, providing a way to structure web applications.
It uses annotations to define controllers, request mappings, and other components.
Spring MVC supports RESTful web services and integrates with other Spring frameworks like Spring Boot.
It allows for easy testing of web applications using mock objects and dependen...
Spring Boot annotations are used to simplify the configuration and development of Spring applications.
Annotations like @SpringBootApplication, @RestController, @Autowired, @ComponentScan are commonly used in Spring Boot applications.
These annotations help in auto-configuration, dependency injection, and component scanning.
For example, @SpringBootApplication is used to mark the main class of a Spring Boot applicati...
I applied via Company Website and was interviewed in May 2023. There were 2 interview rounds.
Spring MVC is a framework for building web applications in Java.
Spring MVC stands for Model-View-Controller, providing a way to structure web applications.
It uses annotations to define controllers, request mappings, and other components.
Spring MVC supports RESTful web services and integrates with other Spring frameworks like Spring Boot.
It allows for easy testing of web applications using mock objects and dependency in...
Spring Boot annotations are used to simplify the configuration and development of Spring applications.
Annotations like @SpringBootApplication, @RestController, @Autowired, @ComponentScan are commonly used in Spring Boot applications.
These annotations help in auto-configuration, dependency injection, and component scanning.
For example, @SpringBootApplication is used to mark the main class of a Spring Boot application.
Si...
Spring MVC flow is the process of handling web requests in a Spring MVC application.
Client sends a request to the DispatcherServlet
DispatcherServlet sends the request to the appropriate Controller
Controller processes the request and returns a ModelAndView object
DispatcherServlet selects the view and renders the response
Client receives the response
Java is a high-level programming language known for its platform independence and object-oriented features.
Java is a class-based, object-oriented programming language.
It is designed to have as few implementation dependencies as possible.
Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM).
There are four main types of OOP concepts: Inheritance, Encapsulation, Polymorphism, and Abstraction.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation restricts access to certain components within a class.
Polymorphism allows objects to be treated as instances of their parent class.
Abstraction hides the implementation details and only shows the necessary features.
Inheritance is a mechanism in which a new class inherits properties and behaviors from an existing class.
Allows for code reusability
Establishes a parent-child relationship between classes
Derived class can access non-private members of the base class
Example: Class Car extends Vehicle
Top trending discussions
posted on 19 Sep 2021
I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.
posted on 1 Sep 2021
posted on 21 Aug 2021
I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.
I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.
DSA based round. Taken by external company. I would say to medium level questions asked.
SQL is preferred for structured data, transactions, complex queries, and ACID compliance.
SQL is better for structured data and relationships between data.
SQL is preferred for transactions and ensuring data integrity.
SQL is more suitable for complex queries involving multiple tables.
SQL databases provide ACID compliance for data consistency and reliability.
Worked on a project with a Tech Lead to develop a new feature for a web application.
Collaborated closely with the Tech Lead to define project requirements and timelines
Received guidance and mentorship from the Tech Lead on best practices and coding standards
Participated in regular code reviews and discussions with the Tech Lead to ensure quality and consistency
Implemented feedback and suggestions provided by the Tech L...
posted on 19 Jun 2025
I appeared for an interview in May 2025, where I was asked the following questions.
I thrive in dynamic environments and enjoy the challenge of working six days a week to achieve sales goals and build relationships.
I find fulfillment in engaging with clients and helping them find solutions, which motivates me to work longer hours.
Working six days a week allows me to build stronger relationships with clients, leading to increased trust and sales.
I appreciate the opportunity to learn and grow in my role...
I prioritize my time effectively, ensuring I have a balance between work and personal life each day.
I typically allocate about an hour for myself after work to unwind and recharge.
During this time, I enjoy reading a book or going for a walk to clear my mind.
I also use this time to connect with family and friends, which helps me maintain a healthy work-life balance.
On weekends, I dedicate more time to hobbies like paint...
posted on 20 Jun 2025
I appeared for an interview in May 2025, where I was asked the following questions.
In five years, I envision myself as a top-performing sales leader, driving strategic initiatives and mentoring new talent.
I aim to lead a sales team, leveraging my experience to drive revenue growth and exceed targets.
I plan to develop strong relationships with key clients, ensuring their needs are met and fostering long-term partnerships.
I aspire to enhance my skills through continuous learning, possibly earning certi...
My goals align with this organization's vision, focusing on growth, innovation, and customer satisfaction in sales.
I aim to achieve a sales target of 20% growth in my first year, similar to my previous role where I exceeded targets by 15%.
I am passionate about building long-term relationships with clients, as demonstrated by my success in retaining 90% of my accounts in my last position.
I chose this organization becaus...
The IT industry offers innovation, growth, and the chance to impact lives through technology, making it an exciting career choice.
Rapid growth: The IT sector is one of the fastest-growing industries globally, providing numerous job opportunities.
Innovation: Working in IT allows me to be at the forefront of technological advancements, such as AI and cloud computing.
Impact: Technology has the power to improve lives, from...
posted on 18 Jul 2024
I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.
DSA MCQ in online platform
Basic closings like lists/array/string
posted on 26 Jul 2024
I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.
Online MCQs - 15 Questions (Aps, DSA, Output Prediction)
1 Question (with 3 Enhancement)
Remove middle element from a stack with odd length
Find the middle index of the stack by dividing the length by 2
Remove the element at the middle index
Adjust the stack by shifting elements if necessary
posted on 17 Sep 2024
Data structure and aptitude
10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity
Reverse a string without using built-in functions or for loops
Use recursion to reverse the string
Pass the substring excluding the first character to the recursive function
Base case: return the character itself if the length of the string is 1
Concatenate the last character of the string with the result of the recursive call
I am a passionate software developer with experience in Java, Python, and web development.
Experienced in Java and Python programming languages
Skilled in web development technologies like HTML, CSS, and JavaScript
Worked on projects involving database management with SQL
Yes, I am okay with agreement.
I am comfortable with signing agreements related to software development projects.
I understand the importance of agreements in protecting both parties involved in a project.
I am willing to review and negotiate agreements to ensure they are fair and reasonable.
based on 2 interview experiences
Difficulty level
Duration
based on 36 reviews
Rating in categories
Java Developer
5
salaries
| ₹1.5 L/yr - ₹4 L/yr |
Software Engineer
4
salaries
| ₹2.4 L/yr - ₹4.5 L/yr |
HR Executive
4
salaries
| ₹2 L/yr - ₹3.6 L/yr |
Android Developer
4
salaries
| ₹1.8 L/yr - ₹16 L/yr |
Desktop Support Engineer
3
salaries
| ₹1.1 L/yr - ₹2.2 L/yr |
Global Edge Software
Moveinsync Technology Solutions
PagarBook
Trawex Technologies