Upload Button Icon Add office photos

Filter interviews by

A. P. Fortunes Front end Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed 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 experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Reverse given array
  • Ans. 

    Reverse the given array of strings

    • Use the reverse() method to reverse the array in place

    • Alternatively, you can use a for loop to iterate through the array and build a new reversed array

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Call api and print data in using react
  • Ans. 

    To call an API and print data in React, use fetch or axios to make the API call and then render the data in the component.

    • Use fetch or axios to make the API call in React component

    • Store the API response data in state using useState hook

    • Render the data in the component using JSX

  • Answered by AI

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 in Oct 2022. There were 6 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 - Aptitude Test 

Aptitude test is best for first round.

Round 3 - Coding Test 

Second round is best for coding test.

Round 4 - HR 

(3 Questions)

  • Q1. Self introduction and technical information about front end developer.
  • Ans. I say properly and uniqly for about my introduction.
  • Answered Anonymously
  • Q2. As a you are fresher or experience
  • Q3. Reason for IT field.
  • Ans. 

    IT field offers endless opportunities for innovation and growth.

    • IT is a constantly evolving field with new technologies and trends emerging regularly.

    • IT provides opportunities to work on exciting projects and solve complex problems.

    • IT offers a wide range of career paths, from development to design to project management.

    • IT is a field that is in high demand, with many job opportunities and competitive salaries.

    • IT has the...

  • Answered by AI
Round 5 - Technical 

(2 Questions)

  • Q1. About front end developer likes html and css.
  • Q2. About html and css and java script
Round 6 - Case Study 

Study about front end developer

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm a fresher and mechanical engineer but I love software developer likes front end developer. I very well know about front end developer role.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Sementic html and display properties in css
  • Ans. 

    Semantic HTML focuses on the meaning and structure of content, while display properties in CSS control how elements are visually displayed on a webpage.

    • Semantic HTML uses tags that convey the meaning of the content, such as <header>, <nav>, <article>, <section>, <footer>.

    • Display properties in CSS include properties like display: block, display: inline, display: inline-block, display: flex,...

  • Answered by AI
  • Q2. Hoisting in Javascript and different array methods
  • Ans. 

    Hoisting is a mechanism in JS where variables and functions are moved to the top of their scope. Array methods are built-in functions to manipulate arrays.

    • Hoisting applies to variable and function declarations

    • Variables declared with let and const are not hoisted

    • Array methods include push(), pop(), shift(), unshift(), splice(), slice(), forEach(), map(), filter(), reduce()

    • push() adds an element to the end of an array

    • pop...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about your projects.
  • Q2. Asked the Javascript concepts related Questions
  • Q3. Asked Responsiveness in UI
Round 2 - Behavioral 

(1 Question)

  • Q1. How were you managing your Project Tasks
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript Questions (Hoisting , closures , Promises)
Round 2 - Technical 

(1 Question)

  • Q1. Basic JavaScript and React Questions .
Round 3 - HR 

(1 Question)

  • Q1. Last round Behavioural Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Explain promise in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error =>

  • Answered by AI
  • Q2. HTML and CSS basic question
  • Q3. Let and var difference
  • Ans. 

    let is block scoped, var is function scoped

    • let is block scoped, var is function scoped

    • let can't be re-declared in the same scope, var can be

    • let variables are not hoisted, var variables are hoisted

  • Answered by AI
  • Q4. Spread and rest operator
  • Q5. Jwt and interceptor concepts

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Ninja test its easy , you can find many mock papers on youtube

Round 2 - Technical 

(2 Questions)

  • Q1. Null operation , string reverse
  • Q2. Dsa questions , linked list and so on
Round 3 - HR 

(2 Questions)

  • Q1. What is your Dream company
  • Ans. 

    My dream company is a tech giant known for innovation, employee benefits, and a positive work culture.

    • Innovative technology and projects

    • Strong employee benefits and perks

    • Positive work culture and work-life balance

  • Answered by AI
  • Q2. Tell me about yourself which is not on your resume
  • Ans. 

    I am an avid hiker and have climbed several mountains in the past year.

    • I enjoy spending time outdoors and challenging myself physically

    • I have completed multiple hiking trips in various terrains

    • I find solace and inspiration in nature, which fuels my creativity in coding

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering dont studder

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

1hr

Round 2 - Technical 

(1 Question)

  • Q1. About the ReactJS, Javascrirp,HTML5,CSS3 Questions
Round 3 - Coding Test 
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well for yourself be strong and stick on your words in interview.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Javascript related questions
Round 2 - Behavioral 

(1 Question)

  • Q1. About my current project

Tell us how to improve this page.

Compare A. P. Fortunes with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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