Upload Button Icon Add office photos

Filter interviews by

Maintec Technologies Frontend Developer Intern Interview Questions and Answers

Updated 19 Oct 2024

Maintec Technologies Frontend Developer Intern Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

Build Uplers website using HTML, CSS, JS

Round 2 - Coding Test 

Exlpanation about assignment

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude round will for 30 min .

Round 2 - Coding Test 

Simple programming test

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much hard to crack just focus on aptitude and technical round
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 Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(6 Questions)

  • Q1. What are AOT and JIT in Angular?
  • Ans. 

    AOT and JIT are compilation techniques in Angular.

    • AOT (Ahead-of-Time) compilation is done at build time, converting TypeScript and HTML code into efficient JavaScript code before the browser runs it.

    • JIT (Just-in-Time) compilation is done at runtime, converting TypeScript and HTML code into JavaScript code while the application is running.

    • AOT improves performance by reducing the size of the bundle and optimizing the cod...

  • Answered by AI
  • Q2. Observables vs promises
  • Ans. 

    Observables are streams of data that can be subscribed to, while promises are a single future value.

    • Observables can handle multiple values over time, while promises can only handle a single value.

    • Observables are cancellable, while promises are not.

    • Observables support operators like map, filter, and reduce for data transformation.

    • Promises have a simpler API with just then and catch methods.

    • Observables are lazy, meaning ...

  • Answered by AI
  • Q3. What is data binding and types?
  • Ans. 

    Data binding is the automatic synchronization of data between the model and view components in an application.

    • Data binding allows for the seamless updating of data in the model and reflecting those changes in the view without manual intervention.

    • There are two types of data binding in Angular: one-way binding and two-way binding.

    • One-way binding updates the view when the model changes, while two-way binding updates both ...

  • Answered by AI
  • Q4. What is closure?
  • Ans. 

    Closure is a function that has access to its own scope, as well as the scope of its outer function.

    • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in JavaScript to create private variables and functions.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(oute

  • Answered by AI
  • Q5. Lazyloading in angular
  • Ans. 

    Lazy loading in Angular is a technique used to load modules only when they are needed, improving performance.

    • Lazy loading helps reduce initial load time by loading modules on demand

    • Implemented using loadChildren property in routes configuration

    • Lazy loaded modules have their own routes and components

  • Answered by AI
  • Q6. Directives in Angular and Types
  • Ans. 

    Directives in Angular are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or transform the DOM element and its children.

    • Directives are used to create reusable components in Angular.

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

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

  • Answered by AI
Round 2 - Coding Test 

Pagination task and filter table data

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Behavioral 

(1 Question)

  • Q1. React QA and javascript QA
Round 2 - Coding Test 

Even after answering all the questions correctly along with coding done with exact expected output you will get rejected becoz they are fake job interview or eye wash campaign it’s better to avoid.

Interview Preparation Tips

Interview preparation tips for other job seekers - BEWARE!! Do not attend this company interview panel members are fake software architects who have zero experience in coding , skills, development and optimisation techniques.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular basic, JS basic
  • Q2. Some output questions and DSA problems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't bother with this company. They're a complete waste of time. After i passed the first round, they asked me for my salary expectations, even though we'd already discussed it beforehand. Then they try to offered me the same salary as previous CTC.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reactive form with 2 fields and closure function Array function

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

He had given JavaScript questions first & he asked about the output of that questions topics related is like - function, async & await, setTimeout.

Q1. const transaction = [
{id: 1, amount: 100, type: "credit"},
{id: 2, amount: -50, type: "debit" },
{id: 3, amount: 200, type: "credit"},
{id: 4, amount: -150, type: "debit"},
{id: 5, amount: 50, type: "credit"}
];

const threshold = 100;

O/P - {
balance: 150,
exceededTransactions: [1, 3, 4, 5]
}

Q2. Anagrams
I/P: ["abc", "bca", "cat", "act"]
O/p - [["abc", "bca"],["cat","act"]]

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 problems, coding problems, java script

Round 2 - Technical 

(1 Question)

  • Q1. React version, redux middleware
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. What is difference between useState, useContext and redux
  • Ans. 

    useState is for managing state within a component, useContext is for sharing state between components, and redux is for managing global state across the application.

    • useState is a React hook used to manage state within a functional component

    • useContext is a React hook used to share state between components without prop drilling

    • Redux is a state management library that allows for managing global state across the applicatio...

  • Answered by AI
  • Q2. What is the difference between== and ===
  • Ans. 

    The difference between == and === in JavaScript

    • == is the equality operator in JavaScript, which performs type coercion before comparing two values

    • === is the strict equality operator, which does not perform type coercion and compares both value and type

    • Using === is generally considered safer and more predictable than using ==

    • Example: 1 == '1' will return true, but 1 === '1' will return false

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. What is call and apply in JS
  • Ans. 

    call and apply are methods in JS used to invoke a function with a specified 'this' value and arguments.

    • call() method is used to invoke a function with a specified 'this' value and arguments provided individually

    • apply() method is used to invoke a function with a specified 'this' value and arguments provided as an array

    • Both methods are used to borrow methods from other objects, and to set the 'this' value explicitly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do homework first then prepare your self before interview

Skills evaluated in this interview

Maintec Technologies Interview FAQs

How many rounds are there in Maintec Technologies Frontend Developer Intern interview?
Maintec Technologies interview process usually has 2 rounds. The most common rounds in the Maintec Technologies interview process are Assignment and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Maintec Technologies interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
KPIT Technologies Interview Questions
3.5
 • 291 Interviews
CitiusTech Interview Questions
3.4
 • 264 Interviews
View all
Information Technology Recruiter
104 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Senior IT Recruiter
40 salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

HR Assistant
20 salaries
unlock blur

₹1.8 L/yr - ₹3.7 L/yr

HR Recruiter
17 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

HR Associate
17 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Explore more salaries
Compare Maintec Technologies with

HCLTech

3.5
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
Compare

Infosys

3.7
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