Accenture Recruitment Process 2023 Pass-out | Apply Now Fast | Latest Jobs

News Guard Verified Post

If you are in your final year of Graduation/Post-graduation (2023 & 2024 pass-outs) and are interested in exploring opportunities with Accenture, then this article is for you. Here we will cover all the details about Accenture Recruitment Process.

Accenture Recruitment Process
Accenture Recruitment

Accenture Recruitment for 2023 Pass-Outs | Roles and Packages

This year Accenture recruitment for 2023 pass-outs has come up with two roles with exciting packages. They are as follows.

  1. Associate Software Engineer (4.5 LPA)
  2. Advanced Associate Software Engineer (6.5 LPA)

Accenture Recruitment for 2023-24 pass-outs | Packages

Given below are details about the packages offered by Accenture.

DetailAssociate Software EngineerAdvanced Associate Software Engineer
Total CompensationINR 4,50,000INR 6,50,528
Fixed payINR 3,83,000INR 5,41,500
Variable pay (based on performance)INR 32,500INR 84,500
One-time joining bonusINR 50,000
(Payable upon successful completion of initial training as per company process)
INR 25,000
(Payable upon successful completion of initial training as per company process)
BenefitsINR 9,500
(Gratuity and Insurance Premium)
INR 13,000
(Gratuity and Insurance Premium)

Advanced Associate Software Engineer Responsibilities

  • Developing software, end to end across all layers (front-end, middle layer, backend, test automation, and deployment) in an agile delivery model and taking a user story to a finished product
  • Work on networking, database, UI, API, and Security
  • Responsibilities include Analysis and Design, Development, Automated Code Review, Unit Testing / Automation / Performance Testing, Automated Build, and Deployment
  • Design, build, test, assemble, and configure the application using business requirement

Students who are able to clear the assessment for the role of Associate Software Engineer will have an opportunity to attempt the assessment for the role of Advanced Associate Software Engineer.

Associate Software Engineer Responsibilities

  • Design, build, test, assemble, support, and configure the application using business requirements
  • Understand business drivers that will impact performance and deliver software to those expectations
  • Bake technology trends into solutions; Participate in the development of automation solutions, new functionality, and technologies and integrate them into existing solutions
  • Responsible for incident resolution and support extended to customers through voice interaction/email/chat/remote support

Accenture Recruitment for 2023-24 Pass-Outs | Eligibility Criteria

Here are the official eligibility criteria for 2023 pass-outs to appear for the Accenture On-Campus Recruitment Process.

Item Detail
Year of passing out2023
Degrees and streamsRegular (Fulltime) B.E/B.Tech/M.Tech/M.E/MCA/MSc (CS,IT)
Academic gapA maximum one-year gap in education (post 10th standard till completion of graduation)
BacklogsNo active backlogs at the time of the recruitment process and onboarding
Other important detailsCandidates should not have appeared for Accenture Recruitment Assessment / Interview Process in past three months.

Accenture Recruitment for 2023-24 Pass-Outs | Recruitment Pattern

Here is the actual recruitment process & pattern for Accenture hiring for 2023 pass-outs. This pattern is observed in the latest Accenture on-campus recruitment drive.

StageSectionNumber of Questions
1English Ability17
1Critical Reasoning and Problem Solving18
1Abstract Reasoning15
1Common Applications and MS Office12
1Pseudo Code18
1Networking Security and Cloud10
2Coding2
3Communication TestNA
  • Duration for Stage 1: 1 hr 30 minutes
  • Duration for Stage 2: 45 minutes
  • Stage 1 is an elimination round.
  • Stages 2 and 3 are mandatory, but not elimination rounds.
  • Those who clear Stage 1 and attempt Stage 2 will be invited to Stage 3.
  • Stage 3’s performance will be used as a reference in the Interview.
  • Depending on overall performance at a zonal level, the package would be assigned.

Here are some of the key insights from the Accenture Online test this year.

Assessment PlatformInter-sectional NavigationIntra-sectional NavigationMarking Scheme
AON-CocubesAllowedAllowedNo Negative Marking

Also Read,


System Requirements for Accenture Recruitment Process

Here are the official system requirements to participate in the Accenture Recruitment Process.

Desktop or laptop requisites:

  • Webcam and microphone (USB or 3.5 mm jack microphones, NOT Bluetooth headsets/ earphones or system mic)
  • The Laptop/desktop being used for the process must be enabled with a good quality webcam and microphone.
  • RAM & Processor: 4GB+ RAM and i3 5th generation 2.2 Ghz or equivalent/higher
  • Operating System: Windows 8 or 10
  • Google Chrome browser: Latest 5 Versions

Internet Connectivity:

  • A stable internet connection of 2Mbps+ enabled through a broadband connection, do avoid unstable 3G/4G networks.
  • VPN/ Proxy must be disabled

Headsets for communication assessment:

  • It’s highly recommended to use a USB-enabled Headset with a microphone, or a good quality headset with a single jack – 3.5 mm having a microphone.
  • Students must avoid using Bluetooth headsets or using system speakers and microphones.

Accenture Interview Questions | Technical & HR Interview Questions

Accenture interview questions for freshers asked in the Accenture interview process are discussed here. These will help you prepare for both Accenture technical interview round as well as the Accenture HR interview round. These interview questions were collected from students who have recently attended Accenture interviews.

Technical Accenture Interview Questions

Accenture technical interview will focus on the below-mentioned areas. You just need to be prepared with these in advance.

  • Subjects of Interest
  • Projects mentioned in the resume and the technologies used in them.
  • Basics of C and C++

Below are a few technical interview questions asked in the Accenture interview process.

1) What are the features of the C language?

  • Programs written in C are efficient and fast. This is due to its variety of data types and powerful operators.
  • C language is the most widely used language in operating systems and embedded system development today.
  • Structured programming language
  • Machine Independent or Portable

2) What is the difference between the local variable and global variable in C?

ComparisonsLocal variableGlobal variable
DeclarationA variable that is declared inside
function or block is called Local variable
A variable that is declared outside
function or block is called global variable
ScopeThe scope of a variable is available within
a function in which they are declared.
The scope of a variable is available throughout 
the program.

3) What is recursion in C?

When a function calls itself and this process is known as recursion. The function that calls itself is known as a recursive function.

4) What is the usage of the pointer in C?

Accessing array elements, Dynamic memory allocation, Call by Reference and Data Structures like a tree, graph, linked list, etc

ADVERTISEMENT

CONTINUE READING BELOW

5) What is an auto keyword in C?

In C, every local variable of a function is known as an automatic (auto) variable. Variables that are declared inside the function block are known as local variables. The local variables are also known as auto variables. It is optional to use an auto keyword before the data type of a variable. If no value is stored in the local variable, then it consists of a garbage value. 

6) What is the maximum length of an identifier?

It is 32 characters ideally but implementation-specific.

7) What is an infinite loop?

A loop running continuously for an indefinite number of times is called the infinite loop.

8) What functions are used for dynamic memory allocation in C language?

malloc(), calloc(), realloc(), free()

9) Can we compile a program without a main () function?

Yes, we can compile, but it can’t be executed.

10) What is the newline escape sequence?

The new line escape sequence is represented by “n”. It inserts a new line on the output screen.

11) Difference between C and C++?

CC++
C language was developed by Dennis RitchieC++ language was developed by Bjarne Stroustrup
C is a structured programming languageC++ supports both structural and object – oriented programming
C is a subset of C++C++ is a superset of C
In C language, Data and Functions are free entities.In the C++ language, both the data and functions are encapsulated together in the form of a project.
C doesn’t support data hiding. Therefore, the data can be used by the outside world.C++ supports data hiding. Therefore the data can’t be used by the  outside world.

Also Read,


12) What are the various OOPs concepts in C++?

Class, Object, Abstraction, Encapsulation, Inheritance, Polymorphism, and Data binding.

13) What are the different types of polymorphism in C++?

  • Run-time Polymorphism
  • Compile-time Polymorphism

14) How delete [] is different from delete?

Delete is used to release a unit of memory, and delete [] is used to release an array.

15) What is an object?

The Object is the instance of a class. A class provides a blueprint for objects. So you can create an object from a class. The objects of a class are declared with the same sort of declaration that we declare variables of basic types.

16) What is a constructor? What is a destructor?

A Constructor is a special method that initializes an object. Its name must be the same as the class name.

A Destructor is used to delete any extra resources allocated by the object. A destructor function is called automatically once the object goes out of the scope.

17) What is virtual inheritance?

Virtual inheritance facilitates you to create only one copy of each object even if the object appears more than once in the hierarchy.

18) What is an overflow error?

It is a type of arithmetical error. It happens when the result of an arithmetical operation is greater than the actual space provided by the system.

HR Accenture Interview Questions

Accenture Hr interview questions will mostly aim to test your communication skills and confidence levels. So you need to prove good in both these aspects. A few common Accenture interview questions asked in the HR round are:

  • Why Accenture?
  • Was there a time when you dealt with conflict in a team? How did you deal with it?
  • What are you looking for in a company?
  • Where do you see yourself in 5 years?
  • Why should we hire you?
  • What do you know about Accenture?

Search Jobs | Accenture


Accenture Recruitment Process | 2023 Pass-Outs | Apply Now
Image

Accenture Recruitment Process | 2023 Pass-Outs Jobs | Graduation/Post-Graduation, Exploring opportunities with Accenture can Apply Here

Salary Currency: INR

Payroll: MONTH

Date Posted: 2023-06-26

Posting Expiry Date: 2023-12-31

Employment Type : FULL_TIME

Hiring Organization : Accenture | India

Organization URL: https://afpr.co.in/accenture-recruitment-process-2023-pass-out-apply-now/

Organization Logo: https://www.accenture.com/t20180820T081710Z__w__/in-en/_acnmedia/Accenture/Dev/Redesign/Acc_Logo_Black_Purple_RGB.png

Location: PostalAddress, India, India, India, 400029, India

Education Required:

  • Bachelor Degree