Add office photos
Employer?
Claim Account for FREE

Accenture

3.9
based on 52.4k Reviews
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by

3500+ Interview Questions and Answers

Updated 17 Dec 2024
Popular Designations
Q1. Triplets with Given Sum

You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

An array is said to have a...read more

View 4 more answers

Q2. 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 126 more answers
Q3. LCA of three Nodes

You have been given a Binary Tree of 'N' nodes where the nodes have integer values and three integers 'N1', 'N2', and 'N3'. Find the LCA(Lowest Common Ancestor) of the three nodes represented ...read more

View 3 more answers
Q4. Sum of even & odd

Write a program to input an integer N and print the sum of all its even digits and sum of all its odd digits separately.

Digits mean numbers, not the places! That is, if the given integer is "1...read more
View 6 more answers
Discover null interview dos and don'ts from real experiences
Q5. Find Duplicate

You have been given an integer array/list(ARR) of size N which contains numbers from 0 to (N - 2). Each number is present at least once. That is, if N = 5, the array/list constitutes values rangin...read more

View 3 more answers

Q6. 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
Are these interview questions helpful?
Q7. Reverse String

You are given a string ‘S’. You are also given ‘M’ integers in an array ‘A’. You perform ‘M’ operations on this string. The operations are given in an array ‘A’ of size ‘M’.

You perform the operat...read more

View 2 more answers
Q8. Armstrong Number

You are given an integer ‘NUM’ . Your task is to find out whether this number is an Armstrong number or not.

A k-digit number ‘NUM’ is an Armstrong number if and only if the k-th power of each d...read more

View 2 more answers
Share interview questions and help millions of jobseekers 🌟
Q9. Kth Smallest and Largest Element of Array

You are given an array ‘Arr’ consisting of ‘N’ distinct integers and a positive integer ‘K’. Find out Kth smallest and Kth largest element of the array. It is guaranteed...read more

View 4 more answers

Q10. 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 191 more answers
Q11. Maximum Subarray Sum

You are given an array/list ARR consisting of N integers. Your task is to find the maximum possible sum of a non-empty subarray(contagious) of this array.

Note: An array C is a subarray of a...read more

View 4 more answers
Q12. Product Of Array Except Self

You have been given an integer array/list (ARR) of size N. You have to return an array/list PRODUCT such that PRODUCT[i] is equal to the product of all the elements of ARR except ARR...read more

View 3 more answers
Q13. Check If The String Is A Palindrome

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols ...read more

View 3 more answers
Q14. Tiling Problem

You have been given a board where there are '2' rows and 'N' columns. You have an infinite supply of 2x1 tiles, and you can place a tile in the following ways:

1. Horizontally as 1x2 tile 2. Verti...read more
View 3 more answers
Q15. Equilibrium Index

You are given an array Arr consisting of N integers. You need to find the equilibrium index of the array.

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

View 3 more answers
Q16. Puzzle Question

Which number would replace the underline marked in the series 20, 40,100, ...., 820?

View 2 more answers
Q17. Balanced parentheses

Given an integer ‘N’ representing the number of pairs of parentheses, Find all the possible combinations of balanced parentheses with the given number of pairs of parentheses.

Note :

Conditi...read more
View 2 more answers
Q18. Pair Sum

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

Note:

Each pair shou...read more
View 3 more answers
Q19. Chocolate Problem

Given an array/list of integer numbers 'CHOCOLATES' of size 'N', where each value of the array/list represents the number of chocolates in the packet. There are ‘M’ number of students and the t...read more

View 2 more answers
Q20. Find Duplicates In Array

You are given an array/list 'ARR' consisting of N integers, which contains elements only in the range 0 to N - 1. Some of the elements may be repeated in 'ARR'. Your task is to find all ...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.

View 2 more answers
Q21. Evaluation of postfix expression

An expression is called the postfix expression if the operator appears in the expression after the operands.

Example :

Infix expression: A + B * C - D Postfix expression: A B + C...read more
Add your answer

Q22. 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 94 more answers
Q23. Print Permutations - String

You are given an input string 'S'. Your task is to find and return all possible permutations of the input string.

Note:
1. The input string may contain the same characters, so there w...read more
View 2 more answers
Q24. Middle Of Linked List

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

If there are an odd number of elements, return the middle element if there are ev...read more

View 3 more answers

Q25. 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

Q26. 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 119 more answers

Q27. 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
Q28. Ninja And Candies

Ninja is a boy who lives in ninjaland. Every day, during the morning he gets 1 coin from his mother. He wants to buy exactly ‘N’ candies. Each of the candies cost 2 coins usually and 1 coin if ...read more

View 2 more answers
Q29. Nth Fibonacci Number

Nth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

 F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 

Provided N you have to find out the ...read more

View 4 more answers

Q30. 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

Q31. 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

Q32. 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

Q33. 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 2 more answers

Q34. 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

Q35. 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

Q36. 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
Q37. Find prime numbers

You are given a positive integer ‘N’. Your task is to print all prime numbers less than or equal to N.

Note: A prime number is a natural number that is divisible only by 1 and itself. Example ...read more

View 4 more answers
Q38. Ways To Make Coin Change

You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a change fo...read more

View 4 more answers
Q39. Replace Spaces

You have been given a string 'STR' of words. You need to replace all the spaces between words with “@40”.

Input Format:
The first line contains a single integer ‘T’ representing the number of test...read more
View 2 more answers
Q40. Stack using queue

Implement a Stack Data Structure specifically to store integer data using two Queues.

There should be two data members, both being Queues to store the data internally. You may use the inbuilt Q...read more

View 3 more answers

Q41. 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

Q42. 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
Q43. Second largest element in the array

You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

Note:
a) Duplicate elements may be present. b) If no...read more
View 3 more answers
Q44. Check if two trees are Mirror

You are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not.

Two trees a...read more

View 2 more answers
Q45. Sum At Kth Level

You are given a ‘root’ of the binary tree, and you have to return the sum of all nodes present at the Kth level from the top. The root node is considered as level 1, and below it is level 2, and...read more

View 2 more answers

Q46. 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
Q47. Equilibrium indices of a Sequence

You have been given an array/list 'SEQUENCE' denoting the sequence of 'N' integers. Your task is to find the equilibrium indices of the sequence in 'SEQUENCE'.

The equilibrium i...read more

View 4 more answers
Q48. Print characters at prime indices

You are given a string 'STR' of length 'N'. You need to return a string that will contain all the characters present at the prime indices of the original string. The relative or...read more

View 3 more answers
Q49. Replace character

Given an input string S and two characters c1 and c2, you need to replace every occurrence of character c1 with character c2 in the given string.

Input Format :
Line 1 : Input String S Line 2 :...read more
Add your answer

Q50. 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
Q51. String Transformation

Given a string (STR) of length N, you have to create a new string by performing the following operation:

Take the smallest character from the first 'K' characters of STR, remove it from STR...read more

View 2 more answers

Q52. 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
Q53. Ninja And Alien

An alien spaceship arrived at our planet Earth. An alien dropped his dictionary of words on the way back to his planet. Ninja found that dictionary and now wants to create the order of the charac...read more

Add your answer

Q54. 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

Q55. 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
Q56. Subarray With Given Sum

Given an array ARR of N integers and an integer S. The task is to find whether there exists a subarray(positive length) of the given array such that the sum of elements of the subarray eq...read more

View 3 more answers

Q57. 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

Q58. 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

Q59. 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 2 more answers
Q60. MCQ's

There were 6 sections in which MCQ was divided.
Section 1- English and Verbal Reasoning (17 Questions)
Section 2 - Quantitative Reasoning (12 Questions)
Section 3 - Numerical Ability (15 Questions)
Section 4 -...read more

View 3 more answers

Q61. 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 12 more answers

Q62. 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 2 more answers

Q63. 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
Q64. BFS in Graph

You are given an undirected and disconnected graph G(V, E) having V vertices numbered from 0 to V-1 and E edges. Your task is to print its BFS traversal starting from the 0th vertex.

BFS or Breadth-...read more

Add your answer
Q65. Alien dictionary

You have been given a sorted (lexical order) dictionary of an alien language. Write a function that finds the order of characters in the alien language. This dictionary will be given to you in t...read more

View 2 more answers

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

Ans.

Use the 'accept' attribute in the input tag to specify accepted file types.

  • Add the 'accept' attribute to the input tag.

  • Set the value of the 'accept' attribute to 'image/jpeg, image/png'.

View 2 more answers
Q67. Reverse the String

You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

For example:

 If the given string is: STR = "abcde". You h...read more
Add your answer

Q68. 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 5 more answers
Q69. Reverse Number

Ninja is feeling very bored and wants to try something new. So, he decides to find the reverse of a given number. But he cannot do it on his own and needs your help.

Note:

If a number has trailing...read more
Add your answer
Q70. SQL Questions

What is difference between foreign key and primary key?
Two to three select statements on MySQL server.

Add your answer

Q71. 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
Q72. Arithmetic Expression Evaluation

You are given a string ‘expression’ consists of characters ‘+’, ‘-’, ‘*’, ‘/’, ‘(‘, ‘)’ and ‘0’ to ‘9’, that represents an Arithmetic Expression in Infix Notation. Your task is t...read more

Add your answer

Q73. 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 1 answer
Q74. MCQ Question

An alloy contains Brass, Iron, and Zinc in the ratio 2:3:1 and another contains Iron, zinc, and lead in the ratio 5:4:3. If equal weights of both alloys are melted together to form a third alloy, th...read more

Add your answer
Q75. Binary Tree

Consider the node of a complete binary tree whose value is stored in data[i] for an array implementation.

If this node has a right child, where will the right child's value be stored?

Add your answer

Q76. 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
Q77. Maximum Subarray Sum

Given an array of numbers, find the maximum sum of any contiguous subarray of the array.

For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would ...read more

View 3 more answers
Q78. MCQ Questions

Mcqs related to OS , round robin , compiler , scheduling etc.
Mcqs related to Networking.

Coding mcqs

View 3 more answers

Q79. 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

Q80. 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

Q81. 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
Q82. Valid Parentheses

You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

Input Format:
The first line contains an Integer 'T' which denot...read more
Add your answer

Q83. 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

Q84. 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
Q85. Given a string, find the next smallest palindrome

You are given a number 'N' in the form of a string 'S', your task is to find the smallest number strictly greater than the given number 'N' which is a palindrome...read more

Add your answer

Q86. 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

Q87. 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

Q88. 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
Q89. Number Of Triangles In An Undirected Graph

Given an undirected graph, find how many triangles it can have where a triangle is a cyclic path of length three which begins and end at the same vertex.

#### An undire...read more

Add your answer

Q90. 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 8 more answers

Q91. 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
Q92. Puzzle Question

If in a cricket one day match, there were no wide balls, no wides, no extras and no overthrows.

What is the maximum number of runs that a batsman can score in an ideal case scenario?

Add your answer
Q93. Technical Questions

All questions will be from the document that is given to students before the second round begins.
example of questions:
Can you copy paste an answer from any online source?
What is cf score?

Add your answer
Q94. Find Number Of Islands

You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0 signifies water.

A cell is said to be connected to...read more

Add your answer

Q95. 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

Q96. 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

Q97. 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.

Answering questions related to HTML, CSS, and JavaScript for an application development analyst position.

  • HTML semantic elements provide meaning to the content and improve accessibility and SEO.

  • Doctype is used to declare the HTML version and ensure proper rendering in the browser.

  • The order in which elements are seen in the browser is determined by the HTML structure and CSS positioning.

  • Different units of CSS attributes include pixels, ems, rems, percentages, and viewport units...read more

Add your answer
Q98. Binary String Operations

The Binary number system only uses two digits, 0 and 1 and number system can be called binary string. You are required to implement the following function:

int OperationsBinaryString(char...read more

Add your answer

Q99. 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

Q100. 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
1
2
3
4
5
6
7

More about working at Accenture

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

Interview Process at null

based on 3.7k interviews in the last 1 year
Interview experience
4.1
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.7
 • 6k Interview Questions
4.0
 • 596 Interview Questions
3.5
 • 299 Interview Questions
4.2
 • 237 Interview Questions
3.6
 • 213 Interview Questions
3.7
 • 142 Interview Questions
View all
Top Accenture Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
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
Get AmbitionBox app

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