Upload Button Icon Add office photos

Filter interviews by

Trainity Data Analyst Intern Interview Questions and Answers

Updated 19 Oct 2024

Trainity Data Analyst Intern Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Assignment 

They gave assignment to test

Round 2 - Coding Test 

SQL,Power BI 30 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Case Study 

Netflix Case study- analysis and visualization with real datasets

Round 2 - project 

(1 Question)

  • Q1. Had to work on 4 real-life projects and complete them within the given deadline

Interview Preparation Tips

Interview preparation tips for other job seekers - They focus more on execution rather than theoretical knowledge, so you should have practical experience in your field

Data Analyst Intern Interview Questions Asked at Other Companies

Q1. Water Jug Problem Statement You have two water jugs with capaciti ... read more
Q2. Insertion Sort in a Linked List Given a singly linked list with ' ... read more
Q3. What is the difference between loc and iloc in data science, and ... read more
Q4. Can you explain the different types of keys in a database and the ... read more
Q5. What do you mean by MTD ? How to create it
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 Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Rolling average
Round 2 - Case Study 

Situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Complete assignments on time

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Mar 2022. There were 3 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 - Pseudo code, verbal, gaming 

(1 Question)

  • Q1. Questions will be related to ds, pseudo code and logical reasoning
Round 3 - Technical 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Exceptional handling in java
  • Ans. 

    Exceptional handling in Java is a mechanism to handle runtime errors and prevent program crashes.

    • Java provides try-catch blocks to handle exceptions

    • Multiple catch blocks can be used to handle different types of exceptions

    • Finally block is used to execute code regardless of whether an exception is thrown or not

  • Answered by AI
  • Q3. Primary key, unique key, candidate key in sql
  • Q4. Oops concepts in java
  • Ans. 

    Oops concepts are fundamental to Java programming and include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a class to inherit properties and methods from a parent class.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of a class and only exposes necessary information.

    • Abstraction focuses on t...

  • Answered by AI
  • Q5. Memory management and hash map in java
  • Ans. 

    Memory management and hash map are important concepts in Java programming.

    • Memory management is the process of allocating and deallocating memory in a program.

    • Java uses automatic memory management through garbage collection.

    • Hash map is a data structure that stores key-value pairs and uses hashing to retrieve values efficiently.

    • Java's HashMap class implements the Map interface and provides constant-time performance for b...

  • Answered by AI
  • Q6. List all languages in sql
  • Ans. 

    List of SQL languages

    • MySQL

    • Oracle

    • PostgreSQL

    • Microsoft SQL Server

    • SQLite

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini Data Analyst Intern interview:
  • Pseudo code
  • Data Structures
  • Any programming language
  • MySQL
Interview preparation tips for other job seekers - Technical assessment consists of four rounds data structure and pseudo code, logical ability, gaming and finally behavioral questions each round is an elimination round
Once clearing it we get mail regarding tr round
Interviewer asked questions related to skills I mentioned in resume
Don't lie in resume
They can easily find out
After 20 days i got message that i got selected
Go through capgemini technical assessment video in YouTube
To get better understanding

Skills evaluated in this interview

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

I applied via Newspaper Ad and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Case Study 

Python sql powerbi excel

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

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. They asked me two das questions one is medium and second one is hard..
  • Q2. They asked me about Sliding window techniqur and gave a problem to solve
  • Q3. They ask u about ur projects

I applied via Campus Placement and was interviewed in Oct 2021. There were 3 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 - Psudo code round, verbal, gaming 

(1 Question)

  • Q1. Question from pseudo code, ds and grammar are asked
Round 3 - Technical 

(8 Questions)

  • Q1. Tell me about yourself
  • Q2. Exception handling in java
  • Ans. 

    Exception handling in Java allows for the handling of errors and exceptions that may occur during program execution.

    • Java provides try-catch blocks to handle exceptions.

    • The try block contains the code that may throw an exception.

    • The catch block catches and handles the thrown exception.

    • Multiple catch blocks can be used to handle different types of exceptions.

    • The finally block is optional and is executed regardless of whe...

  • Answered by AI
  • Q3. Memory management in java
  • Ans. 

    Memory management in Java involves automatic garbage collection and manual memory allocation.

    • Java uses automatic garbage collection to free up memory

    • Developers can manually allocate memory using the 'new' keyword

    • Java also has a 'finalize' method to clean up resources before garbage collection

    • Memory leaks can occur if objects are not properly released

  • Answered by AI
  • Q4. What is Hash map in java
  • Ans. 

    Hash map is a data structure that stores key-value pairs and allows fast retrieval of values based on keys.

    • Hash map uses hashing to store and retrieve values based on keys

    • It allows null values and null keys

    • It is not synchronized and not thread-safe

    • Example: HashMap<String, Integer> map = new HashMap<>();

    • map.put("apple", 1); int value = map.get("apple");

  • Answered by AI
  • Q5. Primary key and candidate key difference
  • Ans. 

    Primary key uniquely identifies a record while candidate key can also uniquely identify a record but may not be chosen as primary key.

    • Primary key is a column or set of columns that uniquely identifies each record in a table

    • Candidate key is a column or set of columns that can also uniquely identify each record in a table

    • A table can have multiple candidate keys but only one primary key

    • Primary key cannot have null values ...

  • Answered by AI
  • Q6. Super key and foreign key difference
  • Ans. 

    Super key is a set of attributes that uniquely identifies a record, while foreign key is a reference to a primary key in another table.

    • Super key is a combination of one or more attributes that uniquely identifies a record in a table.

    • Foreign key is a field in a table that refers to the primary key of another table.

    • Super key can have additional attributes that are not necessary for uniqueness.

    • Foreign key establishes a re...

  • Answered by AI
  • Q7. List all languages in Sql and explain
  • Ans. 

    List of SQL languages and their brief explanation

    • SQL (Structured Query Language) is a standard language for managing relational databases

    • T-SQL (Transact-SQL) is a proprietary extension of SQL used by Microsoft SQL Server

    • PL/SQL (Procedural Language/Structured Query Language) is Oracle Corporation's proprietary extension of SQL

    • MySQL is an open-source relational database management system that uses SQL

    • PostgreSQL is an ope...

  • Answered by AI
  • Q8. And some questions related to project

Interview Preparation Tips

Topics to prepare for Capgemini Data Analyst Intern interview:
  • SQL Server
  • Java
  • Python
Interview preparation tips for other job seekers - My interview process :
First I registered myself in the link provided by the college and then I got mail for attending technical assessment, It consists of four rounds namely Data Structure& Pseudo Code, logical ability,gaming round and finally Behavioral questions round each round is elimination after clearing all those rounds.I was assigned to attend my technical interview after clearing that I got a message in Capgemini what's up saying ,I am selected to be a part of Capgemini Technology Service India Limited .
Don't lie in resume
Before attending any exam see related videos in YouTube to perform better

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-
Round 1 - Coding Test 

They will ask you to code some basic coding question.

Round 2 - Technical 

(1 Question)

  • Q1. They will ask you some basic questions in sql, java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 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 test was the basics asked in every exam

Round 3 - Technical 

(2 Questions)

  • Q1. What is difference between 4stroke and 2 stroke engine?
  • Ans. 

    4-stroke engines have 4 strokes per cycle, while 2-stroke engines have 2 strokes per cycle.

    • 4-stroke engines are more fuel-efficient and produce less pollution than 2-stroke engines.

    • 2-stroke engines are simpler and lighter than 4-stroke engines.

    • 4-stroke engines have separate intake, compression, power, and exhaust strokes, while 2-stroke engines combine intake and compression, and power and exhaust strokes.

    • Examples of 4...

  • Answered by AI
  • Q2. What is a bevel gear? Give an example
  • Ans. 

    A bevel gear is a type of gear used to transmit power between shafts at an angle.

    • Bevel gears have conical shapes and are used to change the direction of rotation.

    • They are commonly used in automobiles, airplanes, and power plants.

    • An example of a bevel gear is the ring and pinion gear in a car's differential.

    • Another example is the bevel gear used in a hand drill to transmit power from the motor to the chuck.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong , be calm and you can crack the interview

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Normal introduction and basic topics

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice and good, very friendly

Trainity Interview FAQs

How many rounds are there in Trainity Data Analyst Intern interview?
Trainity interview process usually has 2 rounds. The most common rounds in the Trainity interview process are Case Study, Technical and Assignment.
What are the top questions asked in Trainity Data Analyst Intern interview?

Some of the top questions asked at the Trainity Data Analyst Intern interview -

  1. had to work on 4 real-life projects and complete them within the given deadl...read more
  2. Rolling aver...read more

Tell us how to improve this page.

Trainity Data Analyst Intern Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Trainity Data Analyst Intern Salary
based on 42 salaries
₹1 L/yr - ₹7 L/yr
19% more than the average Data Analyst Intern Salary in India
View more details

Trainity Data Analyst Intern Reviews and Ratings

based on 2 reviews

2.4/5

Rating in categories

2.4

Skill development

2.4

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

2.4

Work satisfaction

Explore 2 Reviews and Ratings
Data Analyst Intern
42 salaries
unlock blur

₹1 L/yr - ₹7 L/yr

Data Analyst Trainee
40 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Data Analyst
24 salaries
unlock blur

₹2 L/yr - ₹8.2 L/yr

Intern
4 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Trainee Analyst
3 salaries
unlock blur

₹0.6 L/yr - ₹4.6 L/yr

Explore more salaries
Compare Trainity with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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