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 Interview Questions and Answers

Updated 15 Jan 2025
Popular Designations

11 Interview questions

An Associate Engineer was asked 7mo ago
Q. Write a program to reverse an array.
Ans. 

Reverse an array of strings

  • Create a new array to store the reversed strings

  • Iterate through the original array in reverse order and add each element to the new array

  • Return the new array as the reversed array

View all Associate Engineer interview questions
An Associate Engineer was asked 7mo ago
Q. What are storage classes in the C language?
Ans. 

Storage classes in C language define the scope and lifetime of variables.

  • There are four storage classes in C: auto, register, static, and extern.

  • Auto variables are local to the block they are declared in and have automatic storage duration.

  • Register variables are stored in CPU registers for faster access.

  • Static variables retain their value between function calls.

  • Extern variables are declared outside of any function...

View all Associate Engineer interview questions
An Associate Engineer was asked 7mo ago
Q. How many address lines are present in 1KB memory?
Ans. 

There are 10 address lines present in 1kb memory.

  • 1kb memory = 1024 bytes

  • To address 1024 bytes, 10 address lines are needed (2^10 = 1024)

View all Associate Engineer interview questions
An Engineer Trainee was asked 9mo ago
Q. What are setup and hold times?
Ans. 

Setup and hold time are timing constraints in digital circuits to ensure proper operation of flip-flops.

  • Setup time is the minimum amount of time data must be stable before the clock edge for proper operation.

  • Hold time is the minimum amount of time data must be stable after the clock edge for proper operation.

  • Violating setup time can result in metastability issues.

  • Violating hold time can result in data corruption.

  • E...

View all Engineer Trainee interview questions
An Associate Engineer was asked
Q. Explain data types in Python.
Ans. 

Data types in Python define the type of data that a variable can hold.

  • Python has various data types such as integers, floats, strings, lists, tuples, dictionaries, etc.

  • Data types determine the operations that can be performed on the variables.

  • Examples: int for integers, float for floating-point numbers, str for strings, list for lists, tuple for tuples, dict for dictionaries.

View all Associate Engineer interview questions
An Associate Engineer was asked
Q. Explain list operations.
Ans. 

List operations involve manipulating collections of items, including adding, removing, and accessing elements.

  • Appending: Adds an item to the end of the list. Example: list.append(5) adds 5 to the end.

  • Inserting: Adds an item at a specific index. Example: list.insert(1, 10) adds 10 at index 1.

  • Removing: Deletes an item by value. Example: list.remove(10) removes the first occurrence of 10.

  • Popping: Removes and returns ...

View all Associate Engineer interview questions
A Platform Engineer was asked
Q. Explain the basics of microcontrollers, including SP and PC.
Ans. 

Microcontrollers use registers like SP (Stack Pointer) and PC (Program Counter) for managing execution and memory.

  • SP (Stack Pointer) holds the address of the top of the stack in memory, crucial for function calls and local variable storage.

  • PC (Program Counter) keeps track of the address of the next instruction to be executed, ensuring sequential execution.

  • In an 8-bit microcontroller, SP might point to a memory loc...

View all Platform Engineer interview questions
Are these interview questions helpful?
A Design Engineer was asked 7mo ago
Q. CDC technique , and why need of CDC
Ans. 

CDC stands for Clock Domain Crossing technique used in digital design to ensure proper data transfer between different clock domains.

  • CDC technique involves synchronizing data signals when crossing between different clock domains to prevent metastability issues.

  • It is necessary because different clock domains operate at different frequencies and can lead to data corruption if not properly synchronized.

  • Common CDC tec...

View all Design Engineer interview questions
An Intern was asked
Q. Give a code and write coding or debug
Ans. 

Provide a code snippet and explain how to debug it

  • Identify the specific error message or issue in the code

  • Check for syntax errors, missing brackets, or typos

  • Use debugging tools like console.log or breakpoints to track the flow of the code

View all Intern interview questions
A Senior Engineer was asked 10mo ago
Q. 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 ...

View all Senior Engineer interview questions

Ignitarium Technology Solutions Interview Experiences

21 interviews found

Associate Engineer Interview Questions & Answers

user image Jahnavi Lakshmi

posted on 21 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

We have 25 questions and negative marking is there

Round 2 - Technical 

(2 Questions)

  • Q1. What are storage classes in c language?
  • Ans. 

    Storage classes in C language define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to the block they are declared in and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and ...

  • Answered by AI
  • Q2. How many address lines are present in 1kb memory?
  • Ans. 

    There are 10 address lines present in 1kb memory.

    • 1kb memory = 1024 bytes

    • To address 1024 bytes, 10 address lines are needed (2^10 = 1024)

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Program on array , reverse the array
  • Ans. 

    Reverse an array of strings

    • Create a new array to store the reversed strings

    • Iterate through the original array in reverse order and add each element to the new array

    • Return the new array as the reversed array

  • Answered by AI
  • Q2. Logic gates, what is the output of this .they will ask by showing picture

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions based on image processing, computer vision, deep learning... python - pascal triangle
Round 2 - Technical 

(1 Question)

  • Q1. Questions about the deep-learing projects in details

Interview Preparation Tips

Interview preparation tips for other job seekers - Defend your resume... in-depth knowledge about the projects mentioned
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. To write verilog code for counters and adders. Flipflops,latches,protocol

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

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

(2 Questions)

  • Q1. CDC technique , and why need of CDC
  • Ans. 

    CDC stands for Clock Domain Crossing technique used in digital design to ensure proper data transfer between different clock domains.

    • CDC technique involves synchronizing data signals when crossing between different clock domains to prevent metastability issues.

    • It is necessary because different clock domains operate at different frequencies and can lead to data corruption if not properly synchronized.

    • Common CDC techniqu...

  • Answered by AI
  • Q2. How to transfer multiple bits in CDC
  • Ans. 

    Transfer multiple bits in CDC involves using a parallel data transfer method.

    • Use parallel data transfer method to transfer multiple bits simultaneously

    • Implement a shift register to store and shift out multiple bits

    • Utilize multiplexers to select and transfer specific bits

    • Consider using a bus architecture for efficient data transfer

  • Answered by AI

Skills evaluated in this interview

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

Electronics based questions on sta ,mosfet etc

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is setup and hold time
  • Ans. 

    Setup and hold time are timing constraints in digital circuits to ensure proper operation of flip-flops.

    • Setup time is the minimum amount of time data must be stable before the clock edge for proper operation.

    • Hold time is the minimum amount of time data must be stable after the clock edge for proper operation.

    • Violating setup time can result in metastability issues.

    • Violating hold time can result in data corruption.

    • Exampl...

  • Answered by AI
  • Q2. D flip flop verilog
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. About my project
  • Q2. In depth knowledge of matlab/simulink

Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Related to AOSP and one easy programming question
Round 2 - Technical 

(1 Question)

  • Q1. More in depth about AOSP
Round 3 - Behavioral 

(1 Question)

  • Q1. Mostly about the company reuirements
Round 4 - HR 

(1 Question)

  • Q1. Salary and joining date negotiation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C program to find address of pointer

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

I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Sequence Detector
  • Q2. About different types of Counters, and counters related Questions
  • Q3. Flipflop related Questions
Round 2 - Technical 

(2 Questions)

  • Q1. Power dissipation Types
  • Q2. Latch up Problem
  • Ans. 

    Latch up is a phenomenon in integrated circuits where a parasitic structure causes a low-impedance path to form, leading to a high current flow.

    • Latch up can occur in CMOS circuits due to the parasitic thyristor formed by the p-n-p-n structure of the MOSFETs.

    • It can be triggered by high voltage spikes or excessive current, causing the parasitic thyristor to turn on and create a short circuit.

    • Latch up can be prevented by ...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ignitarium Technology Solutions?
Ask anonymously on communities.

Ignitarium Technology Solutions Interview FAQs

How many rounds are there in Ignitarium Technology Solutions interview?
Ignitarium Technology Solutions interview process usually has 2 rounds. The most common rounds in the Ignitarium Technology Solutions interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Ignitarium Technology Solutions 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++, Python, C, Machine Learning and Computer Vision.
What are the top questions asked in Ignitarium Technology Solutions interview?

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

  1. Take two numbers, reverse both, then perform addition and reverse aga...read more
  2. How many address lines are present in 1kb memo...read more
  3. Basics of Microcotrollers. Explain SP, PC ...read more
How long is the Ignitarium Technology Solutions interview process?

The duration of Ignitarium Technology Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 20 interview experiences

Difficulty level

Moderate 86%
Hard 14%

Duration

Less than 2 weeks 77%
2-4 weeks 23%
View more

Interview Questions from Similar Companies

Texas Instruments Interview Questions
3.9
 • 126 Interviews
Synopsys Interview Questions
3.9
 • 95 Interviews
Molex Interview Questions
3.9
 • 58 Interviews
Tessolve Interview Questions
3.5
 • 56 Interviews
Lam Research Interview Questions
3.7
 • 50 Interviews
Apar Industries Interview Questions
4.1
 • 49 Interviews
View all

Ignitarium Technology Solutions Reviews and Ratings

based on 83 reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.2

Salary

3.9

Job security

3.7

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 83 Reviews and Ratings
Verification Engineer

Kochi,

Chennai

+1

3-8 Yrs

₹ 10-20 LPA

Senior Engineer

Kochi,

Chennai

+1

3-8 Yrs

₹ 10-20 LPA

Explore more jobs
Senior Engineer
62 salaries
unlock blur

₹9.3 L/yr - ₹17 L/yr

Engineer
47 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹10.5 L/yr - ₹17.1 L/yr

AI Engineer
30 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Staff Engineer
30 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Explore more salaries
Compare Ignitarium Technology Solutions with

Apar Industries

4.1
Compare

Molex

3.9
Compare

TDK India Private Limited

3.8
Compare

Micron Technology

3.6
Compare
write
Share an Interview