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
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Q2. What is the difference between useMemo and useCallback in React?
  • Q3. What is the difference between class-based components and functional components in React?
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Q5. What are the various state management techniques available in React?
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Q7. What is hoisting in JavaScript?
  • Q8. What is event bubbling in JavaScript?
  • Q9. What are block scope and function scope in JavaScript?
  • Q10. Have you had experience working with semantic tags in HTML?
  • Q11. What are the various methods for creating an object in JavaScript?
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 10 interview rounds.

Round 1 - Aptitude Test 

Any ideas for an aptitude test?

Round 2 - Technical 

(2 Questions)

  • Q1. You have a good network connection.
  • Q2. Which individuals are currently employed?
Round 3 - Case Study 

What is education in place?

Round 4 - Coding Test 

What is a SQL Server?

Round 5 - Group Discussion 

Effective communication and any suggestion.

Round 6 - HR 

(2 Questions)

  • Q1. What is your name?
  • Q2. What is your educational background?
Round 7 - HR 

(2 Questions)

  • Q1. What type of work does the Deloitte company engage in?
  • Q2. What type of work does Deloitte engage in?
Round 8 - HR 

(2 Questions)

  • Q1. What is your father's name?
  • Q2. What is your father's name?
Round 9 - Assignment 

Engage with any assignment provided.

Round 10 - Assignment 

Please provide any assignments you have.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes I am interested in this job
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Difference between out and ref.
  • Q2. Sql query to find the 2nd last student marks
  • Q3. Second round was around project specific like why mongodb or posgreSQL? Project architecture and followup questions.
  • Q4. Create global exception handler.

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