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 Associate Engineer Interview Questions, Process, and Tips

Updated 21 Nov 2024

Top Ignitarium Technology Solutions Associate Engineer Interview Questions and Answers

Ignitarium Technology Solutions Associate Engineer Interview Experiences

2 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
Selected Selected

I applied via campus placement at B M S College of Engineering, Bangalore and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contains aptitude questions a few questions on python, c/c++, digital logic and a circuital questions.

Round 2 - Technical 

(3 Questions)

  • Q1. 2 technical rounds : questions on programming languages and projects, easy level DSA questions
  • Q2. 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.

  • Answered by AI
  • Q3. Expain list oparations
Round 3 - HR 

(2 Questions)

  • Q1. Genaral hr questions
  • Q2. Mention one thing that you feel regret in recent days

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidant

Skills evaluated in this interview

Associate Engineer Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
asked in Nagarro
Q2. Trailing Zeros in Factorial Problem Find the number of trailing z ... read more
asked in Nagarro
Q3. Convert First Letter to Upper Case Given a string STR, transform ... read more
asked in Tata Steel
Q4. What are the test done during maintenance of a power transformer?
asked in Tata Steel
Q5. how to control the speed of an EOT crane without VFD?

Interview questions from similar companies

I applied via Referral and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Manual Testing,
  • Q2.  Regression, AdHoc, UI, Functional Testing, Integration Testing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all Manual Testing related questions. Interview is very simple and easy.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

2 problem was given to solve
1) Smallest Negative balance - -----%20America%20-%20Weekly%20Algorithm%20Challenges/Week%2021%20Algorithm%20Challenge/Smallest%20Negative%20Balance.md
2) Find the absolute difference between alpha & beta from the array.
Alpha -An element k in a array occurs k consecutive time
Beta - An element k in an array occurs k consecutive time starting from index k

Sample input
Arr[] = {2,2,2,4,4,4,4,1,2,2]
Output
Alpha - 3
Beta - 1
Absolute difference - 1

Note : consider array index starts with 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the problem statement clearly, prepare well for problem solving & DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 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 - Aptitude Test 

Aptitude and Logical Reasoning - 15MCQ's in 20min
Programming - 10MCQ's in 15min
Technical - 25MCQ's in 30min
Coding - 2qns in 45min

Round 3 - One-on-one 

(3 Questions)

  • Q1. SQL queries - Joins, specific data retrieval
  • Q2. OOP concepts with example code
  • Ans. 

    OOP concepts involve encapsulation, inheritance, and polymorphism in object-oriented programming.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class). Example: class Car { private String color; public void setColor(String c) { color = c; } }

    • Inheritance: creating new classes based on existing classes, inheriting their attributes and methods. Example: class SUV extends Car { privat...

  • Answered by AI
  • Q3. String questions, swapping two numbers
Round 4 - HR 

(1 Question)

  • Q1. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and showcase your strengths effectively.

I applied via campus placement at Gandhi Institute of Technology and Management, Visakhapatnam and was interviewed in Jun 2022. There were 3 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 - Aptitude Test 

Arithmetic Aptitude
Number Series
Profit and Loss
Data Interpretation

Round 3 - Technical 

(2 Questions)

  • Q1. Most of the questions are from JAVA, SQl and Python Situational based questions Hobbies
  • Q2. Garbage Collection in Java SQL queries
  • Ans. 

    Garbage collection in Java is an automatic process of freeing up memory by removing unused objects.

    • Java uses a mark-and-sweep algorithm for garbage collection

    • Objects that are no longer referenced by any part of the program are eligible for garbage collection

    • System.gc() can be used to suggest garbage collection, but it is not guaranteed to run immediately

    • Garbage collection can cause performance issues if not managed pro

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Micron Technology Associate Software Engineer interview:
  • Java
  • SQL
  • Python
Interview preparation tips for other job seekers - Tough aptitude round
And
Coding Round
Should have good skills in Java and SQl.

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Manual Testing,
  • Q2.  Regression, AdHoc, UI, Functional Testing, Integration Testing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all Manual Testing related questions. Interview is very simple and easy.

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The Technical interview was held on Zoom and the interview lasts for 1 hour. All the questions were from the skills mentioned in the resume.
Firstly interviewer asked me to give a self-introduction, later asked for a brief explanation of the projects and way of working.
Later series of questions were related to academics.
 

  • Q1. 

    Add K Nodes Problem Statement

    You are given a singly linked list of integers and an integer 'K'. Your task is to modify the linked list by inserting a new node after every 'K' node in the linked list. The...

  • Ans. Naive approach
    • We will iterate through the linked list and store the sum of the nodes in a variable 'CURR_SUM' (initialized as zero) and keep a check of the number of nodes traversed since the last insertion with a variable 'NODES_TRAVERSED' (also, initialized as zero).
    • As we traverse the list, we add the value to the 'CURR_SUM' and increment the value of 'NODES_TRAVERSED'.
    • When the value of 'NODES_TRAVERSED'becomes equal...
  • Answered Anonymously
  • Q2. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. Recursive Approach
    • In this approach, we use recursion and uses a basic condition that :
      • If ‘N’ is smaller than ‘1’(N<=1) we return ‘N’
      • Else we call the function again as ninjaJasoos(N-1) + ninjaJasoos(N-2).
    • In this way, we reached our answer.
    Space Complexity: O(n)Explanation:

    O(N),  where ‘N’ is the given number.  

    As recursion uses a stack of size ‘N’

    Time Complexity: O(2^n)Explanation:

    O(2^N), where ‘N’ i...

  • Answered Anonymously
Round 2 - HR 

Round duration - 50 minutes
Round difficulty - Easy

The interview was held on Zoom and the interview lasts for 50 minutes. 
 

1.Explain how did you evolve yourself in B Tech (1-1 semester to 4-1 semester).
 

2. What do you know about Micron Technology?
 

Lastly discussed the certifications and extra circular activities I have done.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaABOVE 7 CGPA(through out from 10th to BTech till now), No Active BacklogsMicron Technology interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, C, Java, Computer Networks, Operating Systems, Python.Time required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Increase problem-solving ability and prepare Data structures and Algorithms well.
Tip 2 : Try to write Optimised code for the given problem statement. If you got stuck in the middle, give it a try. Interviewer will 
look at your approach and try to help you.
Tip 3 : Be Confident enough, don't be nervous.
Tip 4 : Maintain At least 2 projects in your resume.

Application resume tips for other job seekers

Tip 1 : Be honest with the information mentioned in the resume.
Tip 2 : You should be able to answer all the questions related to skills in the resume.
Tip 3 : Have at least 2 projects.
Tip 4 : You should be able to justify your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic question related to ms excel since it was costing associate job.
  • Q2. Aptitude questions in general

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and you will crack it.

Ignitarium Technology Solutions Interview FAQs

How many rounds are there in Ignitarium Technology Solutions Associate Engineer interview?
Ignitarium Technology Solutions interview process usually has 3 rounds. The most common rounds in the Ignitarium Technology Solutions interview process are Technical, Aptitude Test and HR.
What are the top questions asked in Ignitarium Technology Solutions Associate Engineer interview?

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

  1. How many address lines are present in 1kb memo...read more
  2. What are storage classes in c langua...read more
  3. Program on array , reverse the ar...read more

Tell us how to improve this page.

Ignitarium Technology Solutions Associate Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Ignitarium Technology Solutions Associate Engineer Salary
based on 14 salaries
₹5 L/yr - ₹5.5 L/yr
6% less than the average Associate Engineer Salary in India
View more details

Ignitarium Technology Solutions Associate Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

4.0

Salary

2.0

Job security

2.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
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