Upload Button Icon Add office photos
Engaged Employer

i

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

SirionLabs Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 284 Reviews

Filter interviews by

SirionLabs Software Engineer Interview Questions and Answers

Updated 23 May 2021

SirionLabs Software Engineer Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1 round of hacker rank online test + 2 rounds of technical + 1 managerial round.
  • Q2. Round 1 Q1: Reverse the Linked List
  • Q3. Round 1 Q2: Related to array simply sorting type problems
  • Q4. Level order traversal of tree
  • Ans. 

    Level order traversal of tree is a breadth-first search algorithm to visit all nodes in a tree level by level.

    • Use a queue to keep track of nodes to be visited

    • Enqueue the root node and loop until the queue is empty

    • Dequeue a node, visit it, and enqueue its children

    • Repeat until all nodes have been visited

  • Answered by AI
  • Q5. Round 2 Q1 : Simple design related questions how will you insert bulk data in db, expecting both maintaining consistency as well as without maintaining consistency.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a easy to medium level interview try to do well in technical round 1 and next will be easier.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Move negative elements to right side of array
  • Ans. 

    Move negative elements to right side of array

    • Iterate through the array and swap negative elements to the right side

    • Use two pointers approach to keep track of positive and negative elements

    • Maintain the order of elements while moving negatives to the right side

  • Answered by AI

Skills evaluated in this interview

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

Basic string manipulation and general DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tree traversal iteratively
  • Q2. Implement DFS,BFS on graph
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

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. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic React questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project explanation
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself?

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. Rectangle Area

    You are given a list of rectangles where each rectangle is represented by an array of four integers (i.e. Rectangle[i]=[x1, y1, x2, y2], where x1, y1 represents the bottom left point of the ...

  • Ans.  Coordinate Compression
    • As we can have only 200 distinct rectangles with us so we don’t need to worry about point constraint, we can use the coordinate compression technique to map these points all The x-axis points and y-axis points as well.
    • Now these mapped coordinates can be used to form our grid. we can make a grid grid[x][y] = True for rx1 <= x < rx2 and ry1 <= y < ry2. Where rx1 , rx2, ry1, ry2 correspo...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. Bit Set

    You are given a sequence of only digits in the form of a string 'DIGIT_PATTERN', your task is to find the first repeating digit. If no digit is repeating you should return -1.

    Example:

    G...
  • Ans. Brute Force

    The basic idea of the approach is that we iterate for each index ‘i’ digit in the string ‘DIGIT_PATTERN’, and store the occurrence of that digit in the array/list ‘store’. At any index ‘i’, if the occurrence of the digit is already 1 in the array/list ‘store’, then we would return that digit Or else if the digit has occurred for the first time in the iteration then make the value 1 at index ‘digit’ in the ar...

  • Answered by CodingNinjas
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. Print Permutations

    Given an input string (STR), print all possible permutations of the input string.

    Note:
    The input string may contain the same characters, so there will also be the same permutations.
    T...
  • Ans. 

    Recursively solved 1stl one
    Then applied set data structure to solve second one

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Aug 2022. 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 - HR 

(2 Questions)

  • Q1. Describe a time when y ou had to learn a new kill to complete a project
  • Q2. Tell me about your resume
Round 3 - Coding Test 

Reverse a given string using for loop

Interview Preparation Tips

Topics to prepare for Bentley Systems Software Engineer interview:
  • Data Structures
  • Algorithms
  • Coding
Interview preparation tips for other job seekers - Master Data Structures and Algorithms and be prepared to talk your experience written in your resume

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Worst interview process.
  • Q2. Don't go for interview
  • Q3. Worst organization
  • Ans. 

    Worst organization

    • Lack of communication and transparency

    • Inefficient management and decision-making

    • Toxic work culture and lack of employee support

    • Poorly defined goals and objectives

    • Lack of career growth opportunities

  • Answered by AI
  • Q4. I got offer from Oracle and this company also. But due drama I rejected offer this company
  • Q5. Politics in interview
  • Q6. They don't know how to take interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to don't go for interview.

SirionLabs Interview FAQs

How to prepare for SirionLabs Software Engineer 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 SirionLabs. The most common topics and skills that interviewers at SirionLabs expect are AWS, Algorithms, DBMS, Data Structures and Design Patterns.
What are the top questions asked in SirionLabs Software Engineer interview?

Some of the top questions asked at the SirionLabs Software Engineer interview -

  1. Level order traversal of t...read more
  2. Round 2 Q1 : Simple design related questions how will you insert bulk data in ...read more
  3. 1 round of hacker rank online test + 2 rounds of technical + 1 managerial rou...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 SirionLabs interview
Recruitment Consultant
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
SirionLabs Software Engineer Salary
based on 75 salaries
₹8 L/yr - ₹26.6 L/yr
110% more than the average Software Engineer Salary in India
View more details

SirionLabs Software Engineer Reviews and Ratings

based on 10 reviews

3.8/5

Rating in categories

3.8

Skill development

3.6

Work-Life balance

3.9

Salary & Benefits

3.9

Job Security

3.6

Company culture

3.9

Promotions/Appraisal

3.5

Work Satisfaction

Explore 10 Reviews and Ratings
Analyst
117 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Analyst
112 salaries
unlock blur

₹5.9 L/yr - ₹12.5 L/yr

Software Engineer
75 salaries
unlock blur

₹8 L/yr - ₹26.6 L/yr

Associate
72 salaries
unlock blur

₹3.4 L/yr - ₹6 L/yr

Assistant Manager
59 salaries
unlock blur

₹6 L/yr - ₹21.5 L/yr

Explore more salaries
Compare SirionLabs with

Icertis

3.6
Compare

Zycus Infotech

3.0
Compare

SAP Ariba

4.3
Compare

Coupa Software Inc

3.9
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