Filter interviews by
I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.
Types of leases under Ind AS 116 include finance leases and operating leases.
Finance leases involve transferring substantially all risks and rewards of ownership to the lessee.
Operating leases do not transfer risks and rewards of ownership to the lessee.
Examples of finance leases include long-term equipment leases, while examples of operating leases include short-term office space rentals.
Debtor O/s from 3 years should be investigated thoroughly and disclosed appropriately in the audit report.
Review the aging of the debtor and assess the collectability of the outstanding amount.
Investigate the reasons for the outstanding balance, such as disputes, credit terms, or financial difficulties.
Consider the need for a provision for bad debts if the debt is deemed uncollectible.
Disclose the details of the debtor...
Steps followed while auditing Sundry Creditors
Verify the existence of the creditors by confirming with the company's records
Review the aging schedule to ensure accuracy of outstanding balances
Check for any unrecorded liabilities or duplicate payments
Confirm balances with creditors through direct communication or statements
Investigate any significant discrepancies or unusual transactions
1.What Strategy Do I Use When Auditing?
2.What is the role as a senior Auditor?
3.What are the differences between strategic control and operational control
I applied via LinkedIn and was interviewed in Aug 2022. There were 3 interview rounds.
I applied via Company Website and was interviewed before Apr 2023. There were 2 interview rounds.
Numeeucal, logical reasoning and essay on general topic questions
Double entry is a fundamental accounting concept where every transaction has equal and opposite effects on at least two accounts.
Every transaction involves at least two accounts - one account is debited and another account is credited.
Debits and credits must always balance, ensuring the accounting equation (Assets = Liabilities + Equity) remains in equilibrium.
Double entry system helps in maintaining accuracy and preve...
There are four main financial statements: balance sheet, income statement, cash flow statement, and statement of changes in equity.
Balance sheet shows a company's assets, liabilities, and equity at a specific point in time.
Income statement shows a company's revenues and expenses over a period of time.
Cash flow statement shows how cash and cash equivalents flow in and out of a company.
Statement of changes in equity show...
A vatable sale is recorded by issuing a sales invoice with VAT included and recording the VAT separately.
Issue a sales invoice with the total amount including VAT
Separately record the VAT amount charged to the customer
Ensure the VAT amount is correctly calculated based on the applicable rate
Include the VAT amount in the total sales revenue for reporting purposes
PKF International interview questions for popular designations
I applied via Job Fair and was interviewed in Aug 2024. There were 4 interview rounds.
Business related talk
How to manage employees
How to increase company
I appeared for an interview before Apr 2021.
Round duration - 40 minutes
Round difficulty - Medium
The test has 3 sections :
1. Quantitative contains 20 questions. These questions are easy to me. If u practice quant, you can easily solve it.
2. Technical contains 20 questions. Some questions are on C , C++ , java outputs. Remaining are based on DSA. If u Know all the time complexities of algorithms then it is easy . In technical they gave one DSA problem.
3. Essay: They have given one picture and then asked to write an essay by seeing the picture.
Given an undirected graph with 'V' vertices labeled from 0 to V-1 and 'E' edges. Each edge has a weight that represents the distance between two nodes 'X' and 'Y'.
...
Dijkstra's algorithm is used to find the shortest path distances from a source node to all other vertices in a graph.
Dijkstra's algorithm is a greedy algorithm that finds the shortest path from a source node to all other nodes in a graph.
It uses a priority queue to select the node with the smallest distance and relaxes its neighbors.
The algorithm maintains a distance array to keep track of the shortest distances from t...
Round duration - 60 minutes
Round difficulty - Easy
3 persons are there in panel. They are asking questions on basic concepts in subjects and some advanced concepts.
A daemon process is a background process that runs continuously to perform system tasks.
Daemon processes do not have a controlling terminal.
They typically run in the background and perform tasks such as managing hardware devices, network services, or system maintenance.
Examples of daemon processes include cron, sshd, and apache.
Daemon processes are often started during system boot and run until the system is shut down.
System calls provide a way for user-level processes to interact with the operating system kernel.
System calls allow user programs to request services from the operating system.
They provide a secure and controlled way for applications to access system resources.
System calls enable processes to perform tasks such as file operations, network communication, and process management.
Examples of system calls include open(), re
The select() system call is used in Unix-like operating systems to monitor multiple file descriptors for activity.
select() allows a program to wait for multiple I/O operations to complete on multiple file descriptors.
It takes three sets of file descriptors as arguments - readfds, writefds, and errorfds.
The function will block until an activity is detected on one of the file descriptors or until a timeout occurs.
select(...
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I appeared for an interview before Apr 2021.
Round duration - 45 minutes
Round difficulty - Medium
Technical Interview round with questions on DSA.
Given a binary tree, your task is to convert it into its mirror tree.
A binary tree is a data structure where each parent node has at most two children.
The mirror ...
Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.
Traverse the binary tree in postorder fashion and swap the left and right children of each non-leaf node.
Use recursion to solve the problem efficiently.
Remember to handle null child nodes represented by -1 in the input.
Given an array of integers, find the maximum sum of any contiguous subarray within the array.
array = [34, -50, 42, 14, -5, 86]
137
Find the maximum sum of any contiguous subarray within an array in O(N) time complexity.
Iterate through the array and keep track of the maximum sum of subarrays encountered so far
At each index, decide whether to include the current element in the subarray or start a new subarray
Update the maximum sum if a new maximum is found
Example: For array [34, -50, 42, 14, -5, 86], the maximum sum subarray is [42, 14, -5, 86] with
Round duration - 45 minutes
Round difficulty - Hard
Technical Interview round with questions on DSA.
Your task is to determine the size of the largest subtree of a given binary tree which is also a Binary Search Tree (BST).
Find the size of the largest subtree in a binary tree that is also a Binary Search Tree (BST).
Traverse the binary tree in a bottom-up manner to check if each subtree is a BST.
Keep track of the size of the largest BST subtree encountered so far.
Use the properties of a BST to determine if a subtree is a valid BST.
Consider edge cases such as empty tree or single node tree.
Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1
Given a positive integer n
, the task is to find the next smallest integer and the previous largest integer that contain the exact same nu...
Find next smallest and previous largest integers with same number of set bits as given integer.
Count the number of set bits in the given integer using bitwise operations.
For next smallest integer, find the next number with same number of set bits by iterating through numbers greater than the given integer.
For previous largest integer, find the previous number with same number of set bits by iterating through numbers sm
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 4 interviews
Interview experience
based on 21 reviews
Rating in categories
Audit Senior
6
salaries
| âš17 L/yr - âš21 L/yr |
Assistant Manager
5
salaries
| âš16.1 L/yr - âš33 L/yr |
Senior Analyst
5
salaries
| âš9 L/yr - âš21 L/yr |
Senior Auditor
5
salaries
| âš9 L/yr - âš20 L/yr |
Manager
4
salaries
| âš14 L/yr - âš20.5 L/yr |
Gallagher
Canara HSBC Life Insurance
Life Insurance Corporation of India
Bank of Baroda