Filter interviews by
I applied via Referral and was interviewed in Dec 2022. There were 4 interview rounds.
Accrual concept is an accounting method where revenue and expenses are recorded when they are earned or incurred, regardless of when cash is exchanged.
Revenue is recognized when it is earned, not necessarily when cash is received.
Expenses are recognized when they are incurred, not necessarily when they are paid.
Accrual accounting provides a more accurate picture of a company's financial position.
Example: A company prov...
Depreciation is the allocation of the cost of an asset over its useful life. Types include straight-line, double declining balance, and units of production.
Depreciation is a method of allocating the cost of an asset over its useful life
Straight-line depreciation evenly spreads the cost over the useful life of the asset
Double declining balance method accelerates depreciation in the early years of an asset's life
Units of...
Accrual concept is a fundamental accounting principle where revenues and expenses are recognized when they are incurred, regardless of when cash is exchanged.
Revenue is recorded when it is earned, not necessarily when cash is received.
Expenses are recognized when they are incurred, not necessarily when they are paid.
Accrual accounting provides a more accurate representation of a company's financial position and perform...
Matching concept is an accounting principle that requires expenses to be matched with revenues in the same accounting period.
Expenses should be recognized in the same period as the revenues they helped generate.
It ensures that financial statements accurately reflect the results of operations for a specific period.
For example, if a company sells goods in December but doesn't receive payment until January, the revenue sh...
I have extensive experience in financial reporting, budgeting, and tax preparation across various industries.
Managed monthly financial statements for a mid-sized manufacturing company, ensuring accuracy and compliance with GAAP.
Prepared annual budgets and forecasts, collaborating with department heads to align financial goals with operational plans.
Conducted audits for small businesses, identifying discrepancies and re...
No, debits do not always increase every account.
Debits increase assets and expenses accounts.
Debits decrease liabilities, equity, and revenue accounts.
For example, when cash is received, the Cash account is debited and the Revenue account is credited.
Another example is when an expense is incurred, the Expense account is debited and the Cash account is credited.
Net profit can be calculated by subtracting the profit percentage from the gross profit.
Calculate 20% of the gross profit (1200) which is 240.
Subtract the profit percentage from the gross profit to get the net profit: 1200 - 240 = 960.
What type of work you done earlier?
What you are interested in accounting or filing return?
How many work u have done at a time ?
How many transactions you have done at a time?
I applied via Indeed and was interviewed before Mar 2023. There were 3 interview rounds.
Basic c# and. Net questions
Examples of c# questions
Top trending discussions
Assign tasks based on past performance by analyzing employee's strengths and weaknesses.
Analyze employee's past performance data
Identify their strengths and weaknesses
Assign tasks that align with their strengths
Provide training or support for areas of weakness
Regularly review and adjust task assignments based on performance
Consider employee preferences and career goals
Assuming the blog covers popular sports, the number of viewers can range from a few thousand to millions depending on the quality of content and marketing strategies.
Consider the popularity of the sports covered in the blog
Evaluate the quality of content and frequency of updates
Assess the marketing strategies used to promote the blog
Look at the engagement level of the blog's social media accounts
Take into account the c...
A thief operating in shopping can earn anywhere from a few thousand to millions of dollars per year depending on their tactics and location.
The thief's location and the type of stores they target will greatly impact their earnings
Factors such as the thief's level of experience, skill, and risk-taking behavior will also play a role in their earnings
Some thieves may work alone while others may operate in organized groups...
Understanding car passing probabilities over time helps in traffic analysis and planning.
Probability can be calculated using the formula: P = (number of successful outcomes) / (total outcomes).
If a car passes every 10 minutes on average, in one hour (60 minutes), you expect 6 cars.
For a subset time, adjust the expected number of cars based on the time interval.
Example: In 15 minutes, if 6 cars pass in 60 minutes, expec...
To open the number lock on the bag, you need to try combinations of three numbers, ensuring that at least two of them are correct.
Start by trying the combinations of the first two numbers with each of the remaining six numbers.
If none of these combinations work, move on to the next pair of numbers and repeat the process.
Continue this pattern until you find a combination that opens the lock.
I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.
Oops concept in C# refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation hides the internal state of an object and only exposes necessary information.
Polymorphism allows objects of different classes to be treated as objects of a common superclass.
Abstraction focuses on...
A filter is a tool used to select specific data from a larger set based on certain criteria.
Filters can be used in various programming languages and databases to narrow down results.
Types of filters include text filters, numeric filters, date filters, and custom filters.
Examples of filters include WHERE clause in SQL, filter() function in Python, and filter() method in JavaScript.
A view in SQL Server is a virtual table that contains the result set of a SELECT statement.
Views are used to simplify complex queries by storing them as a virtual table.
Views can be used to restrict access to specific columns or rows of a table.
Views can be created using the CREATE VIEW statement.
Example: CREATE VIEW vwEmployee AS SELECT FirstName, LastName FROM Employees;
Primary key uniquely identifies a record in a table, while unique key ensures uniqueness but allows null values.
Primary key enforces uniqueness and not null constraint on a column
Primary key can consist of multiple columns
Unique key enforces uniqueness but allows null values
Unique key can be applied to multiple columns as well
Procedures are a set of instructions that perform a specific task, while functions return a value after performing a task.
Procedures do not return a value, while functions do.
Functions can be called within expressions, while procedures cannot.
Functions are more versatile and reusable compared to procedures.
A trigger in SQL Server is a special type of stored procedure that automatically executes when certain events occur in a database.
Triggers can be used to enforce business rules, audit changes, or replicate data.
There are two main types of triggers in SQL Server: DML triggers and DDL triggers.
DML triggers fire in response to data manipulation language (DML) events like INSERT, UPDATE, and DELETE.
DDL triggers fire in res...
Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.
Interfaces cannot have implementation, only method signatures and properties.
Classes can implement multiple interfaces in C#.
Interfaces are used to achieve abstraction and multiple inheritance in C#.
Example: public interface IShape { void Draw(); }
Example: public class Circle : IShape { public void Draw()...
Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that must be implemented by a class.
Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.
A class can implement multiple interfaces but can only inherit from one abstract class.
Abstract classes are used when some common functionality needs ...
Partial view in ASP.NET MVC allows reusing common UI elements across multiple views.
Partial views are like reusable components that can be included in multiple views
They help in reducing code duplication and improving maintainability
Partial views are rendered using Html.Partial or Html.RenderPartial methods
Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same name and parameters as in the superclass.
Method overloading involves multiple methods with the same name but different parameters.
Method overriding involves redefining a method in a subclass with the same name and parameters as in the superclas...
Union combines and removes duplicates, while union all combines all rows including duplicates.
Union removes duplicates, while union all includes duplicates.
Union is slower as it has to remove duplicates, while union all is faster.
Use union when you want to remove duplicates, use union all when duplicates are acceptable.
Foreign key in SQL is a field in a table that links to a primary key in another table, enforcing referential integrity.
Foreign key constraints ensure data consistency between related tables
Foreign key values must exist in the referenced table's primary key column
Foreign key can be used to establish relationships between tables
Constructor in C# is a special type of method that is automatically called when an instance of a class is created.
Constructors have the same name as the class and do not have a return type.
They can be used to initialize the data members of the class.
Constructors can be overloaded to have multiple versions with different parameters.
Example: public class Person { public Person(string name) { this.Name = name; } }
based on 2 interview experiences
Difficulty level
Duration
based on 14 reviews
Rating in categories
Accounts Associate
7
salaries
| ₹2.5 L/yr - ₹4.6 L/yr |
Accounts Payable Executive
7
salaries
| ₹2 L/yr - ₹4 L/yr |
Data Analyst
4
salaries
| ₹3.6 L/yr - ₹4.8 L/yr |
Senior Accounts Executive
4
salaries
| ₹3.2 L/yr - ₹4.3 L/yr |
Senior Accountant
4
salaries
| ₹2.5 L/yr - ₹5.4 L/yr |
Primus Global Technologies
TriGeo Technologies
GrapplTech
Plada Infotech Services