Upload Button Icon Add office photos

Filter interviews by

I-STEM AI Engineer Interview Questions and Answers

Updated 8 Feb 2022

I-STEM AI Engineer Interview Experiences

1 interview found

AI Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Feb 2022

I applied via AngelList and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions about basics of AI such as reinforcement learning, metrics, hyperparameters etc.
Round 2 - Case Study 

Detailed analysis of candidate's approach towards building AI solutions for Computer Vision and NLP problems including Speech Recognition, Video Captioning, OCR etc. The solution will be cross-questioned for data acquisition, result generalization, application in solving real life industrial problems and deployment strategies.

Round 3 - Coding Test 

Basic Data Structures and Algorithms questions in preferably Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a clear understanding of how industry standard solutions are designed with AI. Have a good understanding of basics of AI and programming.

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about NLP and BERT
  • Q2. Basic Coding questions on OOPs concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Python, AI and ML algorithms, data sciences . Questions can be from any of the above. Since I had experience of Python , I was only asked for that . It went smooth.

Round 2 - Japanese language 

(1 Question)

  • Q1. We were asked to speak in Japanese
Round 3 - Behavioral 

(1 Question)

  • Q1. How well we manage situation and our attitude towards anything was judged.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 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 

113 question 1 hour mcq

Round 3 - Group Discussion 

How is edtech better than offline

Round 4 - One-on-one 

(5 Questions)

  • Q1. Questions about personality
  • Q2. How often do you cry
  • Q3. How often do you switch
  • Q4. Top 5 qualities of a siccessful person
  • Q5. Easiest coding language
  • Ans. 

    Python is considered the easiest coding language for beginners.

    • Python has simple syntax and is easy to read and write.

    • It has a large standard library with pre-built functions for common tasks.

    • Python is versatile and can be used for web development, data analysis, automation, and more.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best
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 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic code to be written

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Job Portal and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Oops concepts, explain with real time example
  • Ans. 

    Oops concepts are fundamental to object-oriented programming. They help in creating modular and reusable code.

    • Encapsulation - hiding implementation details of an object from the outside world

    • Inheritance - creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism - ability of objects to take on many forms, depending on the context

    • Abstraction - focusing on essential features of an objec

  • Answered by AI
  • Q2. Why is multiple inheritance not allowed in java
  • Ans. 

    Multiple inheritance is not allowed in Java to avoid the diamond problem.

    • Java supports multiple interface inheritance to achieve the same functionality.

    • Diamond problem occurs when a class inherits from two classes with a common method.

    • Java prioritizes single inheritance to maintain simplicity and avoid ambiguity.

  • Answered by AI
  • Q3. Difference between arrays and arraylist
  • Ans. 

    Arrays are fixed in size while ArrayLists can dynamically grow and shrink.

    • Arrays are of fixed size while ArrayLists can be resized dynamically.

    • Arrays can hold primitive data types and objects while ArrayLists can only hold objects.

    • Arrays are faster for accessing elements while ArrayLists are faster for adding and removing elements.

    • Arrays use square brackets [] to declare while ArrayLists use angle brackets <>.

    • Example: ...

  • Answered by AI
  • Q4. What are java collections
  • Ans. 

    Java collections are classes and interfaces that provide a way to store and manipulate groups of objects.

    • Java collections include List, Set, Map, Queue, and their respective implementations

    • They provide methods for adding, removing, and accessing elements

    • Examples include ArrayList, HashSet, TreeMap, and PriorityQueue

  • Answered by AI
  • Q5. What is time theta
  • Ans. 

    Time theta is a measure of the worst-case time complexity of an algorithm.

    • It is used to analyze the performance of algorithms.

    • It represents the maximum amount of time an algorithm takes to complete.

    • It is denoted by the symbol Θ(n).

  • Answered by AI
  • Q6. Explain bubble sorting
  • Ans. 

    Bubble sorting is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort is a comparison-based algorithm

    • It works by comparing each pair of adjacent elements and swapping them if they are in the wrong order

    • The algorithm repeats this process until no more swaps are needed

    • It has a worst-case and average-case complexity of O(n^...

  • Answered by AI
  • Q7. We need to generate a random number between 15-25, write a code for the following
  • Ans. 

    Code to generate a random number between 15-25

    • Use Math.random() to generate a random number between 0-1

    • Multiply the result with the range (25-15) and add the minimum value (15)

    • Use Math.floor() to round down the result to an integer

  • Answered by AI
  • Q8. Question on JSON format

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure you have a very good knowledge of any one programming language and DS

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between NACL and security groups?
  • Ans. 

    NACL and security groups are both AWS network security features, but NACL operates at the subnet level while security groups operate at the instance level.

    • NACL is stateless while security groups are stateful

    • NACL can allow or deny traffic based on IP addresses, protocols, and ports while security groups only allow traffic

    • NACL rules are evaluated in order while security group rules are evaluated independently

    • NACL can be ...

  • Answered by AI
  • Q2. How you identify public/private subnets?
  • Ans. 

    Public and private subnets can be identified based on their IP address range and their accessibility from the internet.

    • Public subnets have IP addresses that are accessible from the internet.

    • Private subnets have IP addresses that are not accessible from the internet.

    • Public subnets are typically used for resources that need to be accessed from the internet, such as web servers.

    • Private subnets are typically used for resou...

  • Answered by AI
  • Q3. What is the difference between s3 and Glacier?
  • Ans. 

    S3 is for frequently accessed data while Glacier is for long-term archival storage.

    • S3 is designed for frequently accessed data while Glacier is for long-term archival storage.

    • S3 has low latency retrieval times while Glacier has higher retrieval times.

    • S3 is more expensive than Glacier for storage and retrieval.

    • Glacier has a tiered pricing model based on retrieval times and storage duration.

    • S3 is suitable for storing dat...

  • Answered by AI
  • Q4. What is the difference between AMI and s3?
  • Ans. 

    AMI is a virtual machine while S3 is a storage service in AWS.

    • AMI stands for Amazon Machine Image and is a pre-configured virtual machine that can be used to create EC2 instances.

    • S3 stands for Simple Storage Service and is a scalable object storage service that can be used to store and retrieve data.

    • AMI is used to create EC2 instances while S3 is used to store and retrieve data.

    • AMI is used for computing while S3 is use...

  • Answered by AI
  • Q5. What is the parameter of creating group policy using json
  • Ans. 

    The parameter for creating group policy using JSON is a JSON object containing the policy settings.

    • The JSON object should include the policy name, description, and settings.

    • The settings can include values for registry keys, security options, and other policy settings.

    • Example: {"policyName": "Password Policy", "description": "Enforces password complexity requirements", "settings": {"MinimumPasswordLength": 8, "PasswordC

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from what you mentioned in your resume. they will fully scan your resume to check your knowledge and easily can identify from your answers.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Amazon user image Shraman Padhalni

posted on 21 Jun 2021

Interview Questionnaire 

1 Question

  • Q1. Data structures, thoroughly

I-STEM Interview FAQs

How many rounds are there in I-STEM AI Engineer interview?
I-STEM interview process usually has 3 rounds. The most common rounds in the I-STEM interview process are One-on-one Round, Case Study and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 I-STEM interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k 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
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

I-STEM AI Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
3 salaries
unlock blur

₹4.5 L/yr - ₹13.5 L/yr

AI Engineer
3 salaries
unlock blur

₹6.9 L/yr - ₹10.5 L/yr

Explore more salaries
Compare I-STEM with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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