Accenture
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.
Output index is a single index while output indexes is an array of indexes in Reformat component.
Output index refers to a single output field in Reformat component.
Output indexes refer to multiple output fields in Reformat component.
Output index is specified using a single integer value.
Output indexes are specified using an array of integer values.
Use UNPIVOT operator in SQL to convert a column into a row.
Use UNPIVOT operator in SQL to convert a column into a row
Syntax: SELECT * FROM (SELECT [column_name] FROM [table_name]) AS [alias_name] UNPIVOT ([new_column_name] FOR [old_column_name] IN ([column_name])) AS [alias_name]
Example: SELECT * FROM (SELECT col1, col2, col3 FROM table1) AS t UNPIVOT (val FOR col IN (col1, col2, col3)) AS u
Transpose function in Excel
Partitioning divides a table into smaller parts while bucketing groups data based on a hash function.
Partitioning is used to improve query performance by reducing the amount of data that needs to be scanned.
Bucketing is used to evenly distribute data across nodes in a cluster.
Partitioning is done based on a column or set of columns, while bucketing is done based on a hash function.
Partitioning is commonly used in datab...
I would like to discuss my salary expectations in person during the negotiation phase.
Express willingness to discuss salary expectations during negotiation phase
Avoid giving a specific number without understanding the full scope of the role and responsibilities
Highlight the importance of considering factors such as experience, skills, and market value
I worked as an Abinitio Developer in my previous job.
Developed and maintained Abinitio graphs for data integration and transformation.
Collaborated with cross-functional teams to gather requirements and design solutions.
Optimized performance of Abinitio graphs by tuning parameters and implementing best practices.
Troubleshot and resolved issues related to data processing and ETL workflows.
Participated in code reviews and...
I am an experienced Abinitio Developer with a strong background in data integration and ETL processes.
I have been working in the field of Abinitio development for the past 5 years.
I have expertise in designing and implementing complex data integration solutions using Abinitio.
I am proficient in various Abinitio components such as GDE, Co>Operating System, and EME.
I have experience in working with different databases an...
I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.
Scenario based questions were asked for which the abinitio components were to be stated.
Yes, I have developed teams in the past and my approach involves clear communication, setting goals, assigning roles based on strengths, and fostering a collaborative environment.
Clear communication is key to ensure everyone is on the same page and understands their responsibilities.
Setting clear goals helps the team stay focused and motivated towards achieving them.
Assigning roles based on individual strengths and ski...
I have worked on various projects involving data integration, ETL processes, and data warehousing using Abinitio.
Developed ETL processes to extract, transform, and load data from multiple sources into a data warehouse.
Implemented complex data transformations and business logic using Abinitio graphs and components.
Worked on performance tuning and optimization of Abinitio graphs to improve processing times.
Collaborated w...
Yes, I have worked on procedures in Abinitio development.
I have experience creating and implementing procedures in Abinitio to automate data processing tasks.
I have written complex procedures using Abinitio's graphical interface or scripting language.
I have optimized procedures for performance and efficiency.
I have debugged and troubleshooted procedures to ensure they function correctly.
I have documented procedures for
I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.
I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.
Custom hooks are created using the 'use' prefix and can be used to share logic between components.
Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.
Example of a custom hook for API call: const useFetc...
useMemo is used to memoize a value, while useCallback is used to memoize a function.
useMemo is used to memoize a value and recompute it only when its dependencies change.
useCallback is used to memoize a callback function and prevent unnecessary re-renders.
Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.
Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.
Class-based components use ES6 classes to create components, while functional components are created using functions.
Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.
Functional components are simpler and more lightweig...
Implementing the lifecycle of a React component in a functional component
Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount
Pass an empty array as the second argument to useEffect to mimic componentDidMount
Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate
Return a cleanup function inside useEffect to mimic compo
Various state management techniques in React include Context API, Redux, and local state.
Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.
Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.
Local state: Managing state within individual components using us
Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.
Redux follows a unidirectional data flow architecture.
Middlewares in Redux are functions that can intercept, modify, or dispatch actions.
Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.
Examples of popular Redux middlewares are Redu...
Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.
Variable declarations are hoisted to the top of their scope, but not their initializations.
Function declarations are fully hoisted, meaning they can be called before they are declared.
Hoisting can lead to unexpected behavior if not understood properly.
Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.
Events triggered on a child element will 'bubble up' and trigger on parent elements.
Event listeners can be attached to parent elements to handle events from multiple child elements.
Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().
Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.
Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.
Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.
Variables de...
Yes, I have experience working with semantic tags in HTML.
Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.
Understand the importance of using semantic tags for accessibility and search engine optimization.
Semantic tags help in organizing content and making it more readable for developers and browsers.
Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.
Object literals: var obj = { key: value };
Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();
ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();
Object.create() method: var obj = Object.create(pr
Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.
Shallow copy creates a new object but does not create copies of nested objects, only copies their references.
Deep copy creates a new object and also creates new copies of all nested objects.
Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(
The code will throw an error because 'a' is declared but not initialized.
The code will result in a ReferenceError because 'a' is declared but not assigned a value.
Variables declared with 'const' must be initialized at the time of declaration.
Initializing 'a' with a value before calling test() will prevent the error.
CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.
Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout
Use justify-content and align-items properties to align items in the main axis and cross axis respectively
For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout
Yes, I have utilized CSS preprocessors such as SASS and LESS.
I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.
I have also worked with LESS to improve code organization and maintainability through features like variables and functions.
The color applied will be based on the specificity of the selector, with ID having higher specificity than class.
ID has higher specificity than class in CSS
Color applied will be based on the selector with higher specificity
Example: If ID selector has color red and class selector has color blue, the color applied will be red
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions
I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.
Interview questions for Software Engineer position covering OOPS concepts, exception handling, SOLID principles, Java 8 features, and Streams.
Abstraction in OOPS: Hiding implementation details. Example: Abstract class Shape with method draw().
Encapsulation in OOPS: Bundling data and methods that operate on the data. Example: Class Employee with private fields and public getters/setters.
Inheritance in OOPS: Reusing code...
The interview questions cover various topics related to Spring framework, REST vs SOAP, JPA repository, Feign client, circuit breaker, and Spring Security.
Spring Boot provides a simpler and faster way to set up and run Spring applications compared to traditional Spring.
Common annotations in Spring include @Controller, @Service, @Repository, @Autowired, @Component, @RequestMapping, @GetMapping, @PostMapping, @PutMapping...
I applied via Campus Placement
I am a passionate software engineer with a strong background in computer science and experience in developing innovative solutions.
Completed a Bachelor's degree in Computer Science from XYZ University
Proficient in programming languages such as Java, Python, and C++
Worked on projects involving web development, database management, and machine learning
Strong problem-solving skills and ability to work in a team environmen
I was responsible for designing and implementing new features, fixing bugs, and optimizing performance in various projects.
Designed and implemented new features based on client requirements
Fixed bugs reported by QA team or end users
Optimized performance by refactoring code or improving algorithms
Collaborated with team members to ensure project deadlines were met
Yes, I am open to relocating for the right opportunity.
I am open to relocating for the right job opportunity
I am flexible and willing to move for the right position
I have relocated for previous jobs and am comfortable with the process
I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.
There are two main sections: foundation and advanced. The foundation section consists of three subsections: quantitative, reasoning, and verbal. If you pass the foundation section but do not clear the advanced section, you will be considered for either the ninja role or the digital role during the interview process. The advanced section includes advanced aptitude questions and two coding questions.
based on 2 reviews
Rating in categories
Application Development Analyst
38.9k
salaries
| ₹3 L/yr - ₹12 L/yr |
Application Development - Senior Analyst
26.2k
salaries
| ₹6.8 L/yr - ₹20.2 L/yr |
Team Lead
24.1k
salaries
| ₹7 L/yr - ₹25.3 L/yr |
Senior Software Engineer
18.3k
salaries
| ₹6 L/yr - ₹19 L/yr |
Software Engineer
17.6k
salaries
| ₹3.6 L/yr - ₹12.7 L/yr |
TCS
Cognizant
Capgemini
Infosys