Filter interviews by
Material misstatement refers to errors or omissions in financial statements that could potentially impact decision-making by users of the statements.
Material misstatement can include errors in recording transactions, misapplication of accounting principles, or intentional fraud.
These misstatements can have a significant impact on the financial health of a company and may lead to legal consequences.
Auditors are res...
Ind AS 115 is a revenue recognition standard that outlines the principles for recognizing revenue from contracts with customers.
Ind AS 115 is based on the core principle that revenue should be recognized to depict the transfer of promised goods or services to customers in an amount that reflects the consideration to which the entity expects to be entitled.
It replaces the existing revenue recognition guidance in In...
I have extensive experience in analyzing balance sheets to assess financial health and make strategic decisions.
Utilized financial ratios like current ratio and debt-to-equity ratio to evaluate liquidity and leverage
Identified trends in assets, liabilities, and equity to understand financial performance over time
Performed variance analysis to compare actual results with budgeted or forecasted figures
Used balance s...
Tax audit is required if turnover exceeds specified limit or income is below prescribed percentage of turnover.
Tax audit is required if the turnover of a business exceeds Rs. 1 crore in case of a business and Rs. 50 lakhs in case of a profession.
Tax audit is also required if the income of a business is less than 8% of the turnover and in case of a profession, if the income is less than 50% of the gross receipts.
Ta...
Tax rules for taxation department
Taxation department is responsible for enforcing tax laws and collecting taxes
Tax rules vary depending on the type of tax being collected (income tax, sales tax, property tax, etc.)
Tax rules also vary by jurisdiction (federal, state, local)
Taxation department must stay up-to-date on changes to tax laws and regulations
Penalties may be imposed for non-compliance with tax rules
AS application is used in company audits to ensure compliance with accounting standards.
AS application is a tool used to check compliance with accounting standards during audits.
It helps in identifying any discrepancies or non-compliance with accounting standards.
AS application can be used to generate reports and recommendations for corrective actions.
Examples of accounting standards include GAAP, IFRS, and SOX.
AS...
General MCQ test based on ca inter syllabus
Ind AS 115 is a revenue recognition standard that outlines the principles for recognizing revenue from contracts with customers.
Ind AS 115 is based on the core principle that revenue should be recognized to depict the transfer of promised goods or services to customers in an amount that reflects the consideration to which the entity expects to be entitled.
It replaces the existing revenue recognition guidance in Ind AS ...
Material misstatement refers to errors or omissions in financial statements that could potentially impact decision-making by users of the statements.
Material misstatement can include errors in recording transactions, misapplication of accounting principles, or intentional fraud.
These misstatements can have a significant impact on the financial health of a company and may lead to legal consequences.
Auditors are responsi...
AS application is used in company audits to ensure compliance with accounting standards.
AS application is a tool used to check compliance with accounting standards during audits.
It helps in identifying any discrepancies or non-compliance with accounting standards.
AS application can be used to generate reports and recommendations for corrective actions.
Examples of accounting standards include GAAP, IFRS, and SOX.
AS appl...
Tax rules for taxation department
Taxation department is responsible for enforcing tax laws and collecting taxes
Tax rules vary depending on the type of tax being collected (income tax, sales tax, property tax, etc.)
Tax rules also vary by jurisdiction (federal, state, local)
Taxation department must stay up-to-date on changes to tax laws and regulations
Penalties may be imposed for non-compliance with tax rules
I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.
Recent Company Audit amendments include changes in financial reporting standards and regulations.
Changes in accounting standards such as ASC 606 for revenue recognition
Updates in auditing regulations like PCAOB inspection reports
Revisions in internal control requirements under SOX compliance
Impact of COVID-19 on audit procedures and reporting
I have extensive experience in analyzing balance sheets to assess financial health and make strategic decisions.
Utilized financial ratios like current ratio and debt-to-equity ratio to evaluate liquidity and leverage
Identified trends in assets, liabilities, and equity to understand financial performance over time
Performed variance analysis to compare actual results with budgeted or forecasted figures
Used balance sheet ...
I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.
Aptitude test was regarding the Taxation and Basic General Knowledge Questions
I applied via Company Website and was interviewed before Feb 2023. There were 2 interview rounds.
GK and technical questions
I applied via Approached by Company and was interviewed before Sep 2022. There were 2 interview rounds.
Tax audit is required if turnover exceeds specified limit or income is below prescribed percentage of turnover.
Tax audit is required if the turnover of a business exceeds Rs. 1 crore in case of a business and Rs. 50 lakhs in case of a profession.
Tax audit is also required if the income of a business is less than 8% of the turnover and in case of a profession, if the income is less than 50% of the gross receipts.
Tax aud...
Top trending discussions
Queue can be implemented using two stacks by maintaining the order of elements in the stacks.
Create two stacks, let's call them stack1 and stack2
When an element is enqueued, push it to stack1
When an element is dequeued, pop all elements from stack1 and push them to stack2
Pop the top element from stack2 and return it as the dequeued element
If stack2 is empty, repeat step 3
To get the front element of the queue, peek the ...
Left join returns all records from left table and matching records from right table. Full outer join returns all records from both tables.
Left join is used to combine two tables based on a common column.
In left join, all records from the left table are returned along with matching records from the right table.
If there is no match in the right table, NULL values are returned.
Example: SELECT * FROM table1 LEFT JOIN table...
Magic functions are special methods in PHP that start with __. Autoloading is a way to automatically load classes.
Magic functions are used to handle certain events in PHP, such as object creation or property access.
Autoloading allows PHP to automatically load classes when they are needed, without requiring manual includes.
Magic functions can be used in conjunction with autoloading to dynamically load classes or handle ...
Given three sorted arrays, find common elements.
Create three pointers to traverse each array
Compare the elements at the pointers and move the pointer of the smallest element
If all pointers point to the same element, add it to the result and move all pointers
Repeat until any pointer reaches the end of its array
Check if a number is a power of 2 or not.
A power of 2 has only one bit set in its binary representation.
Use bitwise AND operator to check if the number is a power of 2.
If n is a power of 2, then n & (n-1) will be 0.
I applied via Referral
I haven't contributed to open source due to time constraints and focusing on personal projects and learning new technologies.
Time Constraints: Balancing work, personal projects, and learning new technologies has limited my availability.
Focus on Personal Projects: I've been dedicated to developing my own applications, such as a task management tool.
Learning New Technologies: I prioritized mastering frameworks like React...
Event bubbling is the propagation of an event from the innermost child element to the outermost parent element.
Events triggered on a child element will also trigger on its parent elements
The event travels up the DOM tree until it reaches the document object
Can be stopped using event.stopPropagation()
Can be useful for event delegation
The .on('click',function() is a more flexible method than .click(function())
The .on() method can handle multiple events and selectors
The .click() method can only handle one event and one selector
The .on() method can also handle dynamically added elements
The .click() method cannot handle dynamically added elements
Function to check if two strings are anagram or not
Create two character arrays from the strings
Sort the arrays
Compare the sorted arrays
Function to determine the order of integers in an array.
Check first and last element to determine if increasing or decreasing
Check for inflection point to determine if order changes
Return order type as string
Optimize images, minify code, reduce HTTP requests, use caching, and lazy loading.
Optimize images using compression and appropriate file formats
Minify code to reduce file size and improve load times
Reduce HTTP requests by combining files and using sprites
Use caching to store frequently accessed data locally
Implement lazy loading to defer loading of non-critical resources
Design a database schema for a movie site with user ratings and recommendations.
Create tables for movies, users, ratings, and recommendations
Use foreign keys to link tables
Include columns for movie genre and user watch history
Algorithm for recommendations can use user watch history and ratings to suggest similar movies
Function to simulate dice roll with equal probability without using random function
Use a toss function that returns either 0 or 1 with equal probability
Call the toss function 3 times and convert the result to a binary number
If the binary number is greater than 0 and less than or equal to 6, return it
If the binary number is greater than 6, repeat the process
Query to fetch duplicate email from table
Use GROUP BY and HAVING clause to filter out duplicates
SELECT email, COUNT(*) FROM table_name GROUP BY email HAVING COUNT(*) > 1;
This will return all the duplicate emails in the table
based on 8 interview experiences
Difficulty level
Duration
based on 20 reviews
Rating in categories
Senior Executive
28
salaries
| ₹6 L/yr - ₹10.4 L/yr |
Assistant Manager
21
salaries
| ₹7.5 L/yr - ₹15 L/yr |
Article Assistant
15
salaries
| ₹1 L/yr - ₹2 L/yr |
Audit Executive
5
salaries
| ₹2 L/yr - ₹5.8 L/yr |
Manager
4
salaries
| ₹15 L/yr - ₹18.5 L/yr |
Amazon Sellers Services
Primus Global Technologies
GAMMON INDIA
Practo