Tip 1: Brush up on programming languages and DSA.
Tip 2: Familiarize yourself with Accenture's service trends and company values.
Tip 1: Mention good projects.
Tip 2: Make it precise and write things you know.
It was MCQ based assessment.
What is the remainder when 2222 up to 1000 digits divide by 3125?
Tip 1: use the options to solve.
Tip 2: learn basics.
It was a coding round.
The function accepts two positive integers ‘r’ and ‘unit’ and a positive integer array ‘arr’ of size ‘n’ as its argument ‘r’ represents the number of rats present in an area, ‘unit’ is the amount of food each rat consumes and each ith element of array ‘arr’ represents the amount of food present in ‘i+1’ house number, where 0 <= i.
Input:
r: 7
unit: 2
n: 8
arr: 2 8 3 5 7 4 1 2
Output:
4
Explanation:
Total amount of food required for all rats = r * unit
= 7 * 2 = 14.
The amount of food in 1st houses = 2+8+3+5 = 18. Since, amount of food in 1st 4 houses is sufficient for all the rats. Thus, output is 4.
Here’s the corrected paragraph with grammatical errors fixed:
1. Calculate the total food required: total_food_needed = r * unit
2. Calculate the total food available: total_food_available = sum(arr)
3. Compare the total food available with the total food needed:
- If total_food_available >= total_food_needed, return True (enough food)
- Otherwise, return False (insufficient food)
It was a communication round in which you had to speak the answer.
It was technical and hr round.
Introduction and Projects related questions

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: