Add office photos
Accenture logo
Employer?
Claim Account for FREE

Accenture

3.8
based on 56.4k Reviews
Video summary
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by

3500+ Accenture Interview Questions and Answers

Updated 28 Feb 2025
Popular Designations

Q1. If insurance premium is paid for an entire year 1st January to 31st December and books get close on 31st March, what will be the accounting treatment?

Ans.

The insurance premium paid for the entire year will be apportioned for the period of 1st January to 31st March.

  • The portion of premium for the period of 1st January to 31st March will be treated as prepaid expense and will be shown in the balance sheet as an asset.

  • The remaining portion of premium will be treated as an expense and will be shown in the income statement.

  • The prepaid expense will be gradually expensed out over the period of January to December.

  • The accounting entry ...read more

View 134 more answers
right arrow

Q2. Sum of Even & Odd Digits Problem Statement

Create a program that accepts an integer N and outputs two sums: the sum of all even digits and the sum of all odd digits found in the integer.

Explanation:

Digits ref...read more

Ans.

Create a program to find the sum of even and odd digits in an integer.

  • Iterate through each digit of the integer and check if it is even or odd

  • Keep track of the sum of even digits and odd digits separately

  • Print the sums of even and odd digits at the end

View 5 more answers
right arrow
Accenture Interview Questions and Answers for Freshers
illustration image

Q3. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you...

read more
Ans.

Determining the price to pay to a housing society for their garbage collection and sale to 5 different vendors while making a 20% profit.

  • Calculate the cost of collecting and transporting the garbage

  • Research the market prices for each type of waste material

  • Determine the profit margin required

  • Calculate the selling price to each vendor based on market prices and profit margin

  • Determine the price to pay to the society members based on the cost and profit margin

  • Consider negotiating...read more

View 7 more answers
right arrow

Q4. Triplets with Given Sum Problem

Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

Explanation:

A triplet i...read more

Ans.

The task is to find all distinct triplets in an array that sum up to a specified number.

  • Iterate through the array and use nested loops to find all possible triplets.

  • Keep track of the triplets that sum up to the target number.

  • Handle cases where no triplet exists for a given target sum.

View 1 answer
right arrow
Discover Accenture interview dos and don'ts from real experiences

Q5. Reverse String Operations Problem Statement

You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A.

The ...read more

Ans.

Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

  • Iterate through the array of indices and reverse the substrings accordingly

  • Ensure the range specified by each index is non-empty

  • Return the final string after all operations are completed

Add your answer
right arrow

Q6. LCA of Three Nodes Problem Statement

You are given a Binary Tree with 'N' nodes where each node contains an integer value. Additionally, you have three integers, 'N1', 'N2', and 'N3'. Your task is to find the L...read more

Ans.

Find the Lowest Common Ancestor (LCA) of three nodes in a Binary Tree.

  • Traverse the Binary Tree to find the paths from the root to each of the three nodes.

  • Compare the paths to find the common ancestor node.

  • Return the value of the Lowest Common Ancestor node.

Add your answer
right arrow
Are these interview questions helpful?

Q7. What are three golden rules of accounting?

Ans.

The three golden rules of accounting are the basis of all accounting practices.

  • The first rule is the accounting equation: Assets = Liabilities + Equity

  • The second rule is the double-entry principle: Every transaction has two equal and opposite effects on the accounting equation

  • The third rule is the revenue recognition principle: Revenue should be recognized when it is earned, not when it is received

View 196 more answers
right arrow

Q8. Find the Duplicate Number Problem Statement

Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Your tas...read more

Ans.

Find the duplicate number in an array of integers from 0 to (N-2).

  • Iterate through the array and keep track of the frequency of each number using a hashmap.

  • Return the number with a frequency greater than 1 as the duplicate number.

  • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

Add your answer
right arrow
Share interview questions and help millions of jobseekers 🌟
man with laptop

Q9. What do you understand by Budgeting and Forecasting?

Ans.

Budgeting and forecasting involve the process of planning and estimating future financial outcomes.

  • Budgeting is the process of creating a detailed plan for income and expenses over a specific period.

  • Forecasting involves predicting future financial performance based on historical data and market trends.

  • Budgeting helps in setting financial goals, allocating resources, and monitoring financial performance.

  • Forecasting assists in making informed decisions, identifying potential ri...read more

View 3 more answers
right arrow

Q10. Kth Smallest and Largest Element Problem Statement

You are provided with an array 'Arr' containing 'N' distinct integers and a positive integer 'K'. Your task is to find the Kth smallest and Kth largest element...read more

Ans.

Find the Kth smallest and largest elements in an array.

  • Sort the array and return the Kth element for smallest and (N-K+1)th element for largest.

  • Ensure K is within the array size to avoid out of bounds error.

  • Handle multiple test cases efficiently by iterating through each case.

Add your answer
right arrow

Q11. Chocolate Distribution Problem

You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M' stude...read more

Ans.

Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

  • Sort the array of chocolates packets.

  • Use sliding window technique to find the minimum difference between the largest and smallest packets distributed to students.

  • Return the minimum difference as the output.

Add your answer
right arrow

Q12. Balanced Parentheses Combinations

Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

Explanation:

Con...read more

Ans.

Generate all possible combinations of balanced parentheses given the number of pairs.

  • Use backtracking to generate all valid combinations of balanced parentheses.

  • Keep track of the number of open and close parentheses used in each combination.

  • Recursively build the combinations by adding open parentheses if there are remaining, and then adding close parentheses if the number of open parentheses is greater than the number of close parentheses.

  • Example: For N = 2, valid combination...read more

Add your answer
right arrow

Q13. Find Duplicates in an Array

Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

Return the duplicate elements in any order. If n...read more

Ans.

The task is to find all duplicate elements in an array of integers.

  • Iterate through the array and keep track of the count of each element using a hashmap.

  • Return all elements from the hashmap with count greater than 1 as the duplicate elements.

Add your answer
right arrow

Q14. Postfix Expression Evaluation Problem Statement

Given a postfix expression, your task is to evaluate the expression. The operator will appear in the expression after the operands. The output for each expression...read more

Ans.

Evaluate postfix expressions by applying operators after operands. Return result modulo (10^9+7).

  • Read the postfix expression from input

  • Use a stack to store operands and apply operators

  • Perform modular division when necessary

  • Output the final result for each test case

Add your answer
right arrow

Q15. What are the basic concepts of accounting?

Ans.

Basic concepts of accounting include assets, liabilities, equity, revenue, and expenses.

  • Assets are resources owned by a company, such as cash, inventory, and property.

  • Liabilities are debts owed by a company, such as loans and accounts payable.

  • Equity represents the residual interest in the assets of a company after liabilities are deducted.

  • Revenue is the income earned by a company from its operations, such as sales.

  • Expenses are the costs incurred by a company in order to gener...read more

View 97 more answers
right arrow

Q16. Maximum Subarray Sum Problem Statement

Given an array ARR consisting of N integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray within this array.

Example of Subarrays:...read more

Ans.

Find the maximum sum of a contiguous subarray in an array of integers.

  • Use Kadane's algorithm to find the maximum subarray sum efficiently.

  • Initialize two variables: maxEndingHere and maxSoFar.

  • Iterate through the array and update the variables accordingly.

  • Return the maxSoFar as the result.

Add your answer
right arrow

Q17. Armstrong Number Problem Statement

You are provided an integer 'NUM'. Determine if 'NUM' is an Armstrong number.

Explanation:

An integer 'NUM' with 'k' digits is an Armstrong number if the sum of its digits, ea...read more

Ans.

An Armstrong number is a number that is equal to the sum of its own digits raised to the power of the number of digits.

  • Iterate through each digit of the number and calculate the sum of each digit raised to the power of the total number of digits.

  • Compare the calculated sum with the original number to determine if it is an Armstrong number.

  • Return 'YES' if the number is an Armstrong number, 'NO' otherwise.

Add your answer
right arrow

Q18. Equilibrium Index Problem Statement

Given an array Arr consisting of N integers, your task is to find the equilibrium index of the array.

An index is considered as an equilibrium index if the sum of elements of...read more

Ans.

Find the equilibrium index of an array where sum of elements on left equals sum on right.

  • Iterate through the array and calculate the total sum of all elements.

  • For each index, calculate the left sum and right sum and check if they are equal.

  • Return the index if found, otherwise return -1.

Add your answer
right arrow

Q19. One of the questions for Critical Reasoning was:- Two cars A and B cross a flyover in 10 minutes and 30 minutes respectively. Find the speed of Car A. Statements: Car B travels at the 50kmph Train A and B are t...

read more
Ans.

Car A's speed is 90kmph

  • Use the formula: Speed = Distance/Time

  • Assume the distance to be the same for both cars

  • Calculate Car A's time using the given information

  • Substitute the values in the formula to get Car A's speed

View 1 answer
right arrow

Q20. What is accrual concept of accounting?

Ans.

Accrual concept of accounting recognizes revenues and expenses when they are earned or incurred, regardless of when cash is received or paid.

  • Accrual concept is based on the matching principle, which ensures that revenues and expenses are recorded in the same accounting period.

  • Under accrual accounting, revenues are recognized when they are earned, even if the cash is not received yet.

  • Expenses are recognized when they are incurred, even if the cash is not paid yet.

  • Accrual accou...read more

View 120 more answers
right arrow

Q21. There is an international bank (US based) that has been operating in Asia for the past 10 years. However, recently it has noticed that a lot of its customers are leaving the bank and using services of other loc...

read more
Ans.

Customers leaving a US-based international bank in Asia for local/regional banks.

  • Possible reasons could be lack of understanding of local market and culture

  • Inability to provide personalized services to customers

  • Higher fees and charges compared to local/regional banks

  • Competition from other international banks with better offerings

  • Negative perception due to scandals or controversies involving the bank

  • Lack of innovation and adoption of new technologies

  • Language barriers and commu...read more

View 3 more answers
right arrow

Q22. Pair Sum Problem Statement

You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

Note:

Each pa...read more

Ans.

Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

  • Iterate through the array and use a hashmap to store the difference between the target sum and each element.

  • Check if the difference exists in the hashmap, if yes, add the pair to the result list.

  • Sort the result list based on the criteria mentioned in the problem statement.

  • Return the sorted list of pairs as the final output.

Add your answer
right arrow

Q23. A marketing strategy case. Client is a perfume seller in Jaipur. The perfumes he sells are not to be found anywhere else in the world. The product has not been tried by people elsewhere apart from the city. Tou...

read more
Ans.

Create a digital marketing campaign targeting tourists and potential customers outside Jaipur.

  • Create a website and social media pages to showcase the unique perfumes and their ingredients.

  • Partner with local hotels and travel agencies to promote the perfumes to tourists.

  • Offer discounts or promotions for customers who refer their friends and family.

  • Create a loyalty program to incentivize repeat customers.

  • Consider expanding the product line to include other unique scents.

  • Collect...read more

View 3 more answers
right arrow

Q24. Product Of Array Except Self Problem Statement

You are provided with an integer array ARR of size N. You need to return an array PRODUCT such that PRODUCT[i] equals the product of all the elements of ARR except...read more

Ans.

The problem requires returning an array where each element is the product of all elements in the input array except itself.

  • Iterate through the array twice to calculate the product of all elements to the left and right of each element.

  • Use two arrays to store the products of elements to the left and right of each element.

  • Multiply the corresponding elements from the left and right arrays to get the final product array.

  • Handle integer overflow by taking modulo MOD = 10^9 + 7.

  • To so...read more

Add your answer
right arrow

Q25. What is invoice ,what is po what is brs trial balance and p& l account ,cash flow statement, subsidiary books , debt not and credit not, GAAP rules , differed tax...etc

Ans.

An invoice is a document requesting payment for goods or services, a PO is a purchase order, BRS is bank reconciliation statement, trial balance is a summary of all accounts, P&L account is a financial statement showing revenue and expenses, cash flow statement shows cash inflows and outflows, subsidiary books are records of specific transactions, debit note is a document for recording an increase in liability, credit note is a document for recording a decrease in liability, ...read more

View 5 more answers
right arrow

Q26. Ninja and Candies Problem

Ninja, a boy from Ninjaland, receives 1 coin every morning from his mother. He wants to purchase exactly 'N' candies. Each candy usually costs 2 coins, but it is available for 1 coin i...read more

Ans.

Calculate the earliest day on which Ninja can buy all candies with special offers.

  • Iterate through each day and check if any special offer is available for candies Ninja wants to buy

  • Keep track of the minimum day on which Ninja can buy all candies

  • Consider both regular price and sale price of candies

Add your answer
right arrow

Q27. Tiling Problem Statement

Given a board with 2 rows and N columns, and an infinite supply of 2x1 tiles, determine the number of distinct ways to completely cover the board using these tiles.

You can place each t...read more

Ans.

The problem involves finding the number of distinct ways to completely cover a 2xN board using 2x1 tiles.

  • Use dynamic programming to solve the tiling problem efficiently.

  • Define a recursive function to calculate the number of ways to tile the board.

  • Consider both horizontal and vertical placements of tiles.

  • Implement the function to handle large values of N by using modulo arithmetic.

  • Optimize the solution to avoid redundant calculations.

Add your answer
right arrow

Q28. What is Protocol , Informed consent form , Different phases of clinical trials , Phase 1 objective , who are involved in clinical trials ?

Ans.

Protocol, informed consent form, phases of clinical trials, phase 1 objective, and participants in clinical trials.

  • Protocol is a detailed plan outlining the objectives, design, methodology, and conduct of a clinical trial.

  • Informed consent form is a document that provides information about the trial to participants and ensures their voluntary participation.

  • Clinical trials have different phases: Phase 1, Phase 2, Phase 3, and Phase 4.

  • Phase 1 trials aim to evaluate the safety, d...read more

View 1 answer
right arrow

Q29. Find Middle of Linked List

Given the head node of a singly linked list, your task is to return a pointer pointing to the middle node of the linked list.

When the number of elements is odd, return the middle ele...read more

Ans.

Return the middle node of a singly linked list, selecting the one farther from the head node in case of even number of elements.

  • Traverse the linked list using two pointers, one moving twice as fast as the other.

  • When the fast pointer reaches the end, the slow pointer will be at the middle node.

  • Return the node pointed by the slow pointer as the middle node.

Add your answer
right arrow

Q30. 1. What are accounting golden rules? 2. What is bank reconciliation? How to prepare? 3. What is accrual and journal entry for accrual expenses. 4. What is prepaid expense and journal entry for prepaid expenses...

read more
Add your answer
right arrow

Q31. Question 2 was, Find the sum of all numbers in range from 1 to m(both inclusive) that are not divisible by n. Return difference between sum of integers not divisible by n with sum of numbers divisible by n.

Ans.

Find sum of numbers in range 1 to m (both inclusive) not divisible by n. Return difference between sum of non-divisible and divisible numbers.

  • Iterate through range 1 to m and check if number is divisible by n.

  • If not divisible, add to sum of non-divisible numbers.

  • If divisible, add to sum of divisible numbers.

  • Return difference between sum of non-divisible and divisible numbers.

View 2 more answers
right arrow

Q32. Tell me about your self? Accounting Golden Rules? What is depreciation? Types of depreciation? BRS entries Sales entries

Ans.

I am an experienced accountant with knowledge of accounting golden rules, depreciation, BRS entries, and sales entries.

  • Accounting golden rules are the basic principles that guide the recording of financial transactions.

  • Depreciation is the decrease in the value of an asset over time due to wear and tear, obsolescence, or other factors.

  • Types of depreciation include straight-line depreciation, reducing balance depreciation, and sum-of-years' digits depreciation.

  • BRS entries refer...read more

View 15 more answers
right arrow

Q33. Prime Numbers Identification

Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

Explanation:

A prime number is a natural number greater than 1 that has no positive d...read more

Add your answer
right arrow

Q34. How to redirect to login page through React Router if the user has not logged in and trying to go to another page through URL.

Ans.

Use React Router's Redirect component to redirect to login page if user is not logged in.

  • Create a PrivateRoute component that checks if user is logged in

  • If user is not logged in, redirect to login page using Redirect component

  • Wrap the routes that require authentication with PrivateRoute component

View 3 more answers
right arrow

Q35. Palindrome String Validation

Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

Note:
The string 'S' should be evaluated in a case-insensi...read more
Ans.

Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

  • Remove special characters and spaces from the string

  • Convert the string to lowercase

  • Check if the modified string is a palindrome by comparing characters from start and end

Add your answer
right arrow

Q36. Print Permutations - String Problem Statement

Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.

Input:

The first and only line of input contains...read more
Ans.

Return all possible permutations of a given input string.

  • Use recursion to generate all possible permutations of the input string.

  • Swap characters at different positions to generate different permutations.

  • Handle duplicate characters by skipping swapping if the characters are the same.

  • Return the list of permutations as an array of strings.

Add your answer
right arrow

Q37. 1. What is OTC ? 2. What is Invoice & what are the key things we need to check while raising the invoice . 3.What’s the quality parameter in billing. 4.Challenges while raising the invoice . 5. What is debit/cr...

read more
Ans.

OTC stands for Order to Cash, which is the process of receiving and fulfilling customer orders.

  • OTC is a business process that involves receiving and processing customer orders.

  • It includes activities such as order entry, order fulfillment, and order invoicing.

  • OTC aims to ensure timely and accurate delivery of products or services to customers.

  • It involves coordination between various departments like sales, operations, and finance.

  • OTC process can be optimized to improve efficie...read more

Add your answer
right arrow

Q38. Journal entry for cash sales?

Ans.

Journal entry for cash sales involves debiting the cash account and crediting the sales revenue account.

  • Debit the cash account to reflect the increase in cash due to the sales

  • Credit the sales revenue account to record the revenue generated from the sales

  • The journal entry would typically be: Cash (debit) and Sales Revenue (credit)

View 32 more answers
right arrow

Q39. If u purchased a good but u want to return the goods what will be the journal entry in vendor account

Ans.

The journal entry in the vendor account for returning goods is a credit entry to the vendor's account and a debit entry to the purchase return account.

  • The journal entry will decrease the vendor's account balance and increase the purchase return account balance.

  • The credit entry to the vendor's account represents the reduction in accounts payable.

  • The debit entry to the purchase return account represents the increase in the purchase return expense.

  • The specific accounts used may ...read more

View 15 more answers
right arrow

Q40. Replace Spaces in a String

Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

Input:

The first line contains an integer ‘T’ d...read more
Ans.

Replace spaces in a string with '@40'.

  • Iterate through the string and replace spaces with '@40'.

  • Return the modified string for each test case.

  • Handle multiple test cases by iterating through each one.

Add your answer
right arrow

Q41. Difference between tmap & tjoin Types of connection Difference between truncate delete What is ETL What are triggers Type of join

Ans.

tmap is used to transform data in Talend, tjoin is used to join data. There are different types of connections, truncate and delete are different ways to remove data from a table. ETL stands for Extract, Transform, Load. Triggers are database objects that are automatically executed in response to certain events. There are different types of joins.

  • tmap is used for data transformation in Talend

  • tjoin is used for joining data in Talend

  • Types of connections include database connect...read more

View 3 more answers
right arrow

Q42. Replace Character Problem Statement

Given an input string S and two characters 'c1' and 'c2', your task is to replace every occurrence of the character 'c1' with the character 'c2' in the given string.

Input:

L...read more
Ans.

Replace every occurrence of a character in a string with another character.

  • Iterate through the input string and replace 'c1' with 'c2' using string manipulation functions.

  • Return the updated string as the output.

Add your answer
right arrow

Q43. What do you understand by Casino? Give three advantages and disadvantages of social media.

Ans.

A casino is a facility that houses and accommodates various types of gambling activities.

  • Advantages of social media: increased connectivity, access to information, and platform for self-expression

  • Disadvantages of social media: cyberbullying, privacy concerns, and addiction

  • Examples of advantages: staying connected with friends and family, finding job opportunities, and sharing creative content

  • Examples of disadvantages: online harassment, data breaches, and excessive screen tim...read more

View 2 more answers
right arrow

Q44. Nth Fibonacci Number Problem Statement

Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

Input:

The inp...read more
Ans.

Calculate the Nth Fibonacci number efficiently using dynamic programming.

  • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

  • Start with base cases F(1) and F(2) as 1, then iterate to calculate subsequent Fibonacci numbers.

  • Return the Nth Fibonacci number as the result.

Add your answer
right arrow

Q45. Golden rules of Accounting, Accrual & Matching Concept.

Ans.

Golden rules of Accounting, Accrual & Matching Concept.

  • Golden rules of accounting include the accounting equation, double-entry accounting, and the concept of debits and credits

  • Accrual concept states that revenue and expenses should be recognized when earned or incurred, regardless of when cash is received or paid

  • Matching concept states that expenses should be matched with the revenue they helped generate in the same accounting period

  • For example, if a company sells goods on c...read more

View 3 more answers
right arrow

Q46. Check if Two Trees are Mirror

Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other.

Explanation:

Two trees are considered mirror of each other if:

  • The r...read more
Ans.

Check if two binary trees are mirrors of each other based on specific criteria.

  • Compare the roots of both trees.

  • Check if the left subtree of the first tree is the mirror of the right subtree of the second tree.

  • Verify if the right subtree of the first tree is the mirror of the left subtree of the second tree.

Add your answer
right arrow

Q47. How can solve the problem? When employees have their different solution

Ans.

To solve the problem of employees having different solutions, it is important to encourage open communication, facilitate collaboration, and consider all perspectives.

  • Encourage open communication among employees to understand their different solutions

  • Facilitate collaboration by organizing team meetings or brainstorming sessions

  • Consider all perspectives and evaluate the pros and cons of each solution

  • Seek consensus or compromise to find a solution that satisfies everyone

  • Impleme...read more

View 8 more answers
right arrow
Q48. ...read more

Sum At Kth Level

Given the root of a binary tree, calculate the sum of all nodes located at the Kth level from the top. Consider the root node as level 1, and each level beneath it sequentially increases by 1.

Ans.

Calculate the sum of nodes at the Kth level of a binary tree given the root.

  • Traverse the binary tree level by level using BFS.

  • Keep track of the current level while traversing.

  • Sum the nodes at the Kth level and return the result.

Add your answer
right arrow

Q49. How to analyse a problem : Suppose a pizza chain comes to you and tells you that certain of their outlets are performing poorly aftrr the pandemic. Where do you start with the problem and how do you approach

Ans.

To analyze the problem of poor performance of certain pizza outlets after the pandemic, start by identifying potential factors and gathering data.

  • Identify potential factors such as changes in consumer behavior, supply chain disruptions, or local regulations

  • Gather data on sales, customer feedback, employee turnover, and operational costs

  • Analyze the data to identify patterns and correlations

  • Develop hypotheses and test them through further analysis or experiments

  • Recommend soluti...read more

Add your answer
right arrow

Q50. Which accounts are to be maintained in accounts

Ans.

Accounts to be maintained in accounts include cash, accounts receivable, accounts payable, inventory, and fixed assets.

  • Cash account for recording all cash transactions

  • Accounts receivable for recording money owed to the company by customers

  • Accounts payable for recording money owed by the company to suppliers

  • Inventory for recording the value of goods held for sale

  • Fixed assets for recording long-term assets such as property, plant, and equipment

View 12 more answers
right arrow

Q51. Subarray With Given Sum Problem Statement

Given an array ARR of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exists, re...read more

Add your answer
right arrow

Q52. What is the journal entry for prepaid expense?

Ans.

The journal entry for prepaid expense involves debiting the prepaid expense account and crediting the cash or accounts payable account.

  • Prepaid expenses are expenses that have been paid in advance but have not yet been used or consumed.

  • To record a prepaid expense, the prepaid expense account is debited to increase its balance.

  • The corresponding credit is made to either the cash account if the expense was paid in cash, or the accounts payable account if the expense was paid on c...read more

View 5 more answers
right arrow

Q53. Journal entry for provision of bad debts?

Ans.

The journal entry for provision of bad debts is a debit to Bad Debt Expense and a credit to Allowance for Doubtful Accounts.

  • Bad Debt Expense is an expense account that represents the amount of uncollectible accounts receivable.

  • Allowance for Doubtful Accounts is a contra-asset account that reduces the balance of accounts receivable to its net realizable value.

  • The provision for bad debts is an estimate of the amount of accounts receivable that are expected to be uncollectible.

  • E...read more

View 4 more answers
right arrow

Q54. String Transformation Problem

Given a string (STR) of length N, you are tasked to create a new string through the following method:

Select the smallest character from the first K characters of STR, remove it fr...read more

Ans.

Given a string and an integer K, create a new string by selecting the smallest character from the first K characters of the input string and repeating the process until the input string is empty.

  • Iterate through the input string, selecting the smallest character from the first K characters each time.

  • Remove the selected character from the input string and append it to the new string.

  • Continue this process until the input string is empty.

  • Return the final new string formed.

Add your answer
right arrow

Q55. Ways To Make Coin Change

Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the c...read more

Ans.

The task is to determine the total number of ways to make change for a specified value using given denominations.

  • Create a dynamic programming table to store the number of ways to make change for each value up to the target value.

  • Iterate through each denomination and update the table accordingly.

  • The final answer will be the value in the table at the target value.

  • Consider edge cases such as when the target value is 0 or when there are no denominations available.

Add your answer
right arrow

Q56. How can you only accept jpg and png files using HTML5.

Ans.

Use the accept attribute in the input tag to only allow jpg and png files.

  • Add accept attribute to input tag with 'image/jpeg, image/png' value

  • This will restrict file selection to only jpg and png files

View 3 more answers
right arrow

Q57. How do you get use to bulk of invoices comes at a time and how do you work on it

Ans.

To handle a bulk of invoices, prioritize tasks, use organizational tools, and establish a systematic workflow.

  • Prioritize tasks based on due dates and importance

  • Utilize organizational tools such as spreadsheets or project management software

  • Establish a systematic workflow by breaking down the bulk into manageable chunks

  • Allocate dedicated time slots for invoice processing

  • Communicate with relevant stakeholders to ensure timely payments

  • Automate repetitive tasks using technology i...read more

View 6 more answers
right arrow

Q58. If I give you the data can you use Excel formulas to give the output?

Ans.

Yes, I can use Excel formulas to process the given data and provide the desired output.

  • Excel formulas can be used to perform various calculations and manipulations on data

  • They can be used to perform mathematical operations, create formulas based on logical conditions, and manipulate text

  • Examples of Excel formulas include SUM, IF, VLOOKUP, CONCATENATE, etc.

View 14 more answers
right arrow

Q59. If goods destroyed through fire what will be the journal entry

Ans.

The journal entry for goods destroyed through fire

  • Debit the amount of goods destroyed to the Loss by Fire account

  • Credit the amount of goods destroyed to the Inventory account

  • If insurance is involved, credit the amount received from the insurance company to the Insurance Receivable account

View 30 more answers
right arrow

Q60. BFS Traversal in a Graph

Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the 0th ve...read more

Ans.

BFS traversal in a disconnected graph starting from vertex 0.

  • Implement BFS algorithm to traverse the graph starting from vertex 0.

  • Explore neighbor nodes first before moving to the next level neighbors.

  • Consider undirected and disconnected graph where not all pairs of vertices have paths connecting them.

  • Output the BFS traversal sequence for each test case in a separate line.

  • Ensure the BFS path starts from vertex 0 and print connected nodes in numerical sort order.

Add your answer
right arrow

Q61. What type of forecasting method you apply for forecasting?

Ans.

I apply various forecasting methods depending on the data and the context of the problem.

  • I use time series analysis for data with a clear trend and seasonality.

  • I use regression analysis for data with multiple predictors.

  • I use machine learning algorithms such as random forest and neural networks for complex data.

  • I also consider qualitative factors such as expert opinions and market trends.

  • I continuously evaluate and refine the forecasting method based on the accuracy of the pr...read more

View 1 answer
right arrow

Q62. Reverse the String Problem Statement

You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

Example:

Input:
STR = "abcde"
Output:
"edcba"

Input...read more

Add your answer
right arrow

Q63. Equilibrium Indices in a Sequence

You are given an array/list named 'SEQUENCE', which consists of 'N' integers. The task is to identify all equilibrium indices in this sequence.

Explanation:

An equilibrium inde...read more

Ans.

Identify equilibrium indices in a sequence by finding positions where sum of elements before and after is equal.

  • Iterate through the sequence and calculate prefix sum and suffix sum at each index

  • Compare prefix sum and suffix sum to find equilibrium indices

  • Handle edge cases where no equilibrium index exists

  • Return the list of equilibrium indices

Add your answer
right arrow

Q64. Ninja and Alien Language Order Problem

An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of words fro...read more

Ans.

Determine the order of characters in an alien language based on a list of words from the alien's dictionary.

  • Create a graph data structure to represent the relationships between characters in the words.

  • Perform a topological sort on the graph to find the order of characters.

  • Handle cases where there is no valid order by returning an empty string.

Add your answer
right arrow

Q65. Identify ways to push up declining sales of a major player in the ready to eat food category in Tier I cities in India. The target segment was IT/ consult sector people (convenience seekers) and hostelites. Giv...

read more
Ans.

To push up declining sales of a major player in the ready to eat food category in Tier I cities in India, recommendations include targeting IT/consult sector people and hostelites, improving product packaging and branding, offering discounts and promotions, expanding distribution channels, and conducting market research.

  • Target the IT/consult sector people and hostelites as the primary consumer segment

  • Improve product packaging and branding to attract attention and differentiat...read more

Add your answer
right arrow

Q66. Alien Dictionary Problem Statement

You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictionary. Th...read more

Ans.

Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

  • Iterate through the words in the dictionary to find the order of characters.

  • Create a graph of characters based on the order of appearance in the words.

  • Perform a topological sort on the graph to get the character order of the alien language.

Add your answer
right arrow

Q67. Find the Second Largest Element

Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

If a second largest element does not exist, return -1.

Example:

Input:
ARR = [2, 4, 5, 6, ...read more
Ans.

Find the second largest element in an array of integers.

  • Iterate through the array to find the largest and second largest elements.

  • Handle cases where all elements are identical.

  • Return -1 if a second largest element does not exist.

Add your answer
right arrow

Q68. Stack using Two Queues Problem Statement

Develop a Stack Data Structure to store integer values using two Queues internally.

Your stack implementation should provide these public functions:

Explanation:

1. Cons...read more
Ans.

Implement a stack using two queues to store integer values with specified functions.

  • Use two queues to simulate stack operations efficiently.

  • Maintain the top element in one of the queues for easy access.

  • Handle push, pop, top, size, and isEmpty functions as specified.

  • Ensure proper error handling for empty stack scenarios.

  • Optimize the implementation to achieve desired time complexity.

  • Example: Push 42, pop top element (42), push 17, top element is 17.

Add your answer
right arrow

Q69. Arithmetic Expression Evaluation Problem Statement

You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic expression in...read more

Ans.

Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

  • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

  • Use a stack to keep track of operators and operands while parsing the expression

  • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

Add your answer
right arrow

Q70. What is the entry of interest received in advance?

Ans.

Entry of interest received in advance refers to the accounting entry made when a company receives interest income before it is earned.

  • Interest received in advance is recorded as a liability on the balance sheet.

  • It represents the amount of interest income that has been received but has not yet been earned.

  • The entry involves debiting the cash account and crediting the interest received in advance account.

  • As the interest is earned over time, the liability is reduced and the corr...read more

View 9 more answers
right arrow

Q71. What is your understanding of digital marketing?

Ans.

Digital marketing refers to the use of digital channels and technologies to promote products or services.

  • Digital marketing involves various strategies such as search engine optimization (SEO), social media marketing, email marketing, and content marketing.

  • It aims to reach and engage with a target audience through online platforms.

  • Digital marketing allows businesses to track and analyze their marketing efforts, measure success, and make data-driven decisions.

  • Examples of digita...read more

View 4 more answers
right arrow

Q72. What is prudence concept?

Ans.

Prudence concept is the principle of exercising caution and good judgment in decision-making.

  • It involves taking a conservative approach to financial management

  • It requires considering potential risks and uncertainties before making decisions

  • It is important for ensuring the long-term financial stability of an organization

  • For example, a company may choose to hold onto excess cash reserves rather than investing them in risky ventures

View 5 more answers
right arrow

Q73. Write a code for the length of string without using strlen() function.

Ans.

Code to find length of string without using strlen() function.

  • Use a loop to iterate through each character of the string

  • Increment a counter variable for each character in the string

  • Stop the loop when the null character '\0' is encountered

  • Return the counter variable as the length of the string

View 2 more answers
right arrow

Q74. Extract Characters at Prime Indices

Given a string 'STR' of length 'N', return a new string containing all characters that are located at prime indices in the original string. Ensure that the order of character...read more

Ans.

The task is to extract characters at prime indices from a given string and return them in the same order.

  • Iterate through the string and check if the index is prime.

  • Use a helper function to determine if a number is prime.

  • Build the new string by appending characters at prime indices.

Add your answer
right arrow

Q75. Ind as 116 and AS 17? What was in lease accounting before Ind as and after Ind as

Ans.

Ind AS 116 and AS 17 are accounting standards related to lease accounting.

  • Ind AS 116 is the Indian Accounting Standard for lease accounting, which was introduced in 2019.

  • AS 17 is the Accounting Standard for lease accounting issued by the Institute of Chartered Accountants of India (ICAI).

  • Before Ind AS, lease accounting in India followed AS 17, which required lessees to classify leases as either finance leases or operating leases.

  • Under AS 17, finance leases were capitalized on...read more

View 1 answer
right arrow

Q76. Automerge Jobs In Informatica MDM? Running Synchronization Batch Jobs After Changes To Trust Settings In Informatica MDM? Defining Trust Settings For Base Objects In Informatica MDM? How Informatica MDM Hub Han...

read more
Ans.

A list of questions related to Informatica MDM and its processes.

  • Automerging jobs in Informatica MDM

  • Defining trust settings for base objects

  • Loading data into Siperian Hub

  • Match rules and tokenization in Informatica MDM

  • Data loading stages and components of Informatica Hub Console

Add your answer
right arrow

Q77. Journal entry for bad debts?

Ans.

Journal entry for bad debts

  • Debit the bad debt expense account

  • Credit the accounts receivable account for the amount of the bad debt

  • If the bad debt has already been written off, credit the allowance for doubtful accounts account instead of accounts receivable

  • Example: Debit Bad Debt Expense for $500, Credit Accounts Receivable for $500

View 17 more answers
right arrow

Q78. Reverse Number Problem Statement

Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

Note:

If a number has trailing zeros, the...read more

Ans.

Implement a function to reverse a given number, omitting trailing zeros.

  • Create a function that takes an integer as input and reverses it while omitting trailing zeros

  • Use string manipulation to reverse the number and remove any trailing zeros

  • Handle test cases where the number has leading zeros as well

  • Ensure the reversed number is printed for each test case on a new line

Add your answer
right arrow

Q79. Next Smallest Palindrome Problem Statement

Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.

Explanation:

You are given a number in string format, and your ...read more

Ans.

Find the next smallest palindrome greater than a given number represented as a string.

  • Convert the string to an integer, find the next greater palindrome, and convert it back to a string.

  • Handle cases where the given number is already a palindrome or has all digits as '9'.

  • Consider both odd and even length numbers while finding the next palindrome.

Add your answer
right arrow

Q80. What is Data Management Plan ? What is DCF ? How is discrepancy managed ?

Ans.

A data management plan is a document that outlines how data will be collected, organized, stored, and shared.

  • A data management plan (DMP) is a formal document that describes the processes and procedures for managing data throughout its lifecycle.

  • It includes details on data collection, storage, organization, documentation, sharing, and preservation.

  • A DMP ensures that data is managed effectively, securely, and in compliance with relevant regulations and policies.

  • Discrepancy man...read more

View 2 more answers
right arrow

Q81. 1. What is the difference between find elements and find element in selenium 2. Oops concept and where you have applied this concept in your framework 3. Explain the framework you are using 4. How to generate t...

read more
Ans.

Interview questions for Senior Quality Engineer position

  • findElements returns a list of web elements while findElement returns a single web element

  • OOPS concepts include inheritance, polymorphism, encapsulation, and abstraction

  • TestNG framework allows for easy test case management and reporting

  • Reports in TestNG can be generated using the TestNG XML file or by using listeners

  • Defect life cycle includes identification, logging, prioritization, fixing, and verification

  • Priority and s...read more

Add your answer
right arrow

Q82. What is difference between output index and output indexes in component, Reformat?

Ans.

Output index is a single index while output indexes is an array of indexes in Reformat component.

  • Output index refers to a single output field in Reformat component.

  • Output indexes refer to multiple output fields in Reformat component.

  • Output index is specified using a single integer value.

  • Output indexes are specified using an array of integer values.

Add your answer
right arrow

Q83. What is the difference between @Controller and @RestController

Ans.

The @RestController annotation is a specialized version of the @Controller annotation in Spring MVC.

  • The @Controller annotation is used to define a controller class in Spring MVC.

  • The @RestController annotation is used to define a RESTful web service controller.

  • The @RestController annotation is a combination of @Controller and @ResponseBody annotations.

  • The @Controller annotation returns a view while the @RestController annotation returns data in JSON or XML format.

  • Example: @Con...read more

View 2 more answers
right arrow

Q84. Number of Triangles in an Undirected Graph

Determine how many triangles exist in an undirected graph. A triangle is defined as a cyclic path of length three that begins and ends at the same vertex.

Input:

The f...read more
Ans.

Count the number of triangles in an undirected graph.

  • Iterate through all possible triplets of vertices to check for triangles.

  • Use the adjacency matrix to determine if there is an edge between vertices.

  • Count the number of triangles found in the graph and return the total count.

Add your answer
right arrow

Q85. How much money your father needs to buy food for your family?

Ans.

This question is inappropriate and irrelevant to the job role.

  • The question is unrelated to the job of a Transaction Processing Associate.

  • It is not appropriate to ask personal financial information in an interview.

  • The focus should be on the candidate's skills and qualifications for the role.

View 1 answer
right arrow

Q86. What is Object Oriented ABAP, What is abstraction, what is polymorphism, difference between method overloading and overriding, what are abstract classes, difference between abstract classes and interface, how d...

read more
Ans.

Answers to questions related to SAP ABAP Development Consultant interview.

  • Object Oriented ABAP is a programming paradigm that uses objects to represent real-world entities.

  • Abstraction is the process of hiding implementation details and showing only the necessary information to the user.

  • Polymorphism is the ability of an object to take on many forms.

  • Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a met...read more

Add your answer
right arrow

Q87. Number of Islands Problem Statement

You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in this ma...read more

Add your answer
right arrow

Q88. What key points you have noticed at the time of invoice processing?

Ans.

Key points to notice during invoice processing

  • Accuracy of invoice details

  • Matching invoice with purchase order and receipt

  • Checking for duplicate invoices

  • Verifying payment terms and discounts

  • Ensuring proper coding and approval

  • Identifying any discrepancies or errors

  • Maintaining proper documentation and record keeping

View 3 more answers
right arrow

Q89. why HTML semantic elements, doctype is used why, which will seen in browser in which order, different units of css attributes, js call by value or refrence with example, diff let &const and let & var, diff arro...

read more
Ans.

HTML semantic elements are used for better structure and accessibility, doctype is used to specify the version of HTML, different CSS units include px, %, em, etc., JavaScript can call by value or reference, let and const are block-scoped while var is function-scoped, arrow functions are more concise than regular functions, sessionStorage is tab-specific while localStorage is window-specific, media queries are used for responsive design, flexbox is used for flexible layouts i...read more

Add your answer
right arrow

Q90. At which phase of clinical trials CDM starts ? What is blinding ? Types of blinding ?

Ans.

CDM starts in the data collection phase of clinical trials. Blinding is a method to reduce bias. There are different types of blinding.

  • CDM starts in the data collection phase of clinical trials.

  • Blinding is a method used to reduce bias in clinical trials.

  • Blinding involves withholding information from participants, investigators, or both.

  • Types of blinding include single-blind, double-blind, and triple-blind.

  • In single-blind trials, participants are unaware of the treatment they ...read more

Add your answer
right arrow

Q91. Valid Parentheses Problem Statement

Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

Input:

The first line contains an integer...read more
Ans.

The task is to determine if a given string of parentheses is balanced or not.

  • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

  • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

  • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

  • Example: For input '{}[]()', the stack will contain '{', '[',...read more

Add your answer
right arrow

Q92. What basic troubleshooting will you try if you are facing issues with cellular connectivity on your phone?

Ans.

I would check for airplane mode, restart the phone, check for software updates, and reset network settings.

  • Check if airplane mode is turned on

  • Restart the phone

  • Check for software updates

  • Reset network settings

  • Check if the SIM card is inserted properly

  • Check if the phone is in an area with good cellular coverage

View 1 answer
right arrow

Q93. An international Office stationary retailer has just entered India and set up a sample store in Bangalore in association with an India Retail Giant. The store has been open for 3 months now. What should the int...

read more
Ans.

The international office stationary retailer should focus on expanding their presence in India and building brand awareness.

  • Conduct market research to understand the Indian consumer behavior and preferences

  • Develop a localized marketing strategy to build brand awareness

  • Expand their product offerings to cater to the Indian market

  • Establish partnerships with local suppliers to ensure a steady supply chain

  • Invest in online and offline channels to reach a wider audience

  • Train and edu...read more

Add your answer
right arrow

Q94. What is Fixed Asset Accounting? Explain the steps in FAA

Ans.

Fixed Asset Accounting is the process of recording, tracking, and managing a company's tangible assets.

  • Fixed Asset Accounting involves identifying, classifying, and recording fixed assets.

  • The steps in FAA include asset acquisition, asset recording, asset depreciation, and asset disposal.

  • Asset acquisition involves purchasing or acquiring fixed assets.

  • Asset recording includes creating asset records with details like asset description, cost, and useful life.

  • Asset depreciation in...read more

View 1 answer
right arrow

Q95. 2.Write a program to print a string in reverse without using built in methods?

Ans.

This program reverses a given string without using any built-in methods.

  • Iterate through the string from the last character to the first character.

  • Append each character to a new string to reverse the order.

  • Return the reversed string as the output.

View 8 more answers
right arrow

Q96. What are the current technologies that are Accenture working on.

Ans.

Accenture is working on various technologies including AI, cloud computing, blockchain, and IoT.

  • AI: Accenture is using AI for various applications such as chatbots, predictive analytics, and natural language processing.

  • Cloud computing: Accenture is helping clients migrate to cloud platforms such as AWS, Azure, and Google Cloud.

  • Blockchain: Accenture is working on blockchain solutions for industries such as finance, healthcare, and supply chain management.

  • IoT: Accenture is help...read more

View 6 more answers
right arrow

Q97. Explain P2P cycle, SAP TCodes used in P2P cycle, what is strategic sourcing, what is tactical sourcing

Ans.

P2P cycle involves procurement process from requisition to payment. SAP TCodes used are ME21N, ME59N, MIRO, etc. Strategic sourcing is long-term planning for procurement while tactical sourcing is short-term execution.

  • P2P cycle includes requisition, purchase order, goods receipt, invoice verification, and payment

  • SAP TCodes used in P2P cycle include ME21N for creating purchase order, ME59N for automatic creation of purchase requisition, MIRO for invoice verification, etc.

  • Strat...read more

Add your answer
right arrow

Q98. What do you know about PV? What's are health authority in the World? Normal basic PV questions which you can find Google

Ans.

Pharmacovigilance (PV) is the science of detecting, assessing, and preventing adverse effects of drugs.

  • PV is responsible for monitoring the safety of drugs and ensuring that the benefits outweigh the risks.

  • PV involves collecting and analyzing data on adverse drug reactions (ADRs) and other drug-related problems.

  • PV is important for ensuring patient safety and improving public health.

  • Health authorities in the world include the FDA (USA), EMA (Europe), MHRA (UK), TGA (Australia)...read more

Add your answer
right arrow

Q99. How to center align a div in just one line in css.

Ans.

Use flexbox to center align a div in just one line in CSS.

  • Set the parent container's display property to flex.

  • Use the justify-content property with the value 'center' to horizontally center the div.

  • Use the align-items property with the value 'center' to vertically center the div.

View 3 more answers
right arrow

Q100. Golden rules of Accounting?

Ans.

The golden rules of accounting are basic principles that guide the recording of financial transactions.

  • The first golden rule is the Debit-credit rule, which states that for every debit entry, there must be a corresponding credit entry.

  • The second golden rule is the Real account rule, which states that all assets have a debit balance and all liabilities have a credit balance.

  • The third golden rule is the Nominal account rule, which states that all revenue and expense accounts ha...read more

View 7 more answers
right arrow
1
2
3
4
5
6
7
Next

More about working at Accenture

Back
Awards Leaf
AmbitionBox Logo
Top Rated Mega Company - 2024
Awards Leaf
Awards Leaf
AmbitionBox Logo
Top Rated Company for Women - 2024
Awards Leaf
Awards Leaf
AmbitionBox Logo
Top Rated IT/ITES Company - 2024
Awards Leaf
Contribute & help others!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos

Interview Process at Accenture

based on 6.8k interviews
Interview experience
4.1
Good
View more
interview tips and stories logo
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

Cognizant Logo
3.8
 • 3k Interview Questions
NeoSOFT Logo
3.9
 • 284 Interview Questions
Dr. Reddy's Logo
4.0
 • 258 Interview Questions
PayPal Logo
3.9
 • 176 Interview Questions
KEC International Logo
4.0
 • 166 Interview Questions
Hindalco Industries Logo
4.2
 • 155 Interview Questions
View all
Recently Viewed
DESIGNATION
Pyspark Developer
25 interviews
REVIEWS
Startek
No Reviews
REVIEWS
Startek
No Reviews
REVIEWS
Accenture
No Reviews
SALARIES
Amazon
No Salaries
JOBS
Amazon
No Jobs
SALARIES
Amazon
JOBS
Amazon
No Jobs
SALARIES
Startek
INTERVIEWS
Startek
100 top interview questions
Top Accenture Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter