Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Soliton Technologies Team. If you also belong to the team, you can get access from here

Soliton Technologies Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 40 Reviews

Filter interviews by

Soliton Technologies Software Developer Interview Questions and Answers

Updated 23 Jul 2024

Soliton Technologies Software Developer Interview Experiences

8 interviews found

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Connected sum hacker rank problem
  • Ans. 

    Connected sum problem involves finding the number of connected components in a graph

    • The problem can be solved using DFS or BFS algorithm

    • The input graph can be represented using adjacency list or matrix

    • The output is the number of connected components in the graph

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always should be logical

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Amrita School of Engineering, Bangalore and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical resoning, physics, mathematics

Round 2 - Coding Test 

C-programming, networks, oops, java

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

Software Developer Interview Questions & Answers

user image 47 SIRANJITH R

posted on 10 Jul 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Coimbatore Institute of Technology, Coimbatore and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Aptitude, Math and physics questions where asked

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Aptitude Test 

This round included 5 aptitude questions, around 10 to 20 physics questions and 5 programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - learn your 11th and 12th physics for round 1, since formulae will be provided, application knowledge is necessary

Soliton Technologies interview questions for designations

 Developer

 (1)

 Software Engineer

 (3)

 Software Trainee

 (1)

 Front end Developer

 (1)

 Softwaretest Engineer

 (1)

 Senior Test Analyst

 (1)

 Senior Project Engineer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Totally 7 rounds but our college conducted extra round which is an priliminary round based on general physics, c mcqs, gates, basic circuit theory

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Dr Mahalingam College of Engineering & Technology, Coimbatore and was interviewed in Apr 2023. There were 4 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 - Aptitude Test 

Good knowledge in physics and maths

Round 3 - Coding Test 

3 coding round good knowledge in c Programming language

Round 4 - Technical 

(1 Question)

  • Q1. Technical questions asked and explain the logic used in second round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic maths , physics, predict the output

Round 2 - Coding Test 

C programming very basic print reverse prime numbers and all those

Round 3 - Technical 

(1 Question)

  • Q1. Questions from fav subject

Software Developer Interview Questions & Answers

user image SUBHASHINI SV

posted on 19 Feb 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 1 Hour
Topics Physics mcq

Round 2 - Coding Test 

Duration 1 hour
Topics Array ,String Only in C language

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare 11th and 12th Physics formulas for round 1
For Round 2,Prepare basic array string problems

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is oops concept example with each one
  • Ans. 

    Object-oriented programming concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class). Example: class Car with properties like make, model, and methods like start(), stop().

    • Inheritance: creating new classes based on existing classes, inheriting their attributes and methods. Example: class SUV inheriting from cl...

  • Answered by AI
  • Q2. What is data structures and types with examples of all types
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Types of data structures include arrays, linked lists, stacks, queues, trees, graphs, and hash tables.

    • Arrays are a collection of elements stored in contiguous memory locations, accessed using an index.

    • Linked lists are a series of nodes where each node contains data and a reference to the next node.

    • Stack...

  • Answered by AI
  • Q3. What is class and objects with example and code
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming. Objects are instances of classes.

    • A class defines the properties and behaviors of objects. For example, a 'Car' class may have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

    • An object is an instance of a class. For example, 'myCar' can be an object of the 'Car' class with specific values for 'color' and 'model'.

    • Code e...

  • Answered by AI
  • Q4. What is virutal function and staic functions
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes, while static functions belong to the class itself rather than instances.

    • Virtual functions allow for dynamic binding and polymorphism in object-oriented programming.

    • Static functions are associated with the class itself and can be called without creating an instance of the class.

    • Example: virtual void display() = 0; // pure virtual fun...

  • Answered by AI
  • Q5. What is project u did in present company
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used AngularJS for front-end development

    • Implemented RESTful APIs for communication between front-end and back-end

    • Utilized MySQL database for storing project data

  • Answered by AI
Round 2 - Coding Test 

Write a function over loading and friend class with example?

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Get your basic coding skills right
  • Q2. Snippets for all concepts

Soliton Technologies Interview FAQs

How many rounds are there in Soliton Technologies Software Developer interview?
Soliton Technologies interview process usually has 2-3 rounds. The most common rounds in the Soliton Technologies interview process are Aptitude Test, Coding Test and Resume Shortlist.
How to prepare for Soliton Technologies Software 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 Soliton Technologies. The most common topics and skills that interviewers at Soliton Technologies expect are Angularjs, Communication Skills, Javascript, Node.Js and React.Js.
What are the top questions asked in Soliton Technologies Software Developer interview?

Some of the top questions asked at the Soliton Technologies Software Developer interview -

  1. Connected sum hacker rank prob...read more
  2. Technical questions asked and explain the logic used in second ro...read more
  3. questions from fav subj...read more
How long is the Soliton Technologies Software Developer interview process?

The duration of Soliton Technologies Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Soliton Technologies Software Developer Interview Process

based on 4 interviews in last 1 year

1 Interview rounds

  • Aptitude Test Round
View more

People are getting interviews through

based on 8 Soliton Technologies interviews
Campus Placement
Referral
75%
25%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Soliton Technologies Software Developer Salary
based on 4 salaries
₹7.6 L/yr - ₹9.1 L/yr
At par with the average Software Developer Salary in India
View more details

Soliton Technologies Software Developer Reviews and Ratings

based on 2 reviews

1.6/5

Rating in categories

1.6

Skill development

1.6

Work-Life balance

2.9

Salary & Benefits

2.3

Job Security

1.0

Company culture

2.3

Promotions/Appraisal

1.6

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Project Engineer
54 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Project Engineer
38 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Project Lead
18 salaries
unlock blur

₹9 L/yr - ₹18.5 L/yr

Software Engineer
17 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

System Administrator
7 salaries
unlock blur

₹1.6 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Soliton Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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