Upload Button Icon Add office photos

Filter interviews by

Solveda Software Java Developer Interview Questions and Answers

Updated 15 Nov 2022

Solveda Software Java Developer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Core Java Interview questions 1. Overloading 2. Overriding 3. Collection Framework 4. Java8 features
  • Q2. SQL 1. Basic questions on joins, aggregate functions

Interview Preparation Tips

Topics to prepare for Solveda Software Java Developer interview:
  • java
  • Core Java
Interview preparation tips for other job seekers - > Prepare for basic questions in Java
> Previous project experience
> Accomplishments or project works

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apttitude and Basic of CPP

Round 2 - Technical 

(3 Questions)

  • Q1. String reverse program
  • Ans. 

    A program to reverse a string in Java.

    • Use StringBuilder class to reverse the string.

    • Convert the string to a StringBuilder object, call reverse() method, and convert back to string.

    • Example: String str = "hello"; StringBuilder sb = new StringBuilder(str); sb.reverse(); String reversed = sb.toString();

  • Answered by AI
  • Q2. Logical questions
  • Q3. Project Information

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Basic Oops Concept And SQL Queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company.and nice Interview Experience
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between springboot and spring
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool that simplifies the setup and configuration of Spring applications.

    • Spring is a comprehensive framework that provides support for various functionalities like dependency injection, aspect-oriented programming, and more.

    • Spring Boot is an opinionated tool that simplifies the setup and configuration of Spring applications by providing default...

  • Answered by AI
  • Q2. Explaing springboot annotation
  • Ans. 

    Spring Boot annotations are used to simplify the development process by providing shortcuts for common configurations and functionalities.

    • Annotations like @SpringBootApplication, @RestController, @Autowired, @ComponentScan are commonly used in Spring Boot applications.

    • Annotations help in reducing boilerplate code and configuring various aspects of the application.

    • For example, @SpringBootApplication is used to mark the ...

  • Answered by AI
  • Q3. How do you use JPA in your project write it
  • Ans. 

    I use JPA in my project by defining entity classes, annotating them with JPA annotations, creating repositories, and using JPQL queries.

    • Define entity classes with @Entity annotation

    • Annotate fields with @Column, @Id, @GeneratedValue, etc.

    • Create repositories by extending JpaRepository interface

    • Use JPQL queries for custom database operations

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How microservices communicate in your project
  • Ans. 

    Microservices communicate through REST APIs and messaging queues in our project.

    • Microservices communicate with each other using REST APIs for synchronous communication.

    • Messaging queues like Kafka or RabbitMQ are used for asynchronous communication between microservices.

    • Service discovery tools like Eureka or Consul are used to locate and communicate with other microservices.

    • Microservices may also use gRPC for communicat

  • Answered by AI
  • Q2. Which design pattern used in your last project
Round 3 - Behavioral 

(2 Questions)

  • Q1. Asked about all projects
  • Q2. Team size and agile methodology
Round 4 - HR 

(2 Questions)

  • Q1. Why are you leaving current organization
  • Q2. What do you know about Emtec
  • Ans. 

    Emtec is a global IT consultancy that provides technology solutions and services to help organizations drive digital transformation.

    • Provides IT consultancy services

    • Specializes in technology solutions

    • Helps organizations with digital transformation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waist time , just take interviews and won't release offer after clearing all round and HR discussion. Just HR discussed salary and tried to negotiate even though I was ready for attend the hybrid mode and negotiated salary and all things ,still offer not released and didn't hear back from HR

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Experience in domains
  • Q2. Previous companies
Round 2 - Technical 

(2 Questions)

  • Q1. SQL basic questions
  • Q2. .net and OOP basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

1 round is coding round in pan paper test atleast 5 coding questions and some multiple questions and 1 DSA questions and 4 coding questions correct and dsa correct than interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

String , Array ,Collection framework related questions.

Round 3 - Assignment 

Ecommerce site with Login,Review,AddToCart,Order features,Filter features.

Round 4 - Technical 

(1 Question)

  • Q1. Html,Css,Js. Interviewer don't have knowledge on Java,React js.And if you don't able to answer basic html,css related questions they will disqualify you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply.Totaly time waste.And even if you apply don't share project with them neither the Github link nor the the files via any medium.You are going to regret if you share the project.

Solveda Software Interview FAQs

How many rounds are there in Solveda Software Java Developer interview?
Solveda Software interview process usually has 2 rounds. The most common rounds in the Solveda Software interview process are Resume Shortlist and Technical.
How to prepare for Solveda Software Java Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Solveda Software. The most common topics and skills that interviewers at Solveda Software expect are J2Ee, Java, JSP, Spring Boot and Struts.
What are the top questions asked in Solveda Software Java Developer interview?

Some of the top questions asked at the Solveda Software Java Developer interview -

  1. Core Java Interview questions 1. Overloading 2. Overriding 3. Collection Frame...read more
  2. SQL 1. Basic questions on joins, aggregate functi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Solveda Software interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Solveda Software Java Developer Salary
based on 6 salaries
₹7 L/yr - ₹17.1 L/yr
92% more than the average Java Developer Salary in India
View more details
Software Developer
49 salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Senior Software Developer
15 salaries
unlock blur

₹8.5 L/yr - ₹25.5 L/yr

UI Developer
11 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

QA Engineer
9 salaries
unlock blur

₹3.3 L/yr - ₹14 L/yr

Technical Lead
8 salaries
unlock blur

₹20.2 L/yr - ₹30 L/yr

Explore more salaries
Compare Solveda Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview