Upload Button Icon Add office photos

Filter interviews by

Chaturvedi & Co Intern Interview Questions and Answers

Updated 9 Jun 2023

Chaturvedi & Co Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. 1.Why you want to join us. 2.what you goals. 3.after qualification which profile you want to grow.
  • Ans. 1. its top 10 companies in CA articleship. 2. To became and CA and practice. 3. Finance and taxation
  • Answered Anonymously
  • Q2. 4. ready to move abroad. 5. salary expectation

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. What do you know about GAO TEK?
Round 2 - HR 

(2 Questions)

  • Q1. Why did you apply for this position?
  • Q2. Can you tell me your strength and weaknesses?
  • Ans. 

    My strength is my ability to work well in a team and my weakness is my tendency to be overly critical of my own work.

    • Strength: Strong team player, able to collaborate effectively with others

    • Weakness: Tendency to be overly critical of my own work, which can sometimes slow down progress

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is this, before applying for a job post with any organization do your research about what the organization is into, the services they render, their vision and mission statement, their workforce, and their expectations from you. Ask yourself why you want to work with the organization. If you can answer all these questions, then successfully scaling the interview process would be a piece of cake.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Very easy level, GD amond 20-21 people, where they just test your english

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about previous internships and ML algorithms
  • Q2. What is LLM? What is transfer learning?
  • Ans. 

    LLM stands for Large Language Model. Transfer learning is a machine learning technique where a model trained on one task is repurposed for another task.

    • LLM refers to large language models that are trained on vast amounts of text data to understand and generate human language.

    • Transfer learning involves taking a pre-trained model and fine-tuning it on a new dataset or task to improve performance.

    • For example, a model trai...

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

ABCD user image Anonymous

posted on 20 Mar 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Online assignment including natural tasks and policies

Round 2 - Group Discussion 

Better and perception

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

I applied via Referral and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is marketing and what are tools of marketing
  • Ans. 

    Marketing is the process of promoting and selling products or services. Tools of marketing include advertising, public relations, and market research.

    • Marketing involves identifying customer needs and wants, and creating products or services to meet those needs

    • Marketing also involves promoting and selling those products or services through various channels

    • Tools of marketing include advertising, public relations, sales p...

  • Answered by AI
  • Q2. To introduce yourself, and interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Always do little bit of research of the kind of job you are applying .. and what work and skills are required for it.

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

It was just after the first round in the morning

  • Q1. Huffman Coding

    You are given an array 'ARR' of Integers having 'N' elements. The array contains an encoded message. For each index 'i', 'ARR[i]' denotes the frequency of the...

  • Ans. Optimized Solution

    We will be dividing our solution into three parts for better understanding. We will use a Min-Heap to build a binary tree and then traverse the binary tree to assign Huffman codes to each element.

     

     

    1. Understanding the need of using a Min-Heap 

    A basic idea would be to sort the frequency array and repeatedly give the smallest not used code to the character having maximum frequency. This ide...

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

1 hr after the second round got over and results were announced in the morning.

  • Q1. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

10 A.M in the morning.
The interviewers were very knowledgeable and humble

  • Q1. Unique Element In Sorted Array

    Nobita wants to impress Shizuka by guessing her lucky number.

    Shizuka gave Nobita a sorted list of ‘N’ numbers such that every number occurred twice in the list except Shiz...

  • Ans. 

    Step 1 : I told them brute force approach.
    Step 2 : Told about bitmasking approach.
    Step 3 : I them them Binary Search approach(the most optiimsed one)
    Step 4 : They told me to code it and run test cases.

  • Answered by CodingNinjas
  • Q2. Print Nodes at Distance K From a Given Node

    You are given an arbitrary binary tree, a node of the tree, and an integer 'K'. You need to find all such nodes which have a distance K from the given no...

  • Ans. 

    Step 1 : I told them brute force approach.
    Step 2 : Told them about Binary tree approach
    Step 3 : They told me to code it and dry run and run test cases.

  • Answered by CodingNinjas
Round 4 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was after the first technical interview round.
Got a mail for the second interview round .
Timings approx 12 AM

  • Q1. Remove BST keys outside the given range

    Given a Binary Search Tree (BST) and a range [min, max], remove all keys which are outside the given range. The modified tree should also be BST.

    Input format:

    Th...
  • Ans. 

    Step 1 : Brute force array conversion approach.
    Step 2 : Delete a node in a tree approach.
    Step 3 : Optimised the above approach to delete only specified nodes to achieve the answer
    Step 4 : Coded the approach and ran the test cases provided

  • Answered by CodingNinjas
  • Q2. Inorder Sucessor

    You have been given an arbitrary binary tree and a node of this tree. You need to find the inorder successor of this node in the tree.

    The inorder successor of a node in a binary tree is...

  • Ans. Inorder Traversal
    • The fact that all the data values are unique makes the solution look very intuitive.
    • We can simply store the inorder traversal of the given tree in some data structure, most probably arrays, and find the element present after the given node in the array.
    • For inorder traversal, we can write a simple recursion code, where for every node, its left subtree is visited recursively, and then the node is visited...
  • Answered by CodingNinjas
Round 5 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

Got a call from Hr after clearance of the first 2 rounds.
Timing were 5:30 P.M

  • Q1. Basic HR Questions

    She asked me about my hobbies, strength, weaknesses, why i want to join.

  • Ans. 

    Tip 1 : Donot lie in front of HR's
    Tip 2 : Keep your answer short and simple
    Tip 3 : Have a good insight about the organisation

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteria7+ CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - DBMS, OS, OOPS, Data Structure, Array, String, Bit manipulation, BInary Search, Sorting, Number Theory Linked List, Trees, Graph, DPTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus the most on Data Structure topics and practice atleast 300 medium level ques (min 2 approaches for each qs)
Tip 2 : Have a strong grip on Core Subjects i.e OS, DBMS, OOPS, CN, System Design(for big mnc's)
Tip 3 : Learn any good development framework and make min 2 good projects with that and try to do any 1 or 2 min intern to put it in your resume.

Application resume tips for other job seekers

Tip 1 : Keep it short and to the point
Tip 2 : Have good knowledge of every single thing you mentioned there.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 

It was so easy. Just a basic questions.

Round 3 - Group Discussion 

Was bit nervous but somehow managed to clear.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Why you choose this job?
  • Q2. Do you think you're really fit for this job?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before you attend the interview. Bit difficult but can crack it for sure.

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is OO?
  • Ans. 

    OO stands for Object-Oriented. It is a programming paradigm that focuses on objects and their interactions.

    • OO is based on the concept of classes and objects.

    • It emphasizes encapsulation, inheritance, and polymorphism.

    • OO languages include Java, C++, Python, and Ruby.

    • OO design patterns are used to solve common problems in software development.

  • Answered by AI
  • Q2. Explain Bug/defect life cycle.
  • Ans. 

    Bug/defect life cycle is a process of identifying, reporting, prioritizing, fixing, and verifying software defects.

    • Defect identification

    • Defect reporting

    • Defect prioritization

    • Defect fixing

    • Defect verification

  • Answered by AI
  • Q3. Explan your previous project/work
  • Q4. What is the difference between smoke & sanity testing?
  • Ans. 

    Smoke testing is a quick and shallow test to check basic functionality, while sanity testing is a more thorough test to ensure system stability.

    • Smoke testing is done to check if the critical functionalities of the system are working or not.

    • Sanity testing is done to check if the system is stable enough to proceed with further testing.

    • Smoke testing is usually done after a build is deployed, while sanity testing is done a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the basics of testing & Java concepts.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about self
  • Q2. What do you know about our company
  • Q3. Why do you want this role
  • Q4. What is your greatest strength?
  • Q5. What is greatest weakness?
  • Ans. 

    My greatest weakness is my tendency to take on too many tasks at once, leading to occasional overwhelm.

    • Tendency to take on too many tasks at once

    • Occasional overwhelm

    • Working on prioritizing tasks and delegating when necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - it is very easy to interview and learn many things

Intern Interview Questions & Answers

ABCD user image Anonymous

posted on 13 Jan 2023

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

I applied via Referral and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic math with more weitage on arithmatic

Round 2 - Group Discussion 

Current affairs topic on ukraine russia war

Interview Preparation Tips

Interview preparation tips for other job seekers - Feel free and attend without pressure like you are going to be hiered

Chaturvedi & Co Interview FAQs

How many rounds are there in Chaturvedi & Co Intern interview?
Chaturvedi & Co interview process usually has 2 rounds. The most common rounds in the Chaturvedi & Co interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Chaturvedi & Co Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Audit Manager
14 salaries
unlock blur

₹2.5 L/yr - ₹10.2 L/yr

Audit Assistant
14 salaries
unlock blur

₹1.1 L/yr - ₹3.6 L/yr

Audit Executive
9 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Article Assistant
7 salaries
unlock blur

₹0.5 L/yr - ₹2 L/yr

Assistant Manager - Audit
6 salaries
unlock blur

₹4 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Chaturvedi & Co with

Singhania & Partners

2.7
Compare

Khaitan & Co

3.9
Compare

Luthra & Luthra Law Offices

3.4
Compare

Trilegal

4.0
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