Upload Button Icon Add office photos

Filter interviews by

ERGOS Senior Software Engineer 2 Interview Questions and Answers

Updated 26 Apr 2024

ERGOS Senior Software Engineer 2 Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Coding questions
Round 2 - Behavioral 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - While the company may have positive aspects, there are some concerning practices that new joiners should be aware of:

***Formal Offer Letter***: It's crucial to ensure you have a formal offer letter in hand before committing to joining. Relying solely on a confirmation letter may lead to misunderstandings and complications.

***Delayed Joining and Unethical Practices***: Be cautious of the company's tendency to delay joining dates and potentially rescind offers if they find a candidate willing to accept a lower salary. This practice is unethical and can significantly impact a candidate's career plans and financial stability.

Recommendation: Based on my experience, I never suggest that you should not join this company. However, it's important to be cautious about the actions I've mentioned. The main concern is that no other candidate should face the issues I'm experiencing at this point. While it may have a positive reputation, the company's actions should prioritize the well-being and fair treatment of its employees from the beginning, rather than causing uncertainty and stress at the last moment.

Interview questions from similar companies

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

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Easy topic related to AI

Round 2 - HR 

(2 Questions)

  • Q1. Introduction , projects, puzzles
  • Q2. Guesstimates, and relocation question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Medium leetcode
Round 2 - Technical 

(1 Question)

  • Q1. Regarding experience
Round 3 - Behavioral 

(1 Question)

  • Q1. General behavioural question
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

1.5 hours, data structure and algorithms, Their own platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects thoroughly and read more about the Javascript.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Mangaer asked me to integrate an api

Round 2 - HR 

(1 Question)

  • Q1. Salary negotions was done on the second round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be simple
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. Basic resume based questions
  • Q2. Explain your internship experience
Round 3 - HR 

(1 Question)

  • Q1. Basic resume based questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Simple java questions including theory and code snippet

Round 2 - Technical 

(2 Questions)

  • Q1. Iterate collection and do some options on some perticular elements?
  • Q2. Palandrone string Or pattern program Or string related program?
Round 3 - Technical 

(2 Questions)

  • Q1. Linux commands operating system?
  • Ans. 

    Linux commands are used to interact with the operating system through the command line interface.

    • Linux commands are case-sensitive

    • Commands are typically followed by options and arguments

    • Common commands include ls (list files), cd (change directory), mkdir (make directory)

    • Commands can be combined using pipes (|) and redirection symbols (> and <)

  • Answered by AI
  • Q2. Html css javascript theory questions
Round 4 - HR 

(2 Questions)

  • Q1. Salary discuss and general questions?
  • Q2. They ask for join immediately?

Interview Preparation Tips

Interview preparation tips for other job seekers - Get touched which HR while interview rounds

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Database schema design
API Design
Python fundamentals

Round 2 - Case Study 

Performance and scalability discussion
Architecture and Distribute system implications

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the fundamentals well!

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

Interview Questionnaire 

4 Questions

  • Q1. Explain the difference b/w quick sort and merge sort ?
  • Ans. 

    Quick sort is a divide and conquer algorithm that sorts the array by selecting a pivot element and partitioning the other elements around it. Merge sort is also a divide and conquer algorithm that divides the array into two halves, sorts them separately and then merges them.

    • Quick sort has an average time complexity of O(n log n) while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is an in-place...

  • Answered by AI
  • Q2. System Design for Naukri.com platform
  • Ans. 

    System design for Naukri.com platform

    • Identify user requirements and design the system architecture accordingly

    • Use scalable and reliable technologies for high traffic handling

    • Implement features like job search, job posting, resume upload, etc.

    • Ensure data security and privacy of users

    • Integrate with third-party services like payment gateways, social media platforms, etc.

  • Answered by AI
  • Q3. ADD two numbers (Linked List ) / leetcode question
  • Q4. Highest subset sum subarray ?
  • Ans. 

    Highest sum of contiguous subarray in an array

    • Use Kadane's algorithm to find the maximum sum subarray

    • Initialize max_so_far and max_ending_here to 0

    • Loop through the array and update max_ending_here and max_so_far

    • Return max_so_far as the highest subset sum subarray

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 technical rounds . If you have clear concepts of Ds & Algo , it will do .Questions were mainly asked from DP, arrays and strings .Other than that some system design problems were also asked which includes the Design of Naukri.com.

Skills evaluated in this interview

ERGOS Interview FAQs

How many rounds are there in ERGOS Senior Software Engineer 2 interview?
ERGOS interview process usually has 2 rounds. The most common rounds in the ERGOS interview process are Behavioral and Technical.
What are the top questions asked in ERGOS Senior Software Engineer 2 interview?

Some of the top questions asked at the ERGOS Senior Software Engineer 2 interview -

  1. Coding questi...read more
  2. Technical discuss...read more

Tell us how to improve this page.

ERGOS Senior Software Engineer 2 Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 393 Interviews
Randstad Interview Questions
3.8
 • 258 Interviews
Team Lease Interview Questions
3.9
 • 198 Interviews
AmbitionBox Interview Questions
4.9
 • 146 Interviews
Adecco Group Interview Questions
3.7
 • 86 Interviews
Cogoport Interview Questions
2.8
 • 52 Interviews
ManpowerGroup Interview Questions
3.9
 • 49 Interviews
MyCaptain Interview Questions
3.2
 • 40 Interviews
Iksula Interview Questions
3.5
 • 27 Interviews
View all
Assistant Relationship Manager
39 salaries
unlock blur

₹1.7 L/yr - ₹4 L/yr

Assistant Manager
21 salaries
unlock blur

₹2.9 L/yr - ₹7 L/yr

Software Developer
19 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Executive Accountant
8 salaries
unlock blur

₹2.3 L/yr - ₹3.5 L/yr

Deputy Relationship Manager
8 salaries
unlock blur

₹3.8 L/yr - ₹4 L/yr

Explore more salaries
Compare ERGOS with

Quess

3.9
Compare

Team Lease

3.9
Compare

ManpowerGroup

3.9
Compare

Randstad

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview