Upload Button Icon Add office photos
Engaged Employer

i

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

Crisil Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Crisil Interview Questions and Answers

Updated 20 Jun 2025
Popular Designations

Crisil Interview Experiences

202 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What are the most important skills or qualifications for this role?
  • Ans. 

    Key skills for a Field Coordinator include communication, organization, problem-solving, and adaptability to ensure project success.

    • Strong communication skills: Ability to convey information clearly to team members and stakeholders, ensuring everyone is aligned.

    • Organizational skills: Managing multiple tasks and schedules effectively, such as coordinating field visits and resource allocation.

    • Problem-solving abilities: Q...

  • Answered by AI
  • Q3. Are there any specific challenges or projects this person would be working on?
  • Ans. 

    The Field Coordinator will tackle diverse challenges, including project management, stakeholder engagement, and resource allocation.

    • Managing logistics for field operations, such as coordinating transportation for team members and supplies.

    • Engaging with local communities to ensure project acceptance and support, exemplified by organizing community meetings.

    • Monitoring project progress and reporting on key performance ind...

  • Answered by AI
  • Q4. What is the company culture like?
  • Ans. 

    The company culture is collaborative, supportive, and focused on innovation and employee well-being.

    • Team-oriented environment: Employees often collaborate on projects, sharing ideas and resources.

    • Open communication: Regular meetings and feedback sessions encourage transparency and inclusivity.

    • Focus on professional development: The company offers training programs and workshops to enhance skills.

    • Work-life balance: Flexi...

  • Answered by AI
  • Q5. Behavioral Questions: To understand past performance and predict future behavior.
  • Q6. Situational Questions: To see how candidates would handle hypothetical scenarios.
  • Q7. Motivational Questions: To understand their drive and career aspirations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear job seekers I would like to says that I. Before You Apply: Laying the Groundwork * Self-Assessment & Career Clarity: * Know Thyself: What are your strengths, weaknesses, skills, passions, and values? What kind of work truly energizes you? * Define Your Ideal Role: What industry, company size, culture, and type of work are you looking for? This clarity helps you target your search. * Identify Your Non-Negotiables: What are the absolute must-haves (e.g., remote work, specific salary range, work-life balance) and nice-to-haves? * Research, Research, Research
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jan 2025.

Round 1 - Case Study 

Basic case study on how you look at markets

Round 2 - Technical 

(4 Questions)

  • Q1. What is ROE ROCE
  • Ans. 

    ROE stands for Return on Equity and ROCE stands for Return on Capital Employed. They are financial ratios used to measure a company's profitability and efficiency.

    • ROE is calculated by dividing net income by shareholders' equity. It measures how effectively a company is using shareholders' equity to generate profit.

    • ROCE is calculated by dividing EBIT (earnings before interest and taxes) by total capital employed. It mea...

  • Answered by AI
  • Q2. Calculation of beta
  • Ans. 

    Beta is a measure of a stock's volatility in relation to the market.

    • Beta is calculated by regressing the stock's returns against the market returns.

    • A beta of 1 indicates the stock moves in line with the market.

    • A beta greater than 1 means the stock is more volatile than the market.

    • A beta less than 1 means the stock is less volatile than the market.

    • Beta can be calculated using historical data over a specific time period.

  • Answered by AI
  • Q3. Why is this company not performing well?
  • Ans. 

    The company is facing declining sales due to increased competition and outdated product offerings.

    • Increased competition in the market leading to loss of market share

    • Outdated product offerings compared to competitors

    • Poor marketing strategies affecting brand visibility

    • Lack of innovation in product development

  • Answered by AI
  • Q4. What are KPIs? What are KPIs for this company
  • Ans. 

    KPIs are Key Performance Indicators used to measure the success of a company's operations.

    • KPIs are specific metrics used to evaluate the performance of a company in achieving its strategic objectives.

    • Examples of KPIs for a company may include revenue growth rate, profit margin, customer acquisition cost, and customer retention rate.

    • KPIs should be relevant, measurable, and aligned with the company's goals.

    • Regularly trac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The final round is usually the toughest. First two rounds are good and easy.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is a thread pool executor and how does it work?
  • Ans. 

    A thread pool executor manages a pool of threads for executing tasks, improving performance and resource management.

    • A thread pool executor reuses a fixed number of threads to execute multiple tasks, reducing overhead.

    • It helps in managing system resources efficiently by limiting the number of concurrent threads.

    • Example: In Java, you can use `Executors.newFixedThreadPool(int nThreads)` to create a thread pool.

    • Tasks submi...

  • Answered by AI
  • Q2. What is the difference between the local thread, run method, and start method in threading?
  • Ans. 

    Local threads manage execution, while run() defines behavior and start() initiates the thread's execution.

    • Local Thread: A thread that is created and managed within a specific context or scope.

    • run() Method: Contains the code that defines the thread's behavior; it is executed when the thread runs.

    • start() Method: Initiates the thread's execution by calling the run() method in a new thread context.

    • Example of run(): public ...

  • Answered by AI
  • Q3. What is the difference between a Concurrent HashMap and a HashMap?
  • Ans. 

    ConcurrentHashMap allows concurrent access by multiple threads, while HashMap is not thread-safe.

    • Thread Safety: ConcurrentHashMap is designed for concurrent access, while HashMap is not thread-safe.

    • Performance: ConcurrentHashMap provides better performance in multi-threaded environments due to its segmented locking mechanism.

    • Null Values: HashMap allows one null key and multiple null values, whereas ConcurrentHashMap do...

  • Answered by AI
  • Q4. How does a TreeSet work with Employee objects and what are the methods used for sorting?
  • Ans. 

    TreeSet stores Employee objects in a sorted manner using natural ordering or a custom comparator.

    • TreeSet implements the SortedSet interface, maintaining elements in a sorted order.

    • Employee objects must implement Comparable or a Comparator must be provided for sorting.

    • Example of Comparable: public class Employee implements Comparable<Employee> { ... }

    • Example of Comparator: TreeSet<Employee> set = new TreeSet...

  • Answered by AI
  • Q5. How does a HashMap store an Employee object, and what is the effect of implementing or not implementing the hashCode and equals methods for storing duplicate Employee objects?
  • Ans. 

    HashMap uses hashCode and equals to manage Employee objects, affecting duplicates and retrieval.

    • HashMap stores key-value pairs, using the key's hashCode to determine the bucket location.

    • If Employee class does not override hashCode and equals, default methods from Object are used.

    • Default hashCode may lead to poor distribution, causing collisions and performance issues.

    • Without proper equals implementation, duplicate Empl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The HR team is not responding regarding the matching of the CTC.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. @transactional
Round 2 - Technical 

(3 Questions)

  • Q1. Sql questions based on queries and scenarios
  • Q2. Microservices architecture
  • Q3. Design patterns
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What communication methods do you use to interact with clients in your job role?
  • Ans. 

    I utilize various communication methods to effectively engage with clients, ensuring clarity and responsiveness in our interactions.

    • Email: I send detailed reports and updates, ensuring clients have all necessary information.

    • Phone Calls: I conduct regular check-ins to discuss market trends and address client concerns directly.

    • Video Conferencing: I use platforms like Zoom for in-depth discussions and presentations, allow...

  • Answered by AI
  • Q2. What are the key metrics used in the TMT sector, and can you explain their significance?
  • Ans. 

    Key metrics in the TMT sector include revenue growth, ARPU, churn rate, and EBITDA, crucial for assessing company performance.

    • Revenue Growth: Indicates the company's ability to increase sales over time, essential for assessing market demand.

    • Average Revenue Per User (ARPU): Measures revenue generated per user, important for understanding profitability in subscription models.

    • Churn Rate: The percentage of customers lost o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In addition to technical knowledge, it is essential to focus on communication skills as well.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is in SHL Platform and you can clear it easily

Round 2 - Technical 

(2 Questions)

  • Q1. Training based question.
  • Q2. Total production of coal in india.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just give answers freely

Consultant Interview Questions & Answers

user image Anonymous

posted on 20 Nov 2024

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

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

Round 1 - Aptitude Test 

Analytical, Language, Accounting, Excel and Case Scenario

Round 2 - Technical 

(2 Questions)

  • Q1. Why consultant?
  • Q2. How will you consult a clint who wants to acquire another company?
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Topic - general affairs swiggy vs zomato

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yoursleg
  • Q2. Strenth weakness , hobbies, credit questions
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Related to financial evaluation
  • Q2. Financial Analysis and financial modeling
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Top 50 java interview questions on internet, oops, solid, collections, arraylist, LL, hashmap, strings
  • Q2. Deadlocks, multithreading, design pattern, spring boot, hibernate, miscroservice communications, bean scopes, unit testings
  • Q3. Observable vs promise, angular directives, angular versions features
  • Q4. Dsa questions on array like {1,2,3,3,4,2,1}, create possible array with unique numbers ans: [1,2,3,4], [1,2,3],[2,3] etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - CRISIL have very low budget but because of brand i gave the interview. Its 12lpa with 18% var including. Interviewer was very rude and he was in very rush, his baby was crying in background, he was on call, he asked same questions twice. asked to write code on notepad not even IDE, and just quited on face, rejected. the questions were so simple.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Crisil?
Ask anonymously on communities.

Crisil Interview FAQs

How many rounds are there in Crisil interview?
Crisil interview process usually has 2-3 rounds. The most common rounds in the Crisil interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Crisil interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Crisil. The most common topics and skills that interviewers at Crisil expect are Financial Analysis, Communication Skills, Excel, Credit Analysis and Finance.
What are the top questions asked in Crisil interview?

Some of the top questions asked at the Crisil interview -

  1. There was one case study question asked - we want to built all together new atm...read more
  2. Tell us how you will value a company in hotel spa...read more
  3. 1. Difference between shallow copy and deep copy 2. How can you merge two dataf...read more
What are the most common questions asked in Crisil HR round?

The most common HR questions asked in Crisil interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What is your family backgrou...read more
How long is the Crisil interview process?

The duration of Crisil interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 135 interview experiences

Difficulty level

Easy 14%
Moderate 76%
Hard 10%

Duration

Less than 2 weeks 70%
2-4 weeks 20%
4-6 weeks 6%
6-8 weeks 1%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

IKS Health Interview Questions
3.6
 • 241 Interviews
Mu Sigma Interview Questions
2.6
 • 240 Interviews
Indegene Interview Questions
3.4
 • 158 Interviews
Nielsen Interview Questions
3.7
 • 133 Interviews
Netscribes Interview Questions
2.7
 • 90 Interviews
Clarivate Interview Questions
3.7
 • 87 Interviews
Cotiviti Interview Questions
3.7
 • 82 Interviews
View all

Crisil Reviews and Ratings

based on 1.7k reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.0

Salary

3.7

Job security

3.7

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 1.7k Reviews and Ratings
Executive off Roll

Pune

1-2 Yrs

₹ 2-4.5 LPA

AI and ML - Associate Director, Corporate Technology

Mumbai,

Pune

12-15 Yrs

₹ 20.9-57.6 LPA

Project Lead

Mumbai

5-9 Yrs

Not Disclosed

Explore more jobs
Research Analyst
1k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Senior Research Analyst
860 salaries
unlock blur

₹6 L/yr - ₹26 L/yr

Analyst
529 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Credit Analyst
469 salaries
unlock blur

₹9 L/yr - ₹16 L/yr

Manager
467 salaries
unlock blur

₹19.1 L/yr - ₹34.1 L/yr

Explore more salaries
Compare Crisil with

IKS Health

3.6
Compare

Indegene

3.4
Compare

Acuity Knowledge Partners

3.3
Compare

Baroda Global Shared Services

4.0
Compare
write
Share an Interview