Upload Button Icon Add office photos

Filter interviews by

KI Technologies Cae Trainee Interview Questions and Answers

Updated 22 Jun 2022

KI Technologies Cae Trainee Interview Experiences

1 interview found

Cae Trainee Interview Questions & Answers

user image Anonymous

posted on 22 Jun 2022

I applied via Company Website and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions of strength of materials & machine design

Interview Preparation Tips

Topics to prepare for KI Technologies Cae Trainee interview:
  • Engineering mechanics
  • strength of materials
  • theory of machine
  • design of machine el
Interview preparation tips for other job seekers - Be ready with basic of design part of engineering and candidate should have basic knowledge of ansys, hypermesh & abaqus

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The assessment comprised an aptitude test and a coding test, featuring seventy-five questions with a duration of approximately two hours. The questions ranged in difficulty from easy to moderate and were all in multiple-choice format.

Round 2 - Technical 

(6 Questions)

  • Q1. Questions on HTML tags
  • Q2. Questions on Python exceptional Handling
  • Q3. Questions on SQl
  • Q4. Questions on OOPs
  • Q5. Question on DSA
  • Q6. Questions on ServiceNow as I was applied for a ServiceNow role.

Interview Preparation Tips

Interview preparation tips for other job seekers - This process will be of easy to moderate difficulty, covering all core concepts. Therefore, focus on fundamental topics such as DBMS, OOP, DSA, HTML, and others. All questions will be basic, and this will aid in your preparation.
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 Jul 2024. There were 3 interview rounds.

Round 1 - Assignment 

Online assessment with aptitude, technical, english, listening, speaking

Round 2 - Technical 

(3 Questions)

  • Q1. Explain Oops in Java
  • Q2. Classes in Java
  • Q3. Many questions related to IoT as I am from ECE background
Round 3 - HR 

(1 Question)

  • Q1. Basic intro only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and explain your views clearly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. Job profile and opportunity discussion
Round 2 - One-on-one 

(3 Questions)

  • Q1. Experience discussion with interviwers
  • Q2. Finance technical questions discussed
  • Q3. Expected remuneration
Round 3 - One-on-one 

(1 Question)

  • Q1. Accounting technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics must be strong enough, attitude towards readiness to sustain long term career with Genpact is required
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Standard with quant , verbal , grammer, algebra

Round 2 - Coding Test 

2 coding questions -- array list, Searching algo

Round 3 - Technical 

(2 Questions)

  • Q1. One Coding Question from bit manipulation , XOR function
  • Q2. Second Automation Script in Virtual VS CODE with terminal provided
  • Ans. 

    Creating a second automation script in Virtual VS Code with terminal provided

    • Open Virtual VS Code and navigate to the terminal

    • Write the script using the appropriate programming language

    • Test the script in the terminal to ensure it runs correctly

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Technical , OOPS, Array Sorting, Azure Cloud

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What are the SQL comands
  • Ans. 

    SQL commands are used to interact with databases to perform various operations like querying, updating, and deleting data.

    • SELECT: Retrieves data from a database

    • INSERT: Adds new records to a table

    • UPDATE: Modifies existing records in a table

    • DELETE: Removes records from a table

    • CREATE TABLE: Creates a new table in the database

    • ALTER TABLE: Modifies an existing table structure

    • DROP TABLE: Deletes a table from the database

  • Answered by AI
  • Q2. What is list which type of list
  • Ans. 

    A list is a collection of items in a specific order.

    • Lists can be ordered or unordered

    • Examples of list types include arrays, linked lists, and queues

  • Answered by AI
  • Q3. What is tuple which type of tuple
  • Ans. 

    A tuple is a data structure that stores a fixed number of elements of different data types.

    • Tuples are immutable, meaning their values cannot be changed once they are assigned.

    • They are ordered collections, meaning the order of elements is preserved.

    • Example: ('John', 25, 'Male') is a tuple with three elements representing a person's name, age, and gender.

  • Answered by AI
  • Q4. What are the difference tuple and list
  • Ans. 

    Tuple is immutable and fixed in size, while list is mutable and can change in size.

    • Tuple is defined using parentheses, while list is defined using square brackets.

    • Tuple elements cannot be changed, while list elements can be modified.

    • Tuple is faster than list for iteration and accessing elements.

    • Example: tuple = (1, 2, 3) and list = [1, 2, 3]

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Are you working any location
  • Ans. 

    Yes, I am willing to work in any location for the graduate trainee program.

    • I am open to relocating for the right opportunity

    • I am flexible and adaptable to new environments

    • I believe working in different locations can provide valuable experiences and growth opportunities

  • Answered by AI
  • Q2. Are you work night duty

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test consists of 26 questions, including 2 coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What is Data Structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures define the way data is stored, accessed, and manipulated in a computer program.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Choosing the right data structure is crucial for optimizing the performance of algorithms and applications.

  • Answered by AI
  • Q2. Explain a Binary Search Tree
  • Ans. 

    A Binary Search Tree (BST) is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

    • Nodes in a BST are arranged in a hierarchical order where each node has a left child and a right child.

    • The left child of a node contains a value less than the parent node, while the right child contains a value greater than the parent node.

    • BST allows f...

  • Answered by AI
  • Q3. Dijkstra Algorithm
  • Ans. 

    Dijkstra's Algorithm is a graph search algorithm for finding the shortest path from a single source to all other nodes in a graph with non-negative edge weights.

    • Dijkstra's Algorithm is used in various applications such as network routing protocols, GPS systems, and road navigation.

    • It works by maintaining a set of nodes with known shortest distance from the source and iteratively expanding this set by adding the nearest...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Questions on Resume

Skills evaluated in this interview

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

Basic apti questions on pseudo code blood relation and profit loss.

Round 2 - Coding Test 

3 coding questions 1 was easy and 2 were medium level.

Round 3 - Technical 

(2 Questions)

  • Q1. Introduction Final year project overall basic cs fundamentals
  • Q2. About the company
Round 4 - HR 

(2 Questions)

  • Q1. Family background
  • Q2. About the company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at University of Petroleum and Energy Studies (UPES), Dehradun and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Quant and Reasoning questions

Round 2 - Coding Test 

Simple D.P and problem solving questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. Self-introduction
  • Q2. About your project and internships
  • Q3. Questions on Team Collaborations and Leadership
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via campus placement at Guru Nanak Dev University (GNDU) and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions relating to english, verbal, reasoning, coding

Round 2 - One-on-one 

(2 Questions)

  • Q1. Hypothetical situation based questions
  • Q2. Challenges and strength related questions

KI Technologies Interview FAQs

How many rounds are there in KI Technologies Cae Trainee interview?
KI Technologies interview process usually has 1 rounds. The most common rounds in the KI Technologies interview process are Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 KI Technologies interview
Company Website
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.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k 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.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

KI Technologies Cae Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

3.0

Promotions/Appraisal

5.0

Work Satisfaction

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