Upload Button Icon Add office photos

Filter interviews by

Delta IoT Solutions Interview Questions and Answers

Updated 15 Mar 2024

Delta IoT Solutions Interview Experiences

Popular Designations

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2023. There were 4 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 - One-on-one 

(3 Questions)

  • Q1. Technical Interview from payroll company i.e L1
  • Q2. Technical Interview from client i.e final round
  • Q3. Hr round is Last one
Round 3 - One-on-one 

(2 Questions)

  • Q1. Hr manager round
  • Q2. Hr manager round i.e final round
Round 4 - HR 

(1 Question)

  • Q1. Final round i.e Hr manager discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and positive.

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

30 mins round each 5 rounds will be there

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion will be there and they dont negotiate

Python Software Developer Interview Questions asked at other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Python
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2024

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

(1 Question)

  • Q1. Itech questions with pannel

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Nov 2022.

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 

(1 Question)

  • Q1. Draw control logic MIL SIL Difference
  • Ans. 

    Control logic can be drawn for MIL and SIL. MIL is for early testing and SIL is for final testing.

    • MIL (Model-in-the-loop) testing involves testing the control logic using a model of the system

    • SIL (Software-in-the-loop) testing involves testing the control logic using the actual software

    • Control logic can be drawn using tools like Simulink or Stateflow

    • MIL testing is done early in the development process to catch errors b...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Stateflow Logic, why SIL If MIL done
  • Ans. 

    Stateflow logic is used for modeling and simulating complex systems. SIL is done after MIL to ensure safety and reliability.

    • Stateflow logic is a graphical programming language used for modeling and simulating complex systems.

    • SIL (Software-in-the-Loop) testing is done after MIL (Model-in-the-Loop) testing to ensure safety and reliability of the software.

    • Stateflow logic is used to model the behavior of the software and S...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.
Answer precise n less.
Develope your logic well

Skills evaluated in this interview

Model Based Developer Interview Questions asked at other Companies

Q1. Draw control logic MIL SIL Difference
View answer (1)

Delta IoT Solutions interview questions for popular designations

 Model Based Developer

 (1)

 Python Software Developer

 (1)

 Embedded Software Engineer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2021. There were 3 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 - Group Discussion 

The planning if the project and how to take over the project

Round 3 - Aptitude Test 

We should maintain the aptitude to with our project and with with

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to wrok in the this company and to entire world

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

Analyst Interview Questions & Answers

IBM user image Anonymous

posted on 18 Dec 2020

Interview Questionnaire 

2 Questions

  • Q1. Basic finance questions
  • Q2. Journal entries and about the role applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have the will power, there is nothing impossible, all we have to do is work hard and Chase our dream.

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

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

Delta IoT Solutions Interview FAQs

How many rounds are there in Delta IoT Solutions interview?
Delta IoT Solutions interview process usually has 2-3 rounds. The most common rounds in the Delta IoT Solutions interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Delta IoT Solutions interview?

Some of the top questions asked at the Delta IoT Solutions interview -

  1. Draw control logic MIL SIL Differe...read more
  2. Stateflow Logic, why SIL If MIL d...read more
  3. Technical Interview from payroll company i.e...read more

Tell us how to improve this page.

Delta IoT Solutions Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Siemens Interview Questions
4.1
 • 418 Interviews
Cisco Interview Questions
4.1
 • 371 Interviews
Bosch Interview Questions
4.2
 • 331 Interviews
ABB Interview Questions
4.1
 • 235 Interviews
View all

Delta IoT Solutions Reviews and Ratings

based on 33 reviews

3.1/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

2.8

Salary

2.6

Job security

2.8

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 33 Reviews and Ratings
Embedded Software Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Delta IoT Solutions with

Bosch

4.2
Compare

Honeywell Automation

3.8
Compare

Siemens

4.1
Compare

Schneider Electric

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