Upload Button Icon Add office photos

Filter interviews by

Supra Controls Angular Developer Interview Questions and Answers

Updated 30 Jun 2023

Supra Controls Angular Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Monster and was interviewed in May 2023. There were 3 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 - Coding Test 

They called in person and gave me a task. I have to develop a responsive angular login page user name, password, login button. There should be validations for both. On successsful validation, user has to be redirected with a home page that has header, footer, side hamburger menu with some menu options and on content, a static chart with its data below. Chart.js can be used to generate that chart and dont forget, the entire home page including chart has to be responsive.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Technical Questions of Angular
  • Q2. Prepare for basic level angular interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Those people gave me enough time to complete the task.

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
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript Basics
  • Q2. Angular Questions
Round 2 - Behavioral 

(3 Questions)

  • Q1. About me and my company
  • Q2. JS & Angular Basics
  • Q3. About Projects in my resume.

Interview Preparation Tips

Topics to prepare for Infosys Angular Developer interview:
  • Angular
  • Javascript
Interview preparation tips for other job seekers - It made me realise that infosys is not the place to work. It had a school mentality and filled with senior people who like it the old way i.e they like to project authority. Going with the old way is fine. Projecting Dominance not.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your experience.
  • Ans. 

    I have 5 years of experience in developing web applications using Angular.

    • Developed responsive web applications using Angular framework

    • Implemented RESTful APIs to fetch and update data

    • Worked on optimizing performance and improving user experience

    • Collaborated with UI/UX designers to create visually appealing interfaces

  • Answered by AI
  • Q2. What is directive
  • Ans. 

    A directive in Angular is a class with a @Directive decorator that allows you to attach behavior to elements in the DOM.

    • Directives are used to manipulate the DOM, add behavior to elements, and create reusable components.

    • There are three types of directives in Angular: Component, Structural, and Attribute directives.

    • Examples of directives include ngIf, ngFor, and ngStyle.

  • Answered by AI
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. How would you share data between two unrelated angular components
  • Ans. 

    Using a shared service to communicate data between unrelated components in Angular.

    • Create a shared service with a BehaviorSubject to store and emit data

    • Inject the shared service into both components that need to share data

    • Subscribe to the BehaviorSubject in each component to receive updates

  • Answered by AI
  • Q2. How do we do lazy loading
  • Ans. 

    Lazy loading in Angular allows for loading modules only when they are needed, improving performance.

    • Lazy loading is achieved by using the loadChildren property in the route configuration.

    • Modules are loaded asynchronously when the user navigates to a route that requires them.

    • Lazy loading helps reduce the initial bundle size and improve the app's loading time.

    • Example: { path: 'admin', loadChildren: () => import('./admin/

  • Answered by AI
  • Q3. How would you take care of XSS vulnerability
  • Ans. 

    Prevent XSS vulnerability by sanitizing user input, using Angular's built-in security features, and implementing Content Security Policy.

    • Sanitize user input by using Angular's DomSanitizer to prevent execution of malicious scripts

    • Use Angular's built-in security features like SafeValue and SafeHtml to securely render user input

    • Implement Content Security Policy (CSP) to restrict the sources from which scripts can be load...

  • Answered by AI
  • Q4. How do you take data from more than one service at a time in a component
  • Ans. 

    Use observables and combineLatest operator to fetch data from multiple services in a component

    • Create observables for each service call

    • Use combineLatest operator to combine the observables and fetch data from all services at once

    • Subscribe to the combined observable to get the data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - For angular, be proficient in rxjs and ngrx

Skills evaluated in this interview

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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Building blocks of angular
  • Ans. 

    Building blocks of Angular include components, modules, services, directives, templates, and dependency injection.

    • Components are the basic building blocks of Angular applications.

    • Modules help organize the application into cohesive blocks of functionality.

    • Services are reusable code that can be injected into components.

    • Directives add behavior to the DOM elements.

    • Templates define the view of the application.

    • Dependency inj...

  • Answered by AI
  • Q2. Define Pipes and its types
  • Ans. 

    Pipes in Angular are used to transform data before displaying it in the view.

    • Pipes are used to format data in templates.

    • There are built-in pipes like DatePipe, UpperCasePipe, LowerCasePipe, etc.

    • Custom pipes can be created using @Pipe decorator.

    • Pipes can be chained together for complex transformations.

    • Example: {{ birthday | date:'dd/MM/yyyy' }} will format the birthday date.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Life cycle hooks, migration plan, features remived in html5
Round 2 - HR 

(1 Question)

  • Q1. Agile methodology
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Hooks, Parent-child communication, javascript questions like closure
Round 2 - Coding Test 

Javascript simple coding test, writing services

Round 3 - HR 

(1 Question)

  • Q1. Nothing much, salary discussion

Supra Controls Interview FAQs

How many rounds are there in Supra Controls Angular Developer interview?
Supra Controls interview process usually has 3 rounds. The most common rounds in the Supra Controls interview process are Resume Shortlist, Coding Test and One-on-one Round.
What are the top questions asked in Supra Controls Angular Developer interview?

Some of the top questions asked at the Supra Controls Angular Developer interview -

  1. Prepare for basic level angular interview questi...read more
  2. Technical Questions of Angu...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Supra Controls interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Project Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Instrumentation Design Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Supra Controls with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.2
Compare

Honeywell Automation

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview