Upload Button Icon Add office photos
Engaged Employer

i

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

Compunnel Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Compunnel Software Engineer Interview Questions, Process, and Tips

Updated 26 Jul 2021

Compunnel Software Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. DIFFERENCIATE BETWEEN BFS AND DFS?
  • Ans. 

    BFS and DFS are traversal algorithms used in graphs and trees.

    • BFS stands for Breadth First Search and explores the graph level by level.

    • DFS stands for Depth First Search and explores the graph by going as deep as possible before backtracking.

    • BFS uses a queue data structure while DFS uses a stack or recursion.

    • BFS is useful for finding the shortest path while DFS is useful for finding all possible paths or cycles.

    • BFS has...

  • Answered by AI
  • Q2. WHAT ARE JOINS IN SQL?
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables in a single query.

    • There are different types of joins such as INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • The columns used to join the tables must have the same data type and name.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.colu

  • Answered by AI
  • Q3. WRITE A QUERY TO GIVE SECOND LARGEST SALARY OF AN EMPLOYEE?
  • Ans. 

    Query to find second largest salary of an employee.

    • Use ORDER BY and LIMIT to sort and select the second highest salary.

    • Assuming table name as 'employees' and salary column name as 'salary'.

    • SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1;

  • Answered by AI
  • Q4. DIFFERENCIATE BETWEEN ABSTRACT CLASS AND INTERFACE?
  • Ans. 

    Abstract class can have implementation while interface cannot. A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have non-abstract methods while interface can only have abstract methods.

    • Abstract class can have instance variables while interface cannot.

    • A class implementing an interface must implement all i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - IT WAS SIMPLE AND THE COMPANY IS GOOD TO WORK WITH .

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Very basic qutions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain git module
  • Ans. 

    Git module is a software tool that allows for version control and collaboration on code projects.

    • Git module is a version control system used for tracking changes in code files.

    • It allows multiple developers to work on the same project simultaneously.

    • Git module helps in managing different versions of code and merging changes from different branches.

    • Common git commands include git clone, git add, git commit, git push, and...

  • Answered by AI

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of C programming language.
  • Q2. Basics of Data structure.

Interview Preparation Tips

Topics to prepare for Adecco Group Software Engineer interview:
  • C programming language
  • Data Structures
Interview preparation tips for other job seekers - As a fresher everyone needs to have basic knowledge of atleast one programming language, and they should have good communication skills to interact with the recruiter.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common first and last name

    • No middle name

  • Answered by AI
  • Q2. Tell me about 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

    • Experience in developing web applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Naukri.com and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is inheritance,what is abstraction?,basic oops.concepts,what challenges you faced in your last organization?

Interview Preparation Tips

Topics to prepare for Collabera Technologies Software Engineer interview:
  • Udemy
Interview preparation tips for other job seekers - Please be confident and you need fluency in English,and little bit technically sounds.you need atleast 2-3 years experience to get job in this level of company.
Interview experience
3
Average
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. C++ Basic Question OOPS Data structures
Round 3 - Technical 

(1 Question)

  • Q1. Copy Constructors Polymorphism About Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics first.
Basics should be clear.
Also Implement whatever you learn
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. PowerApps question
  • Q2. Name of client, what is
  • Ans. 

    The name of the client is the entity or organization that is receiving the software engineering services.

    • Client name is typically a company or individual who has requested the development of a software product.

    • It is important to maintain confidentiality and professionalism when discussing client names.

    • Examples of client names could be Google, Microsoft, Apple, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job based on project, If they have no project then no job.

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. React basic
  • Q2. Javascript ES6 features.
  • Q3. Redux work flow.
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Actions are dispatched to the store

    • Reducers update the state based on the action

    • Components subscribe to the store to get updated state

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Compunnel Interview FAQs

What are the top questions asked in Compunnel Software Engineer interview?

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

  1. WRITE A QUERY TO GIVE SECOND LARGEST SALARY OF AN EMPLOY...read more
  2. DIFFERENCIATE BETWEEN ABSTRACT CLASS AND INTERFA...read more
  3. WHAT ARE JOINS IN S...read more

Recently Viewed

REVIEWS

Dealermatix Technologies

No Reviews

INTERVIEWS

Compunnel

No Interviews

INTERVIEWS

Compunnel

No Interviews

INTERVIEWS

Chainsy

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Compunnel

No Interviews

INTERVIEWS

Compunnel

No Interviews

INTERVIEWS

Bharat Electronics

No Interviews

INTERVIEWS

KreditBee

No Interviews

INTERVIEWS

Yaantra

No Interviews

Tell us how to improve this page.

Compunnel Software Engineer Salary
based on 33 salaries
₹4 L/yr - ₹12 L/yr
14% less than the average Software Engineer Salary in India
View more details

Compunnel Software Engineer Reviews and Ratings

based on 7 reviews

2.6/5

Rating in categories

3.0

Skill development

2.5

Work-life balance

3.0

Salary

2.8

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 7 Reviews and Ratings
Senior Software Engineer
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

US Recruiter
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

US IT Recruiter
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Recruiter
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Compunnel with

Collabera Technologies

3.5
Compare

Allegis Group

3.7
Compare

Kelly Services

4.2
Compare

ManpowerGroup

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