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
3.7

based on 71 Reviews

Filter interviews by

Ignitarium Technology Solutions Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Ignitarium Technology Solutions Interview Questions and Answers

View all 12 questions

Ignitarium Technology Solutions Interview Experiences

Popular Designations

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

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)
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

Computer Vision Engineer Interview Questions asked at other Companies

Q1. Can you train model using MATLAB for image classifications?
View answer (1)
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

RTL Design Engineer Interview Questions asked at other Companies

Q1. Logic gates implementation using Mux, De-Mux.
View answer (1)

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 Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)

Ignitarium Technology Solutions interview questions for popular designations

 Associate Engineer

 (2)

 Design Engineer

 (2)

 Embedded Software Developer

 (2)

 Android Developer

 (1)

 android Framework Developer

 (1)

 Computer Vision Engineer

 (1)

 Data Scientist

 (1)

 Embedded Software Engineer

 (1)

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

Design Engineer Interview Questions asked at other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel engine and Diesel in petrol engone.
View answer (5)

Get interview-ready with Top Ignitarium Technology Solutions Interview Questions

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

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
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

Embedded Software Developer Interview Questions asked at other Companies

Q1. How many result cases are possible when to find maximum of three numbers. This is tricky question
View answer (3)

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

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (5)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C program to find address of pointer

Embedded Software Developer Interview Questions asked at other Companies

Q1. How many result cases are possible when to find maximum of three numbers. This is tricky question
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at B M S College of Engineering, Bangalore 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

Vlsi Engineer Interview Questions asked at other Companies

Q1. tell me about concepts which was good difference between latche and flipflop what are advantages of clock
View answer (1)

Ignitarium Technology Solutions Interview FAQs

How many rounds are there in Ignitarium Technology Solutions interview?
Ignitarium Technology Solutions interview process usually has 2-3 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. What are storage classes in c langua...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.

Ignitarium Technology Solutions Interview Process

based on 14 interviews in last 1 year

Interview experience

4.1
  
Good
View more

People are getting interviews through

based on 15 Ignitarium Technology Solutions interviews
Job Portal
Campus Placement
Company Website
53%
20%
7%
20% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Sasken Interview Questions
3.9
 • 77 Interviews
View all

Ignitarium Technology Solutions Reviews and Ratings

based on 71 reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.3

Salary & Benefits

4.0

Job Security

3.8

Company culture

3.3

Promotions/Appraisal

3.4

Work Satisfaction

Explore 71 Reviews and Ratings
Senior Engineer
51 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Engineer
34 salaries
unlock blur

₹5 L/yr - ₹10.8 L/yr

AI Engineer
27 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹9 L/yr - ₹22.5 L/yr

Embedded Software Engineer
26 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Ignitarium Technology Solutions with

Sasken

3.9
Compare

Persistent Systems

3.5
Compare

LTIMindtree

3.9
Compare

L&T Technology Services

3.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview