Changejar Technologies
10+ Accenture Interview Questions and Answers
Q1. what happens a primitive data type is passed in a method call and non-primitive data types are passes? when would there be change in value after downstream operation and opposite
Primitive data types are passed by value, while non-primitive data types are passed by reference. Changes in value can occur after downstream operations for non-primitive data types.
Primitive data types (int, float, char, etc.) are passed by value, meaning a copy of the value is passed to the method. Changes made to the parameter inside the method do not affect the original value.
Non-primitive data types (objects, arrays, etc.) are passed by reference, meaning the memory addr...read more
Q2. what are the common annotations used in spring boot
Common annotations used in Spring Boot for backend development
1. @RestController - used to define a controller and to indicate that the return value of the methods should be directly written to the HTTP response body
2. @RequestMapping - used to map web requests to specific handler methods
3. @Autowired - used for automatic dependency injection
4. @Service - used to indicate that a class is a service
5. @Repository - used to indicate that a class is a repository
6. @Component - us...read more
Q3. whats the difference between == and .equal()?
The difference between == and .equal() is that == is used to compare values for equality, while .equal() is a method used to compare objects for equality.
The == operator is used to compare primitive data types like integers, strings, etc. for equality.
The .equal() method is used to compare objects in Java for equality. It is typically overridden in classes to define custom equality logic.
Example: int a = 5; int b = 5; System.out.println(a == b); // true
Example: String str1 = ...read more
Q4. Is Javascript multithreaded or single threaded
Javascript is single threaded.
Javascript is single threaded, meaning it can only execute one piece of code at a time.
This is because of the event loop in Javascript, which manages the execution of code.
Asynchronous operations in Javascript, like setTimeout or AJAX requests, are handled by the event loop.
Web Workers can be used to achieve multithreading in Javascript for CPU-intensive tasks.
Q5. Stream API, advantages and uses
Stream API is a powerful tool in Java for processing collections of objects.
Advantages include concise code, improved performance, and ease of parallel processing.
Uses include filtering, mapping, sorting, and reducing data in collections.
Example: stream.filter(x -> x > 5).map(x -> x * 2).collect(Collectors.toList());
Q6. DB Schema of one of my project
The DB schema of my project includes tables for users, products, orders, and reviews.
Users table with columns for user ID, username, email, password
Products table with columns for product ID, name, price, description
Orders table with columns for order ID, user ID, product ID, quantity
Reviews table with columns for review ID, product ID, user ID, rating, comment
Q7. Reverse a string
Reverse a string by iterating through the characters and swapping them
Create an empty string to store the reversed string
Iterate through the characters of the input string from end to start
Append each character to the empty string to reverse the string
Q8. 25% drop across an e-commerce funnel. Which step to be prioritised first?
The step to be prioritised first is the step with the highest drop-off rate.
Analyze data to identify the step with the highest drop-off rate
Focus on optimizing that step to reduce drop-off
Implement A/B testing to determine the most effective changes
Monitor the impact of changes on drop-off rates
Q9. Convert to Uppercase of first letter of the sentence per word
Convert first letter of each word to uppercase
Split the sentence into words
Loop through each word and capitalize the first letter
Join the words back together to form the final sentence
Q10. How to start a new category?
The steps to start a new category involve market research, identifying trends, setting goals, creating a strategy, selecting products, and launching the category.
Conduct market research to identify gaps and opportunities in the market.
Identify trends and consumer preferences to determine the potential success of the new category.
Set clear goals and objectives for the new category, including sales targets and market share.
Create a strategy for the category, including pricing, ...read more
Q11. What is your design process?
My design process involves research, ideation, prototyping, testing, and iteration to create user-centered solutions.
Research: Gather information about user needs, market trends, and competition.
Ideation: Brainstorm and generate ideas for potential solutions.
Prototyping: Create low-fidelity and high-fidelity prototypes to visualize concepts.
Testing: Conduct user testing to gather feedback and iterate on designs.
Iteration: Refine and improve designs based on feedback and testi...read more
Q12. Success Metrics for Netflix orignals
Success metrics for Netflix originals include viewer engagement, subscriber growth, critical acclaim, and awards.
Viewer engagement: Measure the number of views, watch time, and completion rates for original content.
Subscriber growth: Track the increase in subscribers attributed to the release of new originals.
Critical acclaim: Monitor reviews from critics and audience feedback to gauge the quality of the content.
Awards: Count the number of awards won by Netflix originals, suc...read more
Q13. Tools which i use?
I primarily use tools like Microsoft Office, Google Suite, and project management software.
Microsoft Office
Google Suite
Project management software
Q14. RCA on decrease in conversions
Conduct Root Cause Analysis (RCA) to identify reasons for decrease in conversions.
Review website analytics to identify drop-off points in the conversion funnel.
Analyze A/B test results to see if recent changes have impacted conversions.
Interview customers to gather feedback on potential issues with the product or website.
Check for technical issues such as slow loading times or broken links that may be affecting conversions.
Top HR Questions asked in Accenture
Interview Process at Accenture
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month