Accenture off Campus Questions and Answers for 2024

Accenture Off Campus Coding Questions & Answers 2024 | Accenture interview Questions With Solution | Accenture freshers Interview Questions | Accenture Interview Questions & Answer 2024

Accenture is a global professional services company with leading capabilities in digital, cloud and security. Accenture combines unmatched experience and expertise across more than 40 industries. Accenture Company Provides strategy and consulting, engagement, technology and operational services. All of these are powered by the world’s largest network of advanced technology and intelligence operations centers. Thus Accenture which is the best company in the world has released the notification for the campus exam for the year 2024.

This notification is an opportunity for fresh graduates and professionals who want to work in Accenture. But getting selected for this competitive post is not that easy. This is possible with proper guidance and training. If you want to prepare outside this Accenture campus then knowing the previous year norms will help you prepare accordingly. You need more practice to make your exam easier. You will have to spend a lot of time to know the previous questions. This will affect your training time. As a solution, you can know Microsoft Campus Previous Questions, Accenture Selection Method etc. for off-campus preparers on our site dailyrecruitment.in.

Following the terms of Accenture previous recruitment campaigns will help you. The code will be very important for you to qualify outside the Accenture campus. Among them, you should be very strong in problem-solving. To complete coding tasks, you should choose a language you are comfortable with, such as C, C++, Java or Python. More details like Accenture Off Campus Coding Questions and Answers, Accenture Coding Questions and Answers, Accenture Interview Questions and Answers, Accenture Cut-off, Salary, Promotion, Increment and Annual Evaluation are available on this page.

Accenture Interview Questions & Answer 2024

Q) A train running at 5 km/hr and 125 meters long passes a man moving in the same direction in which the train is going, in 10 seconds. The speed of the train is:

a) 50 km/hr
b) 54 km/hr
c) 55 km/hr
d) 60 km/hr

Answer: a) 50 km/hr

Solution:

The relative speed of the train to man = (125 / 10) m/s
= 25 / 2 m/s
= (25/2 * 18/5) km/hr
= 45 km/hr
Let the relative speed of the train be x km/hr.
Therefore, x-45 = 5 or x = 50 km/hr

Q) A sum fetched a total simple interest of Rs. 4016.25 at the rate of 9 % p.a. in 5 years. What is the sum of the money or the principal amount?

a) Rs. 4462.50
b) Rs. 8032.50
c) Rs. 8900
d) Rs. 8925

Answer: d) Rs. 8925

Solution:
We know, SI = PTR/100
or, P = (SI * 100) / TR
or, P = (4016.25 * 100) / 9*5
or, P = 8925 (answer)

Q) January 1, 2008, is Tuesday. What day would lie on Jan 1, 2009?

a) Thursday
b) Sunday
c) Tuesday
d) Wednesday

Answer: a) Thursday

Solution:
In such type of questions, one needs to identify the type of year, i.e., whether the year is a normal year or is it a leap year.
So the year 2008 was a leap year. So, it has to have 2 odd days. The year following 2008 is 2009 so the first day of the year would be two days ahead of what it was in 2008. So 1st Jan 2009 would be a Thursday.

Q) If 5 spiders can catch five flies in five minutes, how many flies can hundred spiders catch in 100 minutes?

  1. 100
  2. 1000
  3. 500
  4. 2000

ANSWER: Option D

Solution5 × 5 × x = 100 × 100 × 5 ⇒ x = 2000

Q) A car travels 25km an hour faster than a bus for a journey of 500km. If the bus takes 10 hours more than the car, then the speeds of the bus and the car are

  1. 25km/hr and 40km/hr respectively
  2. 25km/hr and 60 km/hr respectively
  3. 25km/hr and 50km/hr respectively
  4. None of these

ANSWER: Option C

Accenture Coding Questions and Answers 2024

Q) What is the significance of the “super” and “this” keywords in Java?

super keyword: In Java, the “super” keyword is used to provide reference to the instance of the parent class(superclass). Since it is a reserved keyword in Java, it cannot be used as an identifier. This keyword can also be used to invoke parent class members like constructors and methods.
this Keyword: In Java, the “this” keyword is used to refer to the instance of the current class. Since it is a reserved keyword in Java, it cannot be used as an identifier. It can be used for referring object of the current class, to invoke a constructor of the current class, to pass as an argument in the method call or constructor call, to return the object of the current class.

Q) What is meant by the Friend function in C++?

A friend() function is a function that has access to private and protected members of another class i.e., a class in which it is declared as a friend. It is possible to declare a function as a friend function with the help of the friend keyword.

Syntax:

class class_name
{
//Statements
friend return_type function_name();
}

Q) What is normalization in the database?

Normalization(data normalization or database normalization) is the technique of data organization in the database to minimize data redundancy and improve data integrity. Through database normalization, we can organize the data in tables and columns, and also we can define a relationship between these tables or columns.
Below are the commonly used normalization forms:
First Normal Form(1NF)
Second Normal Form(2NF)
Third Normal Form(3NF)
Boyce-Codd Normal Form(BCNF)
Fourth Normal Form(4NF)
Fifth Normal Form(5NF)

Q) What is Pandas in Python?

Pandas is an open-source software library developed for Python and is useful in data manipulation and analysis. It provides plenty of data structures and operations such as modification of numerical tables and time series. It can deal with different types of files and is considered to be one of the important tools to have a grip on.
 Some of the attributes or methods provided by Pandas are:
axes: It returns a row axis label list.
empty: It returns true if the series is empty otherwise it returns false.
size: It returns the count of elements in the underlying data.
values: It returns the series as ndarray.
head(): It returns the n rows from the beginning of a data frame or series.
tail(): Returns the n rows from the end of a data frame or series.

Q) What is a Data Structure?

A Data Structure is a storage format that defines the way data is stored, organized, and manipulated.
Some popular data structures are Arrays, Trees, and Graphs.

Q) How do you reverse a string in Java?

• Declare a string.
• Take out the length of that string.
• Loop through the characters of the string.
• Add the characters in reverse order in the new string.
String str = “hello”;

String reverse = “”;

int length = str.length();

for (int i = 0; i < length; i++) {

reverse = str.charAt(i) + reverse;

}

System.out.println(reverse);

Q) How do you determine if a string is a palindrome?

• A string is a palindrome when it stays the same on reversing the order of characters in that string.
• It can be achieved by reversing the original string first and then checking if the reversed string is equal to the original string.
if (str.equals(reverse)) {

System.out.println(“Palindrome”);

} else {

System.out.println(“Not Palindrome”);

}

Q) Find the number of occurrences of a character in a String?

To find the number of occurrences, loop through the string and search for that character at every iteration; whenever it is found, it will update the count.
int count = 0;

char search = ‘a’;

for (int i = 0; i < length; i++) {

if (str.charAt(i) == search) {

count++;

}

}

System.out.println(count);

Q) How do you calculate the number of vowels and consonants in a String?

• Loop through the string.
• Increase the vowel variable by one whenever the character is found to be a vowel, using the if condition. Otherwise, increment the consonant variable.
• Print the values of both the vowel and the consonant count.

int vowels = 0;
int consonants = 0;
for (int k = 0; k < str.length(); k++) {
char c = str.charAt(k);
if (c == ‘a’ || c == ‘e’ || c == ‘i’ || c == ‘o’ || c == ‘u’)
vowels++;
else
consonants++;
}
System.out.println(“Vowel count is ” + vowels);
System.out.println(“Consonant count is: ” + consonants);

Accenture HR Interview Questions & Answer 2024

Q) How do you delegate responsibilities?

During the interview, a hiring manager may ask this question to determine your ability to identify team members’ strengths and assign them tasks accordingly. In your response, show the interviewer how you recognize your team’s talents and assign tasks accordingly.

Q) How do you motivate your team?

Motivation in the workplace can help lead to higher productivity levels. As a manager, it’s important to help your team members stay motivated, especially when morale levels may be low. When answering this question, consider examples of how you motivate your team during challenging times.

Q) How do you handle conflict between team members?

A hiring manager may ask this question to determine how you can address challenging moments while maintaining a positive work environment and promoting productivity. This question allows you to discuss a time you resolved tension among your team. In your answer, you can discuss how you identified the source of a conflict, explain how you analyzed the options available and describe how you found a way to resolve a conflict while satisfying everyone’s needs.

Q) How do you measure success?

Setting goals and evaluating success is an important managerial duty. This question allows the interviewer to see how you identify, set and meet goals. You may want to focus on your orientation toward group success rather than personal goals. Consider mentioning that you recognize employees may have different metrics for success depending on their specific role in the organization and their experience level.

Keep watch dailyrecruitment.in site for more upcoming jobs, study material notification.

JOB ALERT ON INSTAGRAM FOLLOW NOW>>
JOB ALERT ON TELEGRAM  JOIN NOW>>

 

Govt Jobs by Qualifications

Education & Vacancies Salary Apply Link
10th Pass Govt Jobs - 5,000 Vacancies Rs. 5,200 - 63,200 Apply Now
12th Pass Govt Jobs - 17,506 Vacancies Rs. 5,200 - 92,300 Apply Now
ITI Pass Jobs - 6,300 Vacancies Rs. 5,200 - 35,000 Apply Now
Any Graduate Jobs - 11,130 Vacancies Rs. 5,200 - 92,300 Apply Now
Central Govt Jobs Rs. 5,200 - 17,000 Apply Now
Bank Jobs - 3,000 Vacancies Rs. 5,200 - 29,200 Apply Now
Diploma Jobs - 7,556 Vacancies Rs. 5,200 - 35,000 Apply Now
BTech/BE Jobs - 5,220 Vacancies Rs. 15,000 - 1,00,000 Apply Now
Data Entry Jobs - 1,500 Vacancies Rs. 5,200 - 29,200 Apply Now
Private Jobs Rs. 10,000 - 67,700 Apply Now