Upload Button Icon Add office photos
Engaged Employer

i

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

Ignitarium Technology Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ignitarium Technology Solutions Senior Engineer Interview Questions and Answers

Updated 20 Aug 2024

Ignitarium Technology Solutions Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image PRASHANT DHEER

posted on 20 Aug 2024

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain storage variables in C?
  • Ans. 

    Storage variables in C are used to store data temporarily during program execution.

    • Storage variables in C are declared using data types like int, float, char, etc.

    • They can be stored in different memory locations like stack, heap, or data segment.

    • Variables declared outside functions have global scope and are stored in data segment.

    • Variables declared inside functions have local scope and are stored in stack memory.

    • Dynami...

  • Answered by AI
  • Q2. Take two numbers, reverse both, then perform addition and reverse again?
  • Q3. First three kinds of sorting
  • Ans. 

    The first three kinds of sorting are bubble sort, selection sort, and insertion sort.

    • Bubble sort compares adjacent elements and swaps them if they are in the wrong order.

    • Selection sort selects the smallest element and swaps it with the first element, then selects the second smallest element and swaps it with the second element, and so on.

    • Insertion sort builds the final sorted array one item at a time by inserting each

  • Answered by AI
  • Q4. Output questions based on pointers in C

Interview Preparation Tips

Topics to prepare for Ignitarium Technology Solutions Senior Engineer interview:
  • C
  • Data Structures
  • Embedded Systems

Skills evaluated in this interview

Senior Engineer Jobs at Ignitarium Technology Solutions

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What were your previous projects that you have worked on
  • Ans. 

    I have worked on projects related to developing software for autonomous vehicles and implementing machine learning algorithms for predictive maintenance.

    • Developed software for autonomous vehicles to improve navigation and obstacle avoidance

    • Implemented machine learning algorithms for predictive maintenance in manufacturing plants

    • Collaborated with cross-functional teams to integrate new technologies into existing systems

  • Answered by AI
  • Q2. What all your technical skills and stacks that you have previously used for your projects
  • Ans. 

    I have experience with Java, Python, SQL, AWS, Docker, and Kubernetes in my previous projects.

    • Java

    • Python

    • SQL

    • AWS

    • Docker

    • Kubernetes

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is docker and why do we use it for containerising applications
  • Ans. 

    Docker is a platform for developing, shipping, and running applications in containers.

    • Docker allows applications to be isolated in containers, making them portable and easy to deploy across different environments.

    • Containers share the host OS kernel but run as isolated processes, providing lightweight and efficient virtualization.

    • Docker simplifies the process of packaging applications and their dependencies, ensuring co...

  • Answered by AI
  • Q2. What is database normalisation and how your project benefited from it in the past
  • Ans. 

    Database normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Database normalization involves breaking down data into smaller, more manageable tables and defining relationships between them.

    • It helps in reducing data redundancy, improving data integrity, and making the database more efficient.

    • For example, in a project I worked on, we normalized the database by spl...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What has been your experience with challenging projects
  • Ans. 

    I have extensive experience working on challenging projects in various industries.

    • Led a team in developing a complex software solution for a major client

    • Managed a project with tight deadlines and limited resources

    • Implemented innovative solutions to overcome technical obstacles

    • Collaborated with cross-functional teams to deliver successful outcomes

  • Answered by AI
  • Q2. How would you approach learning about new domain and technologies with a different background
  • Ans. 

    I would approach learning about new domain and technologies with a different background by leveraging my existing skills, seeking out resources, and collaborating with experts in the field.

    • Identify key concepts and terminology in the new domain

    • Seek out online courses, tutorials, and books to gain foundational knowledge

    • Collaborate with colleagues or mentors who have experience in the new domain

    • Experiment with hands-on p...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Micron Technology Senior Engineer interview:
  • IT Projects
  • Python
  • Reactjs
  • Django
  • Databases
Interview preparation tips for other job seekers - Prepare well on your skillsets and domain knowledge to defend your skills in front of the interviewer well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2023. 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 - One-on-one 

(1 Question)

  • Q1. Asked about last experience and sales network in PSU's
Round 3 - HR 

(1 Question)

  • Q1. Location preference and relocation timing.

Interview Preparation Tips

Interview preparation tips for other job seekers - great company. if your resume is shortlisted , high chances you will get the job.
Round 1 - Technical 

(2 Questions)

  • Q1. They asked about technical
  • Q2. Provide answers for the same
Round 2 - Technical 

(2 Questions)

  • Q1. They asked about technical
  • Q2. Answers according to question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go, they asked basic question

I applied via Company Website and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Semiconductor physics Basic concepts and previous work profile experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume according to job profile and answer all basic questions related semiconductor device physics and digital design
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Delete a node in a single linked list
  • Ans. 

    To delete a node in a single linked list, update the previous node's next pointer to skip over the node to be deleted.

    • Traverse the linked list to find the node to be deleted

    • Update the previous node's next pointer to skip over the node to be deleted

    • Free the memory allocated to the node to be deleted

  • Answered by AI
  • Q2. Delete duplicate elements in a sorted singly linked list
  • Ans. 

    Use two pointers to iterate through the list and remove duplicates by updating next pointers

    • Initialize two pointers, current and next, to iterate through the list

    • Compare current and next node values, if equal, update next pointer to skip duplicate node

    • Repeat until end of list is reached

  • Answered by AI
  • Q3. What is volatile and extern keywords in C ? What are local and external linkages ? What are SW and HW interrupts ? What are the different scheduling algorithms ?
  • Ans. 

    Volatile and extern are keywords in C for memory management. Local and external linkages determine scope. SW and HW interrupts handle events. Different scheduling algorithms manage task priorities.

    • Volatile keyword is used to indicate that a variable may be changed unexpectedly, typically by hardware. Example: volatile int x;

    • Extern keyword is used to declare a variable that is defined in another file. Example: extern in...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 6 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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

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

I was interviewed in Feb 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

C Programming, OS Concepts, RTOS, Project Explanation.

Round 3 - HR 

(2 Questions)

  • Q1. Introduction. General awareness questions.
  • Q2. Introduction. General talk.

Interview Preparation Tips

Topics to prepare for LeadSoc Technologies India Senior Software Engineer interview:
  • C
  • RTOS Concepts
  • Embedded Systems
  • Embedded C
Interview preparation tips for other job seekers - Very helpful people they are very much supportive while interviewing process also.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

OOPS Principle.
SQL
Java Coding Round - with easy level of questions

Ignitarium Technology Solutions Interview FAQs

How many rounds are there in Ignitarium Technology Solutions Senior Engineer interview?
Ignitarium Technology Solutions interview process usually has 1 rounds. The most common rounds in the Ignitarium Technology Solutions interview process are Technical.
How to prepare for Ignitarium Technology Solutions Senior 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 Ignitarium Technology Solutions. The most common topics and skills that interviewers at Ignitarium Technology Solutions expect are C++, AUTOSAR, Ansible, C and Canva.
What are the top questions asked in Ignitarium Technology Solutions Senior Engineer interview?

Some of the top questions asked at the Ignitarium Technology Solutions Senior Engineer interview -

  1. Take two numbers, reverse both, then perform addition and reverse aga...read more
  2. Explain storage variables in...read more
  3. First three kinds of sort...read more

Tell us how to improve this page.

Ignitarium Technology Solutions Senior Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Ignitarium Technology Solutions Senior Engineer Salary
based on 52 salaries
₹6.5 L/yr - ₹17 L/yr
34% more than the average Senior Engineer Salary in India
View more details

Ignitarium Technology Solutions Senior Engineer Reviews and Ratings

based on 7 reviews

4.3/5

Rating in categories

4.6

Skill development

3.9

Work-life balance

3.1

Salary

4.4

Job security

4.1

Company culture

3.4

Promotions

4.4

Work satisfaction

Explore 7 Reviews and Ratings
Senior Engineer
52 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Engineer
38 salaries
unlock blur

₹5 L/yr - ₹10.8 L/yr

Senior Software Engineer
33 salaries
unlock blur

₹8.5 L/yr - ₹22.2 L/yr

AI Engineer
27 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Embedded Software Engineer
27 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Ignitarium Technology Solutions with

Sasken

3.8
Compare

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

L&T Technology Services

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