Upload Button Icon Add office photos

Filter interviews by

Convergent Science Software Engineer2 Interview Questions and Answers

Updated 5 Mar 2022

Convergent Science Software Engineer2 Interview Experiences

1 interview found

Software Engineer2 Interview Questions & Answers

user image Prashant Kumar

posted on 5 Mar 2022

I applied via Company Website and was interviewed before Mar 2021. There were 3 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 - One-on-one 

(1 Question)

  • Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determ...
  • Ans. 

    Answering technical questions for Software Engineer 2 position

    • To determine if a point is inside or outside a 2-manifold, use the ray casting algorithm

    • To merge closeby points, use clustering algorithms like k-means or DBSCAN

    • To determine if the normals of two triangles are wrongly oriented, use the cross product of their edges

    • Favorite research paper and why

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. How does a DFS work?
  • Ans. 

    DFS is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • DFS stands for Depth First Search.

    • It starts at the root node and explores as far as possible along each branch before backtracking.

    • It uses a stack to keep track of the visited nodes.

    • It can be implemented recursively or iteratively.

    • It is used in finding connected components, topological sorting, and solving puzzles

  • Answered by AI
  • Q2. How to find if an array has duplicates, in linear time?
  • Ans. 

    To find duplicates in an array of strings in linear time

    • Create a hash table to store the frequency of each string

    • Iterate through the array and check if the frequency of any string is greater than 1

    • If yes, then it is a duplicate

    • Return true if duplicates are found, else false

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep on fighting without getting tired.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Talent500 and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between SQL and NoSQL databases?
  • Q2. What are the methods for enabling communication between microservices?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions based on profit and loss

Round 2 - Coding Test 

Coding test based on c language and python programming

Round 3 - Assignment 

Communication assignment based on English

Round 4 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. Difine real time operation system
  • Ans. 

    Real-time operating systems are designed to provide guaranteed response times for critical tasks.

    • Real-time operating systems prioritize tasks based on their urgency and importance.

    • They are commonly used in industries such as aerospace, automotive, and industrial automation.

    • Examples include VxWorks, QNX, and FreeRTOS.

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Project work questions

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Daemon thread in java
  • Ans. 

    Daemon thread is a low priority thread that runs in the background and does not prevent the JVM from exiting.

    • Daemon threads are used for tasks that do not require user interaction or continuous execution.

    • They are automatically terminated when all non-daemon threads have finished.

    • Set a thread as daemon using setDaemon(true) method before starting it.

    • Example: Thread t = new Thread(); t.setDaemon(true); t.start();

  • Answered by AI

Skills evaluated in this interview

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

Hackerrank was used for test

Round 2 - Technical 

(2 Questions)

  • Q1. Implement BFS to find the nearest neighbour
  • Ans. 

    Implement BFS algorithm to find the nearest neighbour

    • Create a queue to store nodes to be visited

    • Start with the initial node and add it to the queue

    • While the queue is not empty, dequeue a node, visit its neighbours, and add them to the queue

    • Repeat until the nearest neighbour is found

  • Answered by AI
  • Q2. Implement Priority queue using heap.
  • Ans. 

    Priority queue can be implemented using a heap data structure.

    • Create a min heap or max heap based on the priority order needed.

    • Insert elements into the heap based on their priority level.

    • Remove elements from the heap based on their priority level.

    • Heapify the heap after each insertion or deletion operation.

    • Example: Implementing a min heap for a priority queue where lower values have higher priority.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java Basics Technical Questions
  • Q2. In depth knowledge OOPS concepts and basic practice skills of SQL operations
  • Q3. In depth practice of String Manipulations using looping and conditional statements
  • Ans. 

    String manipulation using loops and conditionals for software engineering

    • Use loops to iterate through each character in the string

    • Use conditional statements to check for specific conditions and manipulate the string accordingly

    • Examples: reversing a string, counting occurrences of a specific character, removing whitespace

  • Answered by AI
  • Q4. In depth knowledge of J2ee concepts with any ORM / MVC framework skills
Round 2 - Technical 

(1 Question)

  • Q1. Java Basics Technical Questions

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 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 - Case Study 

They just asked about my previous experience and questions from my resume

Round 3 - Technical 

(1 Question)

  • Q1. Bsod , how to handle angry customer ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident.
They will just your potential.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

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

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1 : Assignment round- was given a problem statement and app design and was asked to make that app.
  • Q2. 2: Code Discussion round based on the app that I made
  • Q3. 3: Technical 1 questions on basic DSA and deep tech stack based questions on Android everything that you can cover basically for android
  • Q4. 4: Technical 2 questions were high level based on Clean architecture , SOLID principles, Dependency Injection
  • Q5. 5: Managerial round : 30% tech rest was behaviour part and previous organization experiences
  • Q6. Last was salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grip on the tech stack for which you are applying and brush up on DSA concepts and problem solving not very intensive just that you can come up with an approach.

Convergent Science Interview FAQs

How many rounds are there in Convergent Science Software Engineer2 interview?
Convergent Science interview process usually has 3 rounds. The most common rounds in the Convergent Science interview process are One-on-one Round and Resume Shortlist.
What are the top questions asked in Convergent Science Software Engineer2 interview?

Some of the top questions asked at the Convergent Science Software Engineer2 interview -

  1. - Given a water -tight orientable 2-manifold, how to find if a point is inside ...read more
  2. How to find if an array has duplicates, in linear ti...read more
  3. How does a DFS wo...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Convergent Science interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Convergent Science Software Engineer2 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Research Engineer
4 salaries
unlock blur

₹12 L/yr - ₹15 L/yr

Cadd Designer
3 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Cfd Application Engineer
3 salaries
unlock blur

₹9 L/yr - ₹12 L/yr

Explore more salaries
Compare Convergent Science 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