Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by AppInventiv Technologies Team. If you also belong to the team, you can get access from here

AppInventiv Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AppInventiv Technologies UI Developer Interview Questions and Answers

Updated 20 Sep 2024

AppInventiv Technologies UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

(1 Question)

  • Q1. Make a chess using html css
  • Ans. 

    Create a chess board using HTML and CSS

    • Use HTML to create a grid layout for the chess board

    • Use CSS to style the grid cells to alternate between black and white

    • Add chess piece images to the grid cells to represent the pieces

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. What is use of constructors in Js
  • Ans. 

    Constructors in JavaScript are used to create and initialize objects.

    • Constructors are functions that are used to create new instances of objects.

    • They are called with the 'new' keyword to create a new object based on the constructor's blueprint.

    • They can also be used to set initial values or properties for the object being created.

    • Example: function Person(name, age) { this.name = name; this.age = age; }

    • Example: var perso

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Project Details, Technical Discussions based on React
Round 2 - Behavioral 

(1 Question)

  • Q1. Challenges faced in the projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Shine

Round 1 - Technical 

(2 Questions)

  • Q1. What is closures
  • Ans. 

    Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function even after the parent function has returned.

    • They help in creating private variables and functions in JavaScript.

    • Closures are commonly used in event handlers and callbacks.

  • Answered by AI
  • Q2. What is call apply bind
  • Ans. 

    call, apply, and bind are methods in JavaScript used to manipulate the context of a function.

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

    • apply() is similar to call() but arguments are passed as an array.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Globant UI Developer interview:
  • Javascript
  • Angular
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Jul 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 

Uging tag , elements, div, selector, flex box etc

Round 3 - Technical 

(4 Questions)

  • Q1. Html, CSS, JavaScript, bootstrap
  • Q2. Good knowledge for html CS
  • Q3. Bootstrap using responsible website
  • Ans. 

    Bootstrap is a front-end framework that helps in creating responsive websites by using a grid system and predefined classes.

    • Bootstrap provides a grid system with 12 columns that automatically adjusts based on screen size.

    • It includes responsive utility classes like 'd-none' and 'd-md-block' to show/hide content based on screen size.

    • Bootstrap also offers responsive navigation components like the navbar that collapses int

  • Answered by AI
  • Q4. Anything else any more times

Interview Preparation Tips

Interview preparation tips for other job seekers - I have completed dipin Computer science Engineering
I am creative and hard working person

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. What Prototype in JS What is closure in JS What Recursive functions What Constructor functions What hoisting in js Diff btw var,let, const Find the no of occurance of text in string Find the duplicate cou...
  • Ans. 

    Prototype in JS refers to the mechanism by which objects in JavaScript inherit properties and methods from other objects.

    • Prototype chain allows objects to inherit properties and methods from other objects

    • Prototype-based inheritance is a key feature of JavaScript

    • Example: Creating a new object using a constructor function and adding methods to its prototype

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find top k elements?
  • Ans. 

    Use sorting or heap data structure to find top k elements in an array.

    • Sort the array in descending order and return the first k elements.

    • Use a max heap data structure to efficiently find the top k elements.

    • Time complexity can be O(n log n) for sorting or O(n log k) for heap method.

  • Answered by AI
  • Q2. Hash map based question
Round 2 - Technical 

(4 Questions)

  • Q1. Arraow fun vs normal fun
  • Ans. 

    Arrow functions are concise and have implicit return, while normal functions have more flexibility and can be named.

    • Arrow functions are written with a concise syntax using '=>'

    • Arrow functions do not have their own 'this' keyword

    • Normal functions can be named and have more flexibility in terms of syntax and behavior

  • Answered by AI
  • Q2. What are es6 updates
  • Ans. 

    ES6 updates refer to the new features and syntax improvements introduced in ECMAScript 6, also known as ES2015.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for object-oriented programming

    • Template literals for easier string interpolation

    • Destructuring assignment for extracting values from arrays and objects

    • Spread and rest operators for easier manipulation of arrays and objects

  • Answered by AI
  • Q3. Define event loop ?
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop continuously checks the call stack for any functions that need to be executed.

    • If the call stack is empty, the event loop checks the callback queue for any pending tasks.

    • Event loop moves tasks from the callback queue to the call stack for execution.

    • Example: setTimeout function in JavaScript use...

  • Answered by AI
  • Q4. Questions based on promises

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Time based test with basic questions

Round 2 - Coding Test 

Basic level coding round in preferred language

Round 3 - Technical 

(2 Questions)

  • Q1. About projects done in college
  • Q2. Coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 coding question in 1:30 hr
2 medium + 1 hard
1- greedy
2- binary search, prefix sum
3- dp (too hard)

Round 2 - One-on-one 

(1 Question)

  • Q1. Low level design type question
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Asked project related questions plus basic hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - confident, clear concept, project knowledge

AppInventiv Technologies Interview FAQs

How many rounds are there in AppInventiv Technologies UI Developer interview?
AppInventiv Technologies interview process usually has 1 rounds. The most common rounds in the AppInventiv Technologies interview process are Technical.
How to prepare for AppInventiv Technologies UI 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 AppInventiv Technologies. The most common topics and skills that interviewers at AppInventiv Technologies expect are Angular, Bootstrap, CSS, CSS3 and GIT.

Tell us how to improve this page.

AppInventiv Technologies UI Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
AppInventiv Technologies UI Developer Salary
based on 8 salaries
₹2.5 L/yr - ₹6.7 L/yr
24% less than the average UI Developer Salary in India
View more details

AppInventiv Technologies UI Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
275 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Senior Software Engineer
184 salaries
unlock blur

₹7 L/yr - ₹22.5 L/yr

Software Developer
128 salaries
unlock blur

₹3 L/yr - ₹10.8 L/yr

Business Analyst
54 salaries
unlock blur

₹3.4 L/yr - ₹10 L/yr

Associate Technical Leader
54 salaries
unlock blur

₹9 L/yr - ₹23.3 L/yr

Explore more salaries
Compare AppInventiv Technologies with

Ranosys Technologies

3.5
Compare

SPARX IT Solutions

3.6
Compare

Techugo

4.1
Compare

Hidden Brains InfoTech

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