Upload Button Icon Add office photos
Engaged Employer

i

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

Shriram Finance Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 7k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Shriram Finance Executive Trainee Interview Questions and Answers

Updated 6 May 2022

Shriram Finance Executive Trainee Interview Experiences

4 interviews found

Executive Trainee Interview Questions & Answers

user image Santosh Kumar Dahiya

posted on 19 Apr 2022

I applied via Company Website and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Its normal Test . Test has been 100Number 60Number Passing Marks , i got it 64 marks
Normal SsC Examination Test Syallabus You Should Passed Tha Exams

Round 2 - One-on-one 

(2 Questions)

  • Q1. About Financial Question
  • Q2. About STFC and Old Experience In Your Job Related question
Round 3 - Group Discussion 

Basic Back office Formalities ,Customer Handling and Financial Question Every Round You Should Ready It

Interview Preparation Tips

Interview preparation tips for other job seekers - Great Experiences , I only advice in Job Seekers
you should never Underestimate In Your Strength and do not loose your Confidence

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

(1 Question)

  • Q1. In this they asked basic accounting and finance questions and normal introduction.
Round 3 - Aptitude Test 

This includes basic math's science reasoning questions

Round 4 - One-on-one 

(1 Question)

  • Q1. At last they will talk about job profile, Location, pay scale etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and well dressed with nice hair and beard.

Executive Trainee Interview Questions Asked at Other Companies

asked in NTPC
Q1. If you are asked to construct a dam in Mizoram, what will be the ... read more
asked in Cheil India
Q2. 1.Which technologies I have used ?, What are my forte and weaknes ... read more
Q3. What is Amplitude modulation? Why modulation is done? Relationshi ... read more
asked in NTPC
Q4. In what situations do we prefer the use of steel structures?
Q5. 5.) Out of the above three processes what do you think will have ... read more

I applied via Company Website and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself, why Shriram, location related questions
  • Q2. How do you know about opening
  • Ans. 

    I came across the opening through the company's website and job portals.

    • I regularly check the company's website for job openings.

    • I also keep an eye on job portals like LinkedIn and Indeed.

    • I received an email notification from the company about the opening.

    • A friend or colleague informed me about the opening.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is based on your answer. Which answer you put next question is rise from there. So think before you speak, speak what you plan.

Executive Trainee Interview Questions & Answers

user image akshay malviya

posted on 22 Feb 2022

I applied via Walk-in and was interviewed before Feb 2021. 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 
Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to know Basic knowledge about Shriram group & MD name etc.

Shriram Finance interview questions for designations

 Trainee Relationship Executive

 (2)

 Trainee

 (1)

 Management Trainee

 (33)

 Internship Trainee

 (1)

 Management Engineer Trainee

 (1)

 Graduate Management Trainee

 (1)

 Executive

 (4)

 Management Trainee - Technical

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

1. Prime Factors Operations

You are given an integer n. In one operation, you can do the following

• Pick a number P such that P is prime and n is divisble by P. Assign P

Find the maximum number of operations you can perform.

Function description

Complete the primeGame function in the editor below. It has the following param

Name

Type

Description

INTEGER

The given integer n.

n

Return

The function must return an INTEGER denoting the maximum operations you can perform.

Constraints

• 1 ≤ n ≤ 10^9

Input format for debugging

• The first line contains an integer, n, denoting the initial value of n. desc

Round 2 - Technical 

(5 Questions)

  • Q1. What is Object-Oriented Programming (OOP) in Java, and can you explain concepts such as encapsulation and polymorphism with examples?
  • Ans. 

    OOP in Java is a programming paradigm that uses objects to design applications. Encapsulation is the bundling of data and methods, while polymorphism allows objects to be treated as instances of their parent class.

    • OOP in Java focuses on creating objects that interact with each other to design applications

    • Encapsulation in Java involves bundling data (variables) and methods (functions) within a class to restrict access f...

  • Answered by AI
  • Q2. What are wrapper classes in Java, and what is their purpose?
  • Ans. 

    Wrapper classes in Java are classes that allow primitive data types to be used as objects.

    • Wrapper classes provide a way to convert primitive data types into objects.

    • They are used when an object is required, such as in collections like ArrayList.

    • Examples include Integer for int, Double for double, Boolean for boolean, etc.

  • Answered by AI
  • Q3. Given an array, how can it be rotated to the left?
  • Ans. 

    To rotate an array to the left, shift all elements to the left by one position and move the first element to the end.

    • Create a temporary variable to store the first element of the array.

    • Shift all elements to the left by one position.

    • Assign the temporary variable value to the last element of the array.

  • Answered by AI
  • Q4. Can you explain the projects you have completed and provide details about your internships?
  • Ans. 

    I have completed projects in renewable energy and automation systems. I have also interned at a manufacturing company and a research institute.

    • Completed a project on designing a solar-powered irrigation system for a rural community

    • Completed a project on developing an automated warehouse management system using RFID technology

    • Interned at a manufacturing company where I worked on optimizing production processes

    • Interned a...

  • Answered by AI
  • Q5. What is the difference between an ArrayList and an array in Java?
  • Ans. 

    ArrayList is a dynamic array in Java that can grow or shrink in size, while an array has a fixed size.

    • ArrayList can dynamically resize itself, while array has a fixed size.

    • ArrayList is a class in Java, while array is a basic data structure.

    • ArrayList provides methods to add, remove, and access elements easily, while array requires manual manipulation.

    • Example: ArrayList<String> list = new ArrayList<>(); Strin...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Self introduction being asked
  • Q2. Finance related question asked

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work in small finance
  • Q2. Will you be able to work in remote areas
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Cibil explanation
  • Q2. Underwriting explanation
  • Ans. 

    Underwriting explanation involves assessing risk and determining the terms of insurance policies.

    • Underwriting involves evaluating the risk associated with insuring a person or entity.

    • Factors considered in underwriting include age, health, occupation, and lifestyle.

    • Underwriters use statistical models and historical data to predict the likelihood of a claim.

    • The underwriting process helps determine the premium and coverag

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Quantitative Aptitude, Logical Reasoning, English

Round 3 - One-on-one 

(3 Questions)

  • Q1. Self introduction
  • Q2. Family Background
  • Q3. Things Related to Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Bold and Speak Confident
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 

Aptitude test was tough to get and I passed it.other one it was little tricky

Round 3 - HR 

(1 Question)

  • Q1. Personal profile details and qualifications questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company and revied

Shriram Finance Interview FAQs

How many rounds are there in Shriram Finance Executive Trainee interview?
Shriram Finance interview process usually has 3-4 rounds. The most common rounds in the Shriram Finance interview process are Aptitude Test, Resume Shortlist and HR.
What are the top questions asked in Shriram Finance Executive Trainee interview?

Some of the top questions asked at the Shriram Finance Executive Trainee interview -

  1. How do you know about open...read more
  2. In this they asked basic accounting and finance questions and normal introducti...read more
  3. At last they will talk about job profile, Location, pay scale ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Muthoot Fincorp Interview Questions
4.5
 • 490 Interviews
Bajaj Finance Interview Questions
4.0
 • 295 Interviews
Muthoot Finance Interview Questions
3.6
 • 249 Interviews
IIFL Finance Interview Questions
4.0
 • 243 Interviews
L&T Finance Interview Questions
3.9
 • 149 Interviews
View all
Shriram Finance Executive Trainee Salary
based on 31 salaries
₹1.8 L/yr - ₹3.1 L/yr
46% less than the average Executive Trainee Salary in India
View more details

Shriram Finance Executive Trainee Reviews and Ratings

based on 14 reviews

3.9/5

Rating in categories

3.6

Skill development

3.3

Work-life balance

3.8

Salary

4.3

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 14 Reviews and Ratings
Relationship Executive
790 salaries
unlock blur

₹1.4 L/yr - ₹4 L/yr

Junior Executive
412 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Assistant Manager
385 salaries
unlock blur

₹0.7 L/yr - ₹6.3 L/yr

Executive Assistant
342 salaries
unlock blur

₹1.1 L/yr - ₹3.4 L/yr

Executive
275 salaries
unlock blur

₹1.5 L/yr - ₹3.7 L/yr

Explore more salaries
Compare Shriram Finance with

Bajaj Finance

4.0
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Kotak Mahindra Bank

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