Upload Button Icon Add office photos
Engaged Employer

i

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

Iris Software Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 1.5k Reviews

Filter interviews by

Iris Software Associate Engineer Interview Questions and Answers

Updated 6 Apr 2024

Iris Software Associate Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of spark and hive and kafka
Round 2 - One-on-one 

(1 Question)

  • Q1. Spark scala codinng on screen share along with working explanations of spark and hive

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics very clear and you should know the whole process of working of different tools

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Linear search how to find algorithm
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics analytical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Core java and basics sql
  • Q2. Html,CSS, basics questions
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Salary discussions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 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 - Coding Test 

Basic coding in Java. MySql, HTML.

Round 3 - Coding Test 

Adavance coding in Java programming.

Round 4 - HR 

(1 Question)

  • Q1. About salary. Location.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

This is aptitude test basic questions asked from aptitude like percentage,work,time distance.

Round 3 - Technical 

(1 Question)

  • Q1. Basic oops , dsa, review your resume and prepare what you mentioned in resume.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Questions and a few output-based questions were asked to assess your basic knowledge.

Round 2 - Coding Test 

Inquired about the leap year problem.

Round 3 - Coding Test 

I was asked a pattern problem along with a few basic questions on HTML, CSS (specifically how to change the button color), and JavaScript.

Round 4 - HR 

(1 Question)

  • Q1. What are the reasons you chose this company, what is your personal motto, and what aspects of the job and company do you find appealing?
  • Ans. 

    I chose this company for its innovative projects, my personal motto is 'continuous improvement', and I find the collaborative work environment and growth opportunities appealing.

    • Chose company for innovative projects

    • Personal motto is 'continuous improvement'

    • Find collaborative work environment appealing

    • Growth opportunities within the company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Grasp the concept of both the knowledge you acquire and the code you write.

I applied via Campus Placement and was interviewed in Sep 2022. There were 7 interview rounds.

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 - Aptitude Test 

6 sections with section timings
Aptitude 10 questions
Reasoning 10 questions
Coding 1(30min)
Data structure 10
Pseudo Code 10
About Company 5

Round 3 - Group Discussion 

Topic 1-drone
Topic - self driving cars

Round 4 - Technical 

(3 Questions)

  • Q1. Program to count spaces in string Program to print only digits in string
  • Ans. 

    Program to count spaces and print digits in string

    • For counting spaces, loop through the string and check for ' ' character

    • For printing digits, loop through the string and check for '0' to '9' characters

    • Use isdigit() function in Python to check for digits

    • Use a counter variable to keep track of spaces

    • Use a separate string variable to store digits and print it at the end

  • Answered by AI
  • Q2. Why string is immutable
  • Ans. 

    String is immutable because it cannot be changed once created.

    • Immutable objects are safer to use in multi-threaded environments

    • String pool in Java is possible because of immutability

    • StringBuffer and StringBuilder are mutable alternatives to String

  • Answered by AI
  • Q3. About Constructor Dictionary Access modifiers in python
Round 5 - Technical 

(1 Question)

  • Q1. Which is difficult program that you wrote in python Which is difficult program wrote in c Dictionary use with code implications
  • Ans. 

    Difficult program in Python: A web scraper to extract data from dynamic websites. Difficult program in C: A program to implement a custom data structure.

    • Python program required knowledge of web scraping libraries like BeautifulSoup and Selenium

    • C program required understanding of memory management and pointers

    • Python program had to handle dynamic website elements and login authentication

    • C program had to implement a custo...

  • Answered by AI
Round 6 - HR 

(1 Question)

  • Q1. Self intro About Company Hobbies Related to resume
Round 7 - HR 

(1 Question)

  • Q1. Self intro Intrested field

Interview Preparation Tips

Topics to prepare for TEKsystems Associate Engineer interview:
  • Dbms
  • Python
  • Java
  • OOPS
  • Programming
Interview preparation tips for other job seekers - Be confident and try to solve programing part well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Arrays sort using largest element

Round 2 - HR 

(1 Question)

  • Q1. Tell about yourself
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is a stack and implement it
  • Ans. 

    A stack is a linear data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added to the top of the stack and removed from the top as well.

    • Common operations include push (add element to top) and pop (remove element from top).

    • Stacks can be implemented using arrays or linked lists.

    • Example: undo/redo functionality in a text editor.

    • Example: function call stack in programming languages.

  • Answered by AI
  • Q2. What is hashing and does it have key?
  • Ans. 

    Hashing is a process of converting data into a fixed-size output. It has a key that is used to access the data.

    • Hashing is used to store and retrieve data quickly.

    • It uses a hash function to generate a unique key for each input data.

    • The key is used to access the data in constant time.

    • Hashing is used in password storage, data indexing, and cryptography.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be cool and present yourself peacefully. they might ask u more on coding if u are weak you need to divert towards your strong topic

Skills evaluated in this interview

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

I applied via campus placement at Koneru Lakshmaiah College of Engineering (KLCE), Arni and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

All the aptitude topics were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about java questions and about my projects in resume

Iris Software Interview FAQs

How many rounds are there in Iris Software Associate Engineer interview?
Iris Software interview process usually has 2 rounds. The most common rounds in the Iris Software interview process are One-on-one Round.
What are the top questions asked in Iris Software Associate Engineer interview?

Some of the top questions asked at the Iris Software Associate Engineer interview -

  1. Spark scala codinng on screen share along with working explanations of spark a...read more
  2. Basics of spark and hive and ka...read more

Tell us how to improve this page.

Iris Software Associate Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Fast track your campus placements

View all
Iris Software Associate Engineer Salary
based on 22 salaries
₹5.5 L/yr - ₹13 L/yr
53% more than the average Associate Engineer Salary in India
View more details

Iris Software Associate Engineer Reviews and Ratings

based on 10 reviews

3.9/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

3.7

Salary

3.3

Job security

4.1

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 10 Reviews and Ratings
Senior Software Engineer
567 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Technical Lead
530 salaries
unlock blur

₹15 L/yr - ₹36.2 L/yr

Senior Engineer
394 salaries
unlock blur

₹9.5 L/yr - ₹31 L/yr

Senior Technical Consultant
386 salaries
unlock blur

₹9.5 L/yr - ₹29 L/yr

Senior Technology Engineer
326 salaries
unlock blur

₹11.8 L/yr - ₹32 L/yr

Explore more salaries
Compare Iris Software with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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