Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Divum Corporate Services Software Engineer Interview Questions and Answers

Updated 18 Jan 2024

Divum Corporate Services Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Loganathan T

posted on 18 Jan 2024

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

The aptitude round was held for around 1 hr, almost covered all the aptitude topics like mathematics, percentage, relation, logical thinking, etc.

Round 2 - Coding Test 

The duration was around 2 hrs, they have asked 3 problems to be solved and I have solved all the problems in C programming language. This round doesn't held on any platform. It's a written test of coding.

Round 3 - Coding Test 

The duration was around 90 mins. We have been asked to solve 2-3 problems in Hackerrank. I had solved all problems partially, but still I was able to attend the final round. You can code in any language you want.

Round 4 - Technical 

(4 Questions)

  • Q1. They asked me to explain the code that I have written duriing the round two and the concept of linked list and write code for the linked list.
  • Q2. What is linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, where each node contains data and a reference to the next node.

    • Linked list is a dynamic data structure, unlike arrays which are static.

    • Nodes in a linked list are connected through pointers or references.

    • Linked lists can be singly linked (each node has a reference to the next node) or doubly linked (each node has references to both the next and prev...

  • Answered by AI
  • Q3. Logic of linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, where each node contains a value and a reference to the next node.

    • Each node in a linked list contains a value and a reference to the next node.

    • Linked lists can be singly linked (each node has a reference to the next node) or doubly linked (each node has references to both the next and previous nodes).

    • Linked lists are dynamic data structures, allowi...

  • Answered by AI
  • Q4. Algorithms of Artificial Intelligence.
  • Ans. 

    Algorithms of Artificial Intelligence involve techniques used to solve complex problems and make intelligent decisions.

    • AI algorithms include search algorithms, machine learning algorithms, and optimization algorithms.

    • Search algorithms like depth-first search and breadth-first search are used to find optimal solutions.

    • Machine learning algorithms like decision trees and neural networks are used to learn patterns and make...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. In HR round , they asked me about self intro. I made my self intro. After that , they asked me to tell about me which I haven't mentioned in my resume, so I had explained about my projects. After explainin...

Interview Preparation Tips

Interview preparation tips for other job seekers - I suggest the job seekers to do some projects related to their core field with some innovative idea.

Skills evaluated in this interview

Interview questions from similar companies

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 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 - 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
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 in Jan 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Quick introduction, followed by previous work experience.
  • Q2. SQL joins, constraints, aggregate functions, analytic functions, stored procedures and functions, cursors, triggers, views, indexes, common table expression, temporary tables, materialized views.
  • Q3. Python datatypes, functions, simple programs to code, methods, exception handling.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and composed. Be confident in answering all questions. If you fail to answer some question, find out its answer later. Explain things clearly.

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

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 126 minutes
Round difficulty - Hard

This round consist of coding questions as well as mcqs based on aptitude as well as some domain sections. This round is hard.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum path in a matrix from top row to bottom row by moving down or diagonally.

    • Use dynamic programming to keep track of maximum sum at each cell.

    • At each cell, consider the maximum sum from the cell above, left diagonal, and right diagonal.

    • Add the current cell value to the maximum of the three possibilities.

    • Repeat this process for all cells in the matrix to find the maximum sum path.

  • Answered by AI
  • Q2. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix to find elements with value 1

    • Store the row and column indices of these elements

    • Update the entire row and column for each element found to be 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In this round the interviewer ask few questions related to domain and at last he ask some behavioral questions.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of the lists by adjusting the pointers

    • Traverse both lists simultaneously until a common node is found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in DelhiEligibility criteriaNo criteriaQuess Corp interview preparation:Topics to prepare for the interview - Data structures knowledge, OOPs, Pointers, Dynamic programming and Recursion, Graphs, Hashmaps and Priority Queues, Operating system, DBMS, Networking, Arrays, Strings, Stacks, Trees, Pointers, OS Kernel, Deadlock, Virtual Memory, Memory Management, Paging, Segmentation, Puzzles and aptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be calm and have confidence . Confidence is the key to crack any interview. 
Tip 2 : Try to give maximum time on basics of a topic 
Tip 3 : Practice interview questions
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Put only those skills in resume which the company requires, but don't put false information in resume
Tip 2 : Write only those things in resume in which you are 100% confident
Tip 3 : Have projects in resume and prepare well for it
Tip 4 : Keep it short and crisp.
Tip 5 : Focus on important things in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain collection framework and uses
  • Ans. 

    Collection framework is a set of interfaces and classes in Java that provide a way to store and manipulate groups of objects.

    • Provides interfaces like List, Set, Map for storing collections of objects

    • Includes classes like ArrayList, HashSet, HashMap for implementing these interfaces

    • Allows for easy manipulation, sorting, searching, and iteration of collections

    • Used in various applications like data processing, data storag

  • Answered by AI
  • Q2. Explain springboot and it's annotation
  • Ans. 

    Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating Spring applications by providing defaults for configuration and eliminating the need for XML configuration files.

    • Annotations in Spring Boot are used to simplify the configuration of Spring applications by providing metadata about the application.

    • Examples of annota...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. What are the responsibilities of a Data Analyst?
  • Ans. 

    Data Analysts are responsible for collecting, processing, and analyzing data to help organizations make informed decisions.

    • Collecting and organizing data from various sources

    • Cleaning and processing data to ensure accuracy and consistency

    • Analyzing data using statistical techniques and tools

    • Creating visualizations and reports to present findings

    • Interpreting data to provide insights and recommendations

    • Collaborating with s...

  • Answered by AI
  • Q2. Software engineer
Contribute & help others!
anonymous
You can choose to be anonymous

Divum Corporate Services Interview FAQs

How many rounds are there in Divum Corporate Services Software Engineer interview?
Divum Corporate Services interview process usually has 5 rounds. The most common rounds in the Divum Corporate Services interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Divum Corporate Services 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 Divum Corporate Services. The most common topics and skills that interviewers at Divum Corporate Services expect are CSS3, Data migration, Database Administration, Disaster Recovery and Javascript.
What are the top questions asked in Divum Corporate Services Software Engineer interview?

Some of the top questions asked at the Divum Corporate Services Software Engineer interview -

  1. Algorithms of Artificial Intelligen...read more
  2. what is linked l...read more
  3. Logic of linked l...read more

Recently Viewed

INTERVIEWS

Matrix Business Services

No Interviews

INTERVIEWS

Divum Corporate Services

No Interviews

INTERVIEWS

HYUNDAI TRANSYS INDIA

No Interviews

INTERVIEWS

Textronics Design Systems

No Interviews

INTERVIEWS

Visible Alpha Solutions

No Interviews

SALARIES

Divum Corporate Services

LIST OF COMPANIES

Divum Corporate Services

Locations

INTERVIEWS

Visible Alpha Solutions

No Interviews

INTERVIEWS

Hexaware Technologies

No Interviews

INTERVIEWS

RDC Concrete (India)

No Interviews

Tell us how to improve this page.

Divum Corporate Services Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Application Developer
75 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Backend Developer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android App Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Divum Corporate Services with

Quess

3.9
Compare

Team Lease

3.9
Compare

Iksula

3.5
Compare

Randstad

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