Tip 1 : Practice at least 100 questions of coding
Tip 2 : Practice Data structures questions.
Tip 1 : Never lie about anything on resume
Tip 2 : Have some projects on resume
MCQs- Aptitude + Quantitative ( if we clear this round then only we can go for coding round).
2 questions came in coding round



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
A positive integer of n digits is called an Armstrong number of order n (order is number of digits) if.
abcd… = pow(a,n) + pow(b,n) + pow(c,n) + pow(d,n) + ….



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
1) Find length of str. Let length be n.
2) Initialize low and high indexes as 0 and n-1 respectively.
3) Do following while low index ‘l’ is smaller than high index ‘h’.
…..a) If str[l] is not same as str[h], then return false.
…..b) Increment l and decrement h, i.e., do l++ and h–.
Basic Hr questions was asked.
This round mainly focus on projects
Q1. Tell me about yourself
Q2. Tell me about your projects.
Q3. What are your hobbies?
Q4. why do you want to join Accenture
Tip 1 : Do interesting projects
Tip 2 : Don't be overconfident.

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: