Upload Button Icon Add office photos

Filter interviews by

Deevia Software India Interview Questions and Answers

Updated 19 Mar 2024

Deevia Software India Interview Experiences

Popular Designations

3 interviews found

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

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. LinkedIn list, bit clear set
Round 2 - Technical 

(1 Question)

  • Q1. Bit allocation , c program on bit clear

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

I applied via Naukri.com and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Arrays,functions,pointers,structures,unions,bitwise
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to project

Interview Preparation Tips

Topics to prepare for Deevia Software India Embedded Developer interview:
  • Embedded C
Interview preparation tips for other job seekers - Know the fundamentals of Embedded C.

Embedded Developer Interview Questions asked at other Companies

Q1. What is the difference betwe en nill pointer and void pointer
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Bit manipulation questions Question on the projects did during engineering
  • Q2. Basics of digital electronics for ece students

Interview Preparation Tips

Topics to prepare for Deevia Software India Associate Software Engineer interview:
  • Digital Electronics
  • Bit Manipulation
Interview preparation tips for other job seekers - Fundamentals should be good, overall they look for problem solving skills

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Jobs at Deevia Software India

View all

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was interview for AI role so most of the questions were about the same topics. The mathematics behind some models and they focused on my projects and research paper.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your projects and research papers in AI field is always an advantage.

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data scrapping,computer vision,agile methodologies,change request,testing methods
  • Ans. 

    Data scraping, computer vision, agile methodologies, change request, and testing methods are all important aspects of software engineering.

    • Data scraping involves extracting data from websites or other sources.

    • Computer vision involves using algorithms to interpret and analyze visual data.

    • Agile methodologies are a set of principles for software development that prioritize flexibility and collaboration.

    • Change requests are...

  • Answered by AI
  • Q2. Explain about project i worked in

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer was very friendly and i had good experience.2 technical rounds one client round and one HR round

Skills evaluated in this interview

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About aptitude , logical reasoning, vocabulary etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Though time is less , but can be answered with determined concentration.

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features - Stream API, Functional interface (Predicate, Binary Operators, Function), Permgen V/s Metaspace, Date and Time API
  • Q2. Spring boot annotations - @SpringBootApplication, @RestController, @GetMapping, @PostMapping, @Service, @Repository
  • Q3. Coding Question 1 - Find sum of squares of numbers in list using stream API.
  • Ans. 

    Find sum of squares of numbers in list using stream API.

    • Use mapToInt() to convert list of integers to IntStream

    • Use map() to square each element of IntStream

    • Use sum() to get the sum of squares

  • Answered by AI
  • Q4. Coding Question 2 - Searching in 2D sorted array row wise and column wise.
  • Ans. 

    Searching in 2D sorted array row wise and column wise.

    • Start from the top right corner or bottom left corner

    • Compare the target with the current element

    • Move left or down if target is smaller or move right or up if target is larger

    • Repeat until target is found or out of bounds

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and also do lots of hands on coding.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer had less knowledge on the current technologies and was more stereo type.

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Spiral Order Traversal of a Binary Tree Problem Statement

    Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.

    Example:

    Input:
    The binary tree is represented i...
  • Ans. 

    Print nodes of a binary tree in spiral order traversal.

    • Use a queue to perform level order traversal of the binary tree.

    • Alternate between printing nodes from left to right and right to left at each level.

    • Handle null nodes represented by '-1' appropriately.

    • Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Design an elevator system.
  • Ans. 

    Design an elevator system for efficient vertical transportation.

    • Divide building into zones to optimize elevator usage.

    • Implement algorithms for efficient elevator scheduling.

    • Include safety features like emergency stop buttons and overload sensors.

    • Consider user interface for passengers to select floors and monitor elevator status.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNoMicrosoft interview preparation:Topics to prepare for the interview - Data structures, algorithms , low level system design , high level system design, problem solvingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : Practice 
Tip 3 : Be positive

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Deevia Software India Interview FAQs

How many rounds are there in Deevia Software India interview?
Deevia Software India interview process usually has 2 rounds. The most common rounds in the Deevia Software India interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Deevia Software India 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 Deevia Software India . The most common topics and skills that interviewers at Deevia Software India expect are Embedded C, AUTOSAR, C++, Communication Protocols and Microcontroller.
What are the top questions asked in Deevia Software India interview?

Some of the top questions asked at the Deevia Software India interview -

  1. Bit manipulation questions Question on the projects did during engineer...read more
  2. Arrays,functions,pointers,structures,unions,bitw...read more
  3. Basics of digital electronics for ece stude...read more

Tell us how to improve this page.

Deevia Software India Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 864 Interviews
Google Interview Questions
4.4
 • 842 Interviews
Amdocs Interview Questions
3.7
 • 517 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 284 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
View all

Deevia Software India Reviews and Ratings

based on 8 reviews

3.3/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

3.1

Salary

3.0

Job security

2.7

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
47 salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹7.9 L/yr - ₹17 L/yr

Associate Software Engineer
15 salaries
unlock blur

₹5.5 L/yr - ₹6.5 L/yr

Engineer Trainee
5 salaries
unlock blur

₹5 L/yr - ₹5.5 L/yr

Associate Engineer
4 salaries
unlock blur

₹5.5 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Deevia Software India with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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