Accenture
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
posted on 9 Dec 2024
In round one , Interviewer gave me 2 python problems based on basic data structures.
In this round Interviewer asked about pamdas and python framework questions. Few are from sql.
I appeared for an interview in Jun 2024.
S/4HANA is the next-generation business suite from SAP, featuring simplified data models and real-time analytics. Columnar storage in HANA organizes data in columns rather than rows for faster data retrieval.
S/4HANA is designed to run on the SAP HANA platform, providing real-time analytics and simplified data models.
Columnar storage in HANA stores data in columns rather than rows, allowing for faster data retrieval and...
TMG stands for Table Maintenance Generator. It is used to create table maintenance dialog programs in SAP ABAP.
TMG is used to create user-friendly interfaces for maintaining table data.
It simplifies the process of creating maintenance screens for tables.
TMG events include START-OF-SELECTION, END-OF-SELECTION, TOP-OF-PAGE, END-OF-PAGE, etc.
There are 3 types of Transport Requests in S4: Workbench Request, Customizing Request, and Cross-Client Request.
Workbench Request is used for transporting changes to repository objects like programs, function modules, etc.
Customizing Request is used for transporting changes to customizing objects like IMG activities, table entries, etc.
Cross-Client Request is used for transporting changes that are client-independent, l
To optimize code and check efficiency, use ATC checks in SAP ABAP Hana development.
Use ATC (ABAP Test Cockpit) checks to analyze code quality and performance.
ATC checks can identify potential issues such as performance bottlenecks, security vulnerabilities, and coding standards violations.
Optimize code based on ATC check results to improve efficiency and maintainability.
Regularly run ATC checks to ensure code quality a...
CDS Views are virtual database views in SAP HANA. They can be parameter-based and have associations. They are published using annotations.
CDS Views are virtual database views in SAP HANA
Syntax to create parameter-based views: @AbapCatalog.sqlViewName: 'view_name' @AccessControl.authorizationCheck: #NOT_REQUIRED define view view_name(parameter_name) as select from table_name where field_name = :parameter_name
Syntax to c...
I have worked most on SAP MM module. Some t-codes are ME21N, ME51N. Standard table is EKKO.
Worked most on SAP MM module
T-codes: ME21N, ME51N
Standard table: EKKO
Enhanced ME21N transaction to include additional fields
WRICEF stands for Workflow, Reports, Interfaces, Conversions, Enhancements, and Forms. It is a methodology used in SAP development projects.
Workflow - designing and implementing automated business processes
Reports - creating custom reports to analyze data
Interfaces - integrating SAP with external systems
Conversions - migrating data from legacy systems to SAP
Enhancements - customizing standard SAP functionality
Forms - d...
Authorization in SAP ABAP Hana Developer is used to control access to specific functionalities or data within the system.
Authorization is helpful in ensuring that only authorized users can perform certain actions or access certain data in the system.
It helps in maintaining data security and preventing unauthorized access.
Authorizations are created using roles, profiles, and authorization objects in SAP.
For example, a u...
Lock objects are used in SAP ABAP to manage concurrent access to shared data. They prevent multiple users from changing the same data simultaneously.
Lock objects are used to control access to shared data in SAP systems.
They help prevent data inconsistencies that can occur when multiple users try to change the same data at the same time.
Lock objects are created using the ENQUEUE and DEQUEUE function modules in ABAP.
They...
In HANA, select(7.5) statement allows for specifying the number of records to be fetched at a time.
In HANA, you can use the addition 'UP TO n ROWS' to limit the number of records fetched.
In ECC, there is no such addition available in the select statement.
Example: SELECT * FROM table_name INTO @DATA(lt_data) UP TO 100 ROWS.
I appeared for an interview before Mar 2024.
What people are saying about Accenture
I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.
Basic Apex coding questions
Apex sharing allows developers to control access to records based on criteria.
Apex sharing rules can be used to extend sharing access beyond the organization-wide defaults.
Apex managed sharing allows developers to programmatically share records with specific users or groups.
Sharing reasons can be used to define the reason for sharing a record in Apex.
Apex sharing can be enforced using the 'with sharing' keyword in Apex
Accenture interview questions for popular designations
Snowflake follows a multi-cluster, shared data architecture with separate compute and storage layers.
Snowflake has a central data repository where all data is stored in a columnar format
It uses virtual warehouses to separate compute resources from storage, allowing for independent scaling
Data is stored in multiple micro-partitions, enabling efficient data retrieval and processing
Snowflake's architecture supports automa
Data warehousing is the process of collecting, storing, and managing data from various sources for analysis and reporting.
Data warehousing involves extracting data from multiple sources and consolidating it into a central repository.
It is used for analyzing historical data to make informed business decisions.
Data warehousing helps in creating a single source of truth for an organization's data.
Examples of data warehous...
Get interview-ready with Top Accenture Interview Questions
I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.
Constructors in Python are special methods used for initializing objects. They are defined using the __init__() method.
Constructors are called automatically when a new instance of a class is created.
They are used to initialize instance variables within the object.
Constructors are defined using the __init__() method in Python.
Example: class MyClass: def __init__(self, x): self.x = x obj = MyClass(5)
Use numpy to calculate mean, median, and standard deviation of an array.
Import numpy library: import numpy as np
Create an array: arr = np.array([1, 2, 3, 4, 5])
Calculate mean: mean = np.mean(arr)
Calculate median: median = np.median(arr)
Calculate standard deviation: std_dev = np.std(arr)
Generators in Python are functions that allow you to iterate over a sequence of items without storing them all in memory at once.
Generators are created using a function with 'yield' instead of 'return'.
They are used to generate a series of values on the fly.
Generators are memory efficient as they only compute the next value when needed.
They can be iterated over using a for loop or by calling the 'next()' function.
Shallow copy creates a new object but does not duplicate nested objects, while deep copy creates a new object with all nested objects duplicated.
Shallow copy only copies the references of nested objects, not the objects themselves
Deep copy creates new instances of all nested objects
Example: Shallow copy - Object.assign({}, originalObject); Deep copy - JSON.parse(JSON.stringify(originalObject));
Lists and tuples are data structures in Python used to store multiple items.
Lists are mutable, ordered collections of items enclosed in square brackets, while tuples are immutable, ordered collections enclosed in parentheses.
Lists can be modified after creation, while tuples cannot be changed once created.
Lists are typically used for storing homogeneous items, while tuples are used for heterogeneous items.
Example of a ...
REST API is a set of rules and conventions for building and interacting with web services.
REST stands for Representational State Transfer
Uses standard HTTP methods like GET, POST, PUT, DELETE
Data is transferred in JSON or XML format
Stateless communication between client and server
Example: GET request to retrieve user data from a server
Multithreading is the ability of a CPU to execute multiple threads concurrently.
Multithreading allows multiple threads to run within the same process.
Each thread can perform different tasks simultaneously.
Examples include running a background task while the main application continues to run.
Multithreading can improve performance by utilizing multiple CPU cores efficiently.
I applied via Referral and was interviewed in May 2024. There was 1 interview round.
Yes, I faced challenges while creating the DevOps pipeline.
One challenge was integrating multiple tools and technologies into the pipeline.
Another challenge was ensuring smooth communication and collaboration between different teams involved in the pipeline.
I also faced challenges in automating the testing and deployment processes to achieve continuous integration and continuous delivery.
Dealing with legacy systems and...
Containers in Kubernetes communicate with each other through networking and service discovery mechanisms.
Containers within the same pod can communicate over localhost.
Containers in different pods can communicate using Kubernetes services.
Kubernetes assigns each pod a unique IP address for communication.
Kubernetes also supports DNS-based service discovery for containers.
Restricting communication between Kubernetes pods can be achieved using network policies.
Use Network Policies in Kubernetes to define rules for pod-to-pod communication
Specify which pods are allowed to communicate with each other based on labels
Deny all traffic by default and only allow specific traffic as needed
Example: Define a network policy to allow communication only between pods with label 'app=frontend' and 'app
A virtual private cloud (VPC) or Vnet is a private network in the cloud that allows you to isolate resources and control network traffic.
VPC/Vnet provides a secure and isolated environment for resources in the cloud.
It allows you to define your own IP address range, subnets, route tables, and network gateways.
VPC/Vnet helps in creating a secure connection between on-premises data centers and cloud resources.
It is used ...
Ansible is a popular automation tool used in DevOps for configuration management, application deployment, and orchestration.
Ansible is agentless, meaning it does not require any software to be installed on the nodes being managed.
It uses YAML syntax for writing playbooks, which are used to define automation tasks.
Ansible can be used for tasks such as provisioning servers, deploying applications, and managing configurat...
Client based development is a software development approach where the client's needs and feedback are prioritized throughout the development process.
Focus on meeting client requirements and expectations
Regular communication and feedback from the client
Iterative development cycles based on client input
Client involvement in decision-making processes
Examples: Agile development, customer-centric design
Resilience testing is a type of testing that evaluates a system's ability to recover from failures and continue functioning.
Resilience testing involves intentionally introducing failures or disruptions to a system to see how it responds.
The goal of resilience testing is to identify weaknesses in the system's design or implementation that could lead to downtime or data loss.
Examples of resilience testing include simulat...
DevOps KPI are key performance indicators used to measure the success of DevOps practices in an organization.
DevOps KPIs should align with business goals and objectives.
Examples of DevOps KPIs include deployment frequency, lead time for changes, mean time to recover, and change failure rate.
Monitoring KPIs helps in identifying areas for improvement and optimizing DevOps processes.
Various branching strategies in version control systems help manage code changes effectively.
Mainline/Branch by Release: Each release has its own branch for bug fixes and maintenance.
Feature Branching: Each new feature is developed in a separate branch and merged back to main branch after completion.
Gitflow Workflow: Uses main, develop, feature, release, and hotfix branches for a structured workflow.
Trunk-Based Develop...
Feature branching and task branching are strategies used in version control systems to manage development tasks.
Feature branching involves creating a separate branch for each new feature being developed, allowing for isolation and independent development.
Task branching is similar to feature branching but is used for smaller tasks or bug fixes.
Both feature branching and task branching help in organizing and managing cod...
Continuous delivery focuses on automating the software delivery process up to production, while continuous deployment automatically deploys every change to production.
Continuous delivery involves automating the software delivery process up to production, ensuring that code is always in a deployable state.
Continuous deployment goes a step further by automatically deploying every change that passes automated tests to pro...
DevOps methodology consists of various phases including plan, code, build, test, release, deploy, operate, and monitor.
Plan: Define goals, set priorities, and create a roadmap.
Code: Develop and review code changes.
Build: Compile the code and create executable files.
Test: Verify code changes through automated testing.
Release: Deploy changes to production environment.
Deploy: Automate deployment process to various environ...
Blue green deployment pattern is a software release strategy that reduces downtime and risk by running two identical production environments.
In blue green deployment, one environment (blue) is currently live and serving production traffic, while the other environment (green) is idle.
Once the new version of the software is deployed to the green environment and tested thoroughly, traffic is switched from the blue to the ...
Key elements in continuous testing tools include automation, integration with CI/CD pipelines, reporting and analytics, scalability, and support for various testing types.
Automation of test cases to ensure quick feedback on code changes
Integration with CI/CD pipelines for seamless testing in the software delivery process
Reporting and analytics capabilities to track test results and identify issues
Scalability to handle ...
Centralized VCS stores all versions of files in a central server, while distributed VCS allows each user to have a full copy of the repository.
Centralized VCS has a single point of failure, while distributed VCS is more resilient.
In centralized VCS, users need constant connection to the central server, while distributed VCS allows offline work.
Examples of centralized VCS include SVN and CVS, while Git is a popular dist
Setting up a VPC in Azure involves creating a virtual network, subnets, and configuring security groups.
Create a virtual network in the Azure portal
Define subnets within the virtual network
Configure network security groups to control inbound and outbound traffic
Establish peering connections with other VPCs if needed
IAC stands for Infrastructure as Code, which involves managing and provisioning infrastructure through code. Configuration management involves managing and maintaining the state of systems.
IAC allows for automating the process of setting up and managing infrastructure using code
Configuration management ensures that the desired state of systems is maintained consistently
Tools like Terraform, Ansible, and Puppet are comm...
Salesforce profile defines what a user can do, while role defines what a user should do.
Profiles control access to objects, fields, and records in Salesforce.
Roles define the hierarchy of users in an organization.
Profiles determine the permissions and settings available to a user.
Roles determine the level of access a user has to records owned by other users.
A user can have multiple profiles but only one role.
Cardinality refers to the uniqueness of values in a column or relationship.
Cardinality is the number of unique values in a column or relationship.
High cardinality means a column has many unique values, while low cardinality means few unique values.
For example, a column like 'Customer ID' may have high cardinality, while 'Gender' may have low cardinality.
SQL query to retrieve data from a table
Use SELECT statement to specify columns to retrieve
Use FROM statement to specify the table to retrieve data from
Use WHERE statement to filter the data based on conditions
The duration of Accenture interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 1.6k interviews
Interview experience
based on 58.7k reviews
Rating in categories
Application Development Analyst
39k
salaries
| ₹3 L/yr - ₹12 L/yr |
Application Development - Senior Analyst
27.4k
salaries
| ₹7 L/yr - ₹20.2 L/yr |
Team Lead
24.9k
salaries
| ₹7.2 L/yr - ₹25.7 L/yr |
Senior Software Engineer
18.2k
salaries
| ₹6 L/yr - ₹20 L/yr |
Senior Analyst
17.9k
salaries
| ₹5.5 L/yr - ₹21.3 L/yr |
TCS
Cognizant
Capgemini
Infosys