Upload Button Icon Add office photos

Filter interviews by

Analytic Edge Front end Developer Interview Questions and Answers

Updated 1 Dec 2021

Analytic Edge Front end Developer Interview Experiences

1 interview found

I appeared for an interview in Jul 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 2880 Minutes
Round difficulty - Medium

  • Q1. Can you describe the process you followed to build a front-end project from scratch?
  • Ans. 

    The process of building a front-end project involves planning, designing, coding, testing, and deploying.

    • Gather requirements and create a project plan

    • Design the user interface using tools like Figma or Sketch

    • Code the front-end using HTML, CSS, and JavaScript

    • Test the project for bugs and usability

    • Deploy the project to a web server or hosting platform

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Everyone was on time, interviewers are also friendly.
In this round I need to explain the whole project I have built. They have also asked about unit testing and Typescript. I didn't know about the unit testing at that time, So I just said I don't know. And everything was fine other than that.

  • Q1. Can you discuss the assignment you have built?
  • Ans. 

    I built a responsive web application for managing tasks and deadlines.

    • Used HTML, CSS, and JavaScript to create the frontend

    • Implemented drag and drop functionality for task organization

    • Integrated a calendar API for deadline tracking

  • Answered by AI
  • Q2. 

    Postorder Successor Problem Statement

    You are provided with a binary tree consisting of 'N' distinct nodes and an integer 'M'. Your task is to find and return the postorder successor of 'M'.

    Note:

    The p...

  • Ans. 

    Find the postorder successor of a node in a binary tree.

    • Traverse the binary tree in postorder to get the sequence.

    • Find the index of the node 'M' in the postorder sequence.

    • Return the element at the next index as the postorder successor.

    • If 'M' is the last element in the sequence, return -1 as there is no successor.

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in BangaloreEligibility criteriaMust know basics of js and reactAnalytic Edge interview preparation:Topics to prepare for the interview - React, Redux, React hooks, Js, Html, Css, Data structure, NodejsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Try to learn by building projects.
Tip 2 : Keep track of best practices
Tip 3 : Try be understand documentation

Application resume tips for other job seekers

Tip 1 : Include unique projects
Tip 2 : mention only hosted projects either in github or in platform like heroku and netlify.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL and plsql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Pre

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1 Round online round, random third-party service ask you questions around 3,4 all are JS basics, CSS basics, and 1 last question on recursion.

Interview Preparation Tips

Topics to prepare for Spinny Front end Developer interview:
  • Javascript
Interview preparation tips for other job seekers - Its was bad interview experience, I applied up to 2 times cannot clear first round because IDK what they are expecting the answers, I cleared all the question, don't know what they are expecting.

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Js basics, angular basics , Html & css related tasks. Mostly online coding

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 Technical rounds & a manager round happened for me. Technical rounds went very well and i have moved forward with Manager round too.

Even in manager round they asked technical in depth , i have answered to the manager but all of sudden he asked about package & expectations. After saying my expectations, he started to humiliate and tried to negotiate. I was very surprised and felt disgusting.

How can someone do this to a candidate only for negotiation ? I felt it was so cheap and rude.

After finishing the manager round, I received a call from HR saying that i have been selected. I was totally shocked to hear that because the way he spoke in manager round isn't so positive and why did he select? Then i realised the reason after HR started bargaining for CTC even after discussing before the interview itself and it's clearly shows how cunning the manager behaved. He thought to make me prepare mentally for accepting lower package, but still I have already decided not to join there . Not because of package, but we cannot work under such mindsets.

This is so bad experience in manager round. Otherwise everything else went well.

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Javascript ES6 HTML and Reactjs

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Javascript more

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Bootstrap
  • Q2. Javascript
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Guess the output based on asynchronous nature of setState
  • Ans. 

    setState in React is asynchronous, so the output may not be what is expected immediately after calling setState.

    • State updates may be batched for performance reasons

    • Use callback function in setState to ensure correct output

    • Avoid relying on the current state value for updates

  • Answered by AI
  • Q2. Eventloop in javascript
  • Ans. 

    Event loop in JavaScript manages the execution of multiple tasks in a single-threaded environment.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows non-blocking I/O operations by offloading tasks to the browser's APIs.

    • Tasks are added to the call stack once they are completed in the event loop.

    • setTimeout and setInterval functions are examples of asynchronous operations managed by the

  • Answered by AI

Skills evaluated in this interview

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

It's easy you should know basic math

Round 2 - Assignment 

Create webpage using Reactjs

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 - HR 

(1 Question)

  • Q1. TELL ME ABOUT YOUR SELF
Round 3 - Technical 

(2 Questions)

  • Q1. TECHNICAL QUESTION
  • Q2. READ YOUR WORDS

Tell us how to improve this page.

Analytic Edge Front end Developer Salary
based on 4 salaries
₹6 L/yr - ₹7 L/yr
9% more than the average Front end Developer Salary in India
View more details

Analytic Edge Front end Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.0

Salary

3.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Associate Consultant
39 salaries
unlock blur

₹4.5 L/yr - ₹10.8 L/yr

Senior Consultant
22 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Consultant
16 salaries
unlock blur

₹7 L/yr - ₹14 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹9 L/yr - ₹28.5 L/yr

Data Scientist
7 salaries
unlock blur

₹4 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Analytic Edge with

Quantzig

4.8
Compare

AXIS MY INDIA

3.4
Compare

GfK MODE

3.3
Compare

Edward Food Research and Analysis Centre

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