Upload Button Icon Add office photos

Filter interviews by

Vasan & Sampath Interview Questions and Answers

Updated 21 Jul 2024

Vasan & Sampath Interview Experiences

Popular Designations

3 interviews found

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. AS11 write down entries for monetary and non monetary transactions
  • Ans. 

    AS11 requires entries for monetary and non-monetary transactions.

    • For monetary transactions, record the exchange rate at the transaction date.

    • For non-monetary transactions, record the fair value of the asset given or received.

    • Monetary transactions are recorded at the exchange rate on the transaction date.

    • Non-monetary transactions are recorded at the fair value of the asset given or received.

    • If the fair value cannot be d...

  • Answered by AI
  • Q2. As 9 revenue recognition related question
Round 2 - One-on-one 

(1 Question)

  • Q1. How did u qualofy ur group1

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident throught the interview and speak with utmost clarity

CA Articleship Interview Questions asked at other Companies

Q1. What are the headlines of writting article's memory?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basically, questions on SA and AS and turnover limits

Round 2 - Group Discussion 

GD on role CA in start up

Round 3 - HR 

(2 Questions)

  • Q1. What did you learn from your hobbies
  • Q2. Why do you want to join Vasan and Sampath
Round 4 - Technical 

(2 Questions)

  • Q1. Could you please Tell me the GST rate on Milk
  • Ans. 

    GST rate on milk is 0% as it is considered a basic necessity.

    • GST rate on milk is 0% as it falls under the exempted category.

    • Milk, buttermilk, curd, and cream are exempt from GST.

    • Processed milk products like cheese and butter attract GST at varying rates.

    • GST rates on milk products may vary based on their processing and packaging.

  • Answered by AI
  • Q2. Can you please explain 3 heads of CARO 2020
  • Ans. 

    CARO 2020 includes reporting requirements related to internal financial controls, statutory dues, and default in repayment of loans.

    • Internal financial controls: Companies are required to report on the adequacy and operating effectiveness of internal financial controls.

    • Statutory dues: Companies must report on the regularity of payment of statutory dues and the extent of arrears.

    • Default in repayment of loans: Companies m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Especially in GD round be confident in what you say, maintain eye contact with your peers. If you don't know tell that you'll get to know about it and don't bluff

CA Article Assistant Interview Questions asked at other Companies

Q1. What is the limit by law in respect of mandatory Internal audit.
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Please study important AS & SAs atleast
  • Q2. Now go study or ask someone on linkedin

Interview Preparation Tips

Interview preparation tips for other job seekers - You'll learn alot but you have to keep up with the pace.

Article Assistant Interview Questions asked at other Companies

Q1. What is the difference between emphasis on matter paragraph and key audit matter.
View answer (1)

Jobs at Vasan & Sampath

View all

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Vasan & Sampath Interview FAQs

How many rounds are there in Vasan & Sampath interview?
Vasan & Sampath interview process usually has 2-3 rounds. The most common rounds in the Vasan & Sampath interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for Vasan & Sampath 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 Vasan & Sampath. The most common topics and skills that interviewers at Vasan & Sampath expect are Auditing, Accounting, Training, ERP and Internal Audit.
What are the top questions asked in Vasan & Sampath interview?

Some of the top questions asked at the Vasan & Sampath interview -

  1. AS11 write down entries for monetary and non monetary transacti...read more
  2. Can you please explain 3 heads of CARO 2...read more
  3. Could you please Tell me the GST rate on M...read more

Tell us how to improve this page.

Vasan & Sampath Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Maruti Suzuki Interview Questions
4.2
 • 601 Interviews
Cipla Interview Questions
4.1
 • 483 Interviews
Apollo Hospitals Interview Questions
4.1
 • 342 Interviews
Fortis Healthcare Interview Questions
4.0
 • 126 Interviews
View all

Vasan & Sampath Reviews and Ratings

based on 9 reviews

4.4/5

Rating in categories

5.0

Skill development

2.8

Work-life balance

2.6

Salary

4.1

Job security

3.6

Company culture

3.0

Promotions

4.4

Work satisfaction

Explore 9 Reviews and Ratings
Audit Manager

Bangalore / Bengaluru

0-6 Yrs

Not Disclosed

Explore more jobs
Article Assistant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accountant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Vasan & Sampath with

Apollo Hospitals

4.1
Compare

Fortis Healthcare

4.0
Compare

DRJ & CO

5.0
Compare

Cipla

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