Upload Button Icon Add office photos

Filter interviews by

Accentuate Technology Application Development Analyst Interview Questions, Process, and Tips

Updated 5 Sep 2024

Top Accentuate Technology Application Development Analyst Interview Questions and Answers

View all 7 questions

Accentuate Technology Application Development Analyst Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. How Angular application works?
  • Ans. 

    Angular applications work by utilizing TypeScript to create components, services, and modules that interact with the DOM.

    • Angular applications are built using TypeScript, a superset of JavaScript.

    • Components are the building blocks of Angular applications, representing different parts of the UI.

    • Services are used to share data and functionality across components.

    • Modules help organize the application into cohesive blocks o...

  • Answered by AI
  • Q2. What are components and directives?
  • Ans. 

    Components and directives are key concepts in Angular framework for building dynamic web applications.

    • Components are the basic building blocks of Angular applications, representing a part of the user interface.

    • Directives are markers on a DOM element that tell Angular to attach a specific behavior to that element or transform it.

    • Components are directives with a template.

    • Examples: ngIf, ngFor, ngStyle, ngClass

  • Answered by AI
  • Q3. What are dependency injection in angular
  • Ans. 

    Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.

    • In Angular, dependencies are injected into a component's constructor using TypeScript.

    • This allows for better modularity, reusability, and testability of code.

    • Dependencies can be provided at the module level or at the component level.

    • Example: constructor(private userService: UserService) {}

  • Answered by AI
  • Q4. How do you call an api in angular
  • Ans. 

    To call an API in Angular, you can use the HttpClient module to make HTTP requests.

    • Import the HttpClientModule in your app module

    • Inject the HttpClient service in your component/service

    • Use HttpClient's methods like get(), post(), put(), delete() to make API calls

    • Subscribe to the Observable returned by the HTTP request to get the response data

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. Why do you want to get placed in Accenture?
  • Q2. What are ur strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong communication. My weakness is that I can be overly critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Strengths: strong communication

    • Weakness: overly critical of my own work

  • Answered by AI
  • Q3. If there is a task and someone comes for your help what will be your approach?

Interview Preparation Tips

Interview preparation tips for other job seekers - Well it depends on interviewer how easy or tough he/she wants to take, but prepare well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is power apps
  • Ans. 

    Power Apps is a Microsoft service for building and sharing custom business apps without writing code.

    • Power Apps is part of the Microsoft Power Platform.

    • It allows users to create web and mobile apps quickly and easily.

    • Users can connect to data sources like SharePoint, Excel, and SQL Server.

    • Power Apps includes a drag-and-drop interface for building apps.

    • It is used for automating business processes and improving productiv

  • Answered by AI
  • Q2. What are the types of solution
  • Ans. 

    Types of solutions include physical solutions, chemical solutions, and biological solutions.

    • Physical solutions involve changes in the physical state of matter, such as dissolving sugar in water.

    • Chemical solutions involve chemical reactions, such as mixing an acid and a base to form a salt and water.

    • Biological solutions involve living organisms, such as using bacteria to break down organic waste.

  • Answered by AI

Skills evaluated in this interview

Application Development Analyst Interview Questions Asked at Other Companies

asked in Accenture
Q1. Automerge Jobs In Informatica MDM? Running Synchronization Batch ... read more
asked in Accenture
Q2. why HTML semantic elements, doctype is used why, which will seen ... read more
asked in Accenture
Q3. What is the procedure you have followed when critical priority is ... read more
asked in Accenture
Q4. What approach are taken before defining a scenario of the test da ... read more
asked in Accenture
Q5. What are the differences between ECC and HANA on depreciation AFA ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM university (SRMU) and was interviewed before May 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and tell about your background and skills or field you are interested in.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Firstly, in this round there was 20 mins for 40 question and we had to solve as many as we can solve. There was a logical and quantitative questions where we need good mathematical skills. Also there were English language based questions in which we need a good grammar knowledge.

Round 2 - Technical 

(1 Question)

  • Q1. In this round, there was 1 coding question were we had to write a logic of particular problem so that we can pass the test cases which was given. After that they asked questions based on SQL, python, C and...
Round 3 - Behavioral 

(1 Question)

  • Q1. There was not a questions but it was just a type of discussion round about the company and position and the experience they had in the company. He is such a kind person and I was very comfortable talking t...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, positive and calm.
And good things will be there on your way! 💫

I applied via Campus Placement and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is polymerphism, encapsulation and inheritance?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. Encapsulation is the practice of hiding data and methods within a class. Inheritance is the ability of a class to inherit properties and methods from a parent class.

    • Polymorphism allows objects to be treated as if they are of different types.

    • Encapsulation helps to protect data from outside interference and misuse.

    • Inheritance allows for code reuse and promot...

  • Answered by AI
  • Q2. What are stacks and give some examples of stacks
  • Ans. 

    Stacks are a data structure that follows the Last-In-First-Out (LIFO) principle. They are used to store and retrieve data in a specific order.

    • Stacks have two main operations: push (to add an element to the top) and pop (to remove the top element)

    • Examples of stacks include the call stack in programming languages, undo/redo functionality in text editors, and the back button in web browsers

  • Answered by AI
  • Q3. Why is c++ better than C?
  • Ans. 

    C++ is better than C due to its object-oriented programming features and better memory management.

    • C++ supports object-oriented programming while C does not.

    • C++ has better memory management with features like constructors and destructors.

    • C++ has more advanced features like templates and exceptions.

    • C++ is more versatile and can be used for both low-level system programming and high-level application development.

    • C++ has a...

  • Answered by AI
  • Q4. Advantages of python over c++
  • Ans. 

    Python is easier to learn, has simpler syntax, and is more versatile than C++.

    • Python has a simpler syntax and is easier to read and write than C++.

    • Python is an interpreted language, which means it doesn't need to be compiled before running.

    • Python has a vast library of modules and packages that can be easily imported and used.

    • Python is more versatile than C++ and can be used for a wide range of applications, including w...

  • Answered by AI
  • Q5. Given an array of length N. Find all the possible combinations of 2 elements whose sum= 10
  • Ans. 

    Find all possible combinations of 2 elements in an array of length N whose sum is 10.

    • Iterate through the array and for each element, check if there exists another element in the array whose sum is 10.

    • Use a nested loop to compare each element with every other element in the array.

    • Store the pairs of elements whose sum is 10 in a new array.

    • Return the array of pairs.

  • Answered by AI
  • Q6. Why is linked list better than array?
  • Ans. 

    Linked list is better than array for dynamic memory allocation and insertion/deletion operations.

    • Linked list allows for dynamic memory allocation, while arrays have a fixed size.

    • Insertion and deletion operations are faster in linked list as compared to arrays.

    • Arrays have better cache locality and are faster for random access.

    • Linked list is used in applications like implementing stacks, queues, and hash tables.

    • Arrays ar...

  • Answered by AI
  • Q7. Explain the algorithm of binary search , merge sorting and bubble sorting
  • Ans. 

    Binary search finds the position of a target value within a sorted array. Merge sort and bubble sort are sorting algorithms.

    • Binary search: repeatedly divide the search interval in half until the target value is found or not found

    • Merge sort: divide the unsorted list into n sublists, repeatedly merge sublists to produce new sorted sublists until there is only 1 sublist remaining

    • Bubble sort: repeatedly swap adjacent eleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There was a written online test. Shortlisted candidates had to go through 2 technical PI and a HR round.

Skills evaluated in this interview

Accentuate Technology Interview FAQs

How many rounds are there in Accentuate Technology Application Development Analyst interview?
Accentuate Technology interview process usually has 1-2 rounds. The most common rounds in the Accentuate Technology interview process are HR, Technical and One-on-one Round.
What are the top questions asked in Accentuate Technology Application Development Analyst interview?

Some of the top questions asked at the Accentuate Technology Application Development Analyst interview -

  1. What are ur strengths and weakne...read more
  2. What are dependency injection in angu...read more
  3. How do you call an api in angu...read more

Tell us how to improve this page.

Accentuate Technology Application Development Analyst Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
View all
Accentuate Technology Application Development Analyst Salary
based on 19 salaries
₹5.2 L/yr - ₹10 L/yr
5% less than the average Application Development Analyst Salary in India
View more details

Accentuate Technology Application Development Analyst Reviews and Ratings

based on 15 reviews

4.1/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

4.2

Salary

4.0

Job security

4.0

Company culture

3.8

Promotions

3.5

Work satisfaction

Explore 15 Reviews and Ratings
Team Lead
40 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Associate Manager
23 salaries
unlock blur

₹18 L/yr - ₹28.5 L/yr

Application Development Analyst
19 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Application Development - Senior Analyst
17 salaries
unlock blur

₹7.4 L/yr - ₹14.5 L/yr

Software Engineer
10 salaries
unlock blur

₹6 L/yr - ₹12.1 L/yr

Explore more salaries
Compare Accentuate Technology with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview