Upload Button Icon Add office photos

Filter interviews by

AMK Technology Angular Developer Interview Questions and Answers

Updated 27 Apr 2023

AMK Technology Angular Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Basic info and skill advice
Round 3 - Technical 

(1 Question)

  • Q1. Discussion on ui Element
Round 4 - Technical 

(1 Question)

  • Q1. Discussion on angular technical Like what is @ called as in angular

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Angular routing
  • Q2. What are pipes in angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view

    • They can be used to filter, sort, or transform data in various ways

    • Examples include date pipe, currency pipe, and uppercase/lowercase pipe

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Which version of java you use?
  • Ans. 

    I use Java version 8 for Angular development.

    • I use Java 8 for its compatibility with Angular frameworks and libraries.

    • Java 8 introduced features like lambda expressions and streams which are useful in Angular development.

    • Example: I use Java 8 to write backend services for my Angular applications.

  • Answered by AI
  • Q2. What are the new features in java 8?
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces provide a way to define interfaces with a single abstract method.

    • Streams allow you to process collections of objects in a functional style.

    • Default methods allow you to add new methods to interfaces wit

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you implement a login page
  • Ans. 

    Implementing a login page involves creating a form for users to input their credentials and validating them against a database.

    • Create a login form with fields for username and password

    • Use Angular's form validation to ensure required fields are filled out

    • Send the user's credentials to a backend server for authentication

    • Upon successful authentication, redirect the user to the main application page

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular lifecycle
  • Q2. Pipes

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Different ways to inject services, Dependency injection, forChild vs forRoot, how to create reusable components,
  • Ans. 

    Answering questions related to Angular development

    • Dependency injection is a way to provide dependencies to a class

    • forRoot is used to configure services at the root level

    • forChild is used to configure services at the child level

    • Reusable components can be created by breaking down complex components into smaller ones

    • Services can be injected using constructor injection or property injection

  • Answered by AI
  • Q2. How two sibling components send data to each other, reactive form, valueChange, how to reach to the control which has an error in UI.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round was an online test it has 3 sections, Aptitude, 2 coding questions, and questions related to Angular (90 min).
2nd round online Technical Interview (30 min).
3rd round one more online Technical Interview with increased difficulty (30 min)

most of the questions were scenario-based
basics should be strong but it's not enough
Practice the feature properly with some projects and go through the angular docs.
study about services, Rxjs, DI, reactive form(with some scenarios), routes.

The 3rd round will be more focused on the experience which you have gained they will ask the questions based on scenarios that are mostly encountered.

Note:- If you have given 3rd round and HR does not contact you within a week then move on don't wait for their result keep giving interviews. Some HR doesn't have a habit to inform candidates if they are selected or rejected.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of Angular like promise and observable, parent and child and sibling component data sharing.lifecycle hooks of angular in depth.scenario of a reusable component. Basic of array and object manipulati...

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all the concepts and fundamental of JavaScript and angular and CSS first. Then practice some array and object exercise.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Angular life cycle hooks,
  • Q2. Services, component communication, @view child, route guards
  • Q3. RxJs concepts, subject, observables
  • Q4. Javascript questions and few html questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How does 2 components communicate
  • Ans. 

    Components can communicate using @Input and @Output decorators, services, and event emitters.

    • Use @Input decorator to pass data from parent to child component

    • Use @Output decorator and EventEmitter to emit events from child to parent component

    • Use services to share data between components

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response

I applied via Naukri.com

Round 1 - One-on-one 

(1 Question)

  • Q1. 1. reusable component - directives 2.scss and css 3. routing 4.authorization in app- explain login process, encryption algorithm 5.authentication in app- prevent user using Auth guards 6.explain about comp...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a custom pipe in Angular, and how is it created?
  • Ans. 

    A custom pipe in Angular is a feature that allows you to transform data in templates.

    • Custom pipes are created by implementing the PipeTransform interface in a class.

    • The class must have a transform method that takes input data and optional parameters.

    • Custom pipes are then declared in the module's declarations array and can be used in templates.

    • Example: Creating a custom pipe to format dates in a specific way.

  • Answered by AI
  • Q2. How does an Angular application bootstrap?
  • Ans. 

    Angular application bootstraps by loading the root module and then creating the component tree.

    • Angular application bootstraps by loading the root module, which is defined in the 'AppModule' class.

    • The 'AppModule' class contains metadata such as the list of components, directives, and services used in the application.

    • After loading the root module, Angular creates the component tree by instantiating the root component spe...

  • Answered by AI

AMK Technology Interview FAQs

How many rounds are there in AMK Technology Angular Developer interview?
AMK Technology interview process usually has 4 rounds. The most common rounds in the AMK Technology interview process are Technical, Resume Shortlist and HR.
How to prepare for AMK Technology Angular Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at AMK Technology. The most common topics and skills that interviewers at AMK Technology expect are HTML, Javascript, Angularjs, CSS and Database.
What are the top questions asked in AMK Technology Angular Developer interview?

Some of the top questions asked at the AMK Technology Angular Developer interview -

  1. Discussion on angular technical Like what is @ called as in angu...read more
  2. Basic info and skill adv...read more
  3. Discussion on ui Elem...read more

Tell us how to improve this page.

AMK Technology Angular Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

AMK Technology Angular Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
8 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Software Developer
7 salaries
unlock blur

₹9.5 L/yr - ₹18.3 L/yr

Talent Acquisition Specialist
7 salaries
unlock blur

₹3.9 L/yr - ₹6 L/yr

Associate Talent Acquisition
7 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

DOT NET Developer
5 salaries
unlock blur

₹6.2 L/yr - ₹9 L/yr

Explore more salaries
Compare AMK Technology with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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