Upload Button Icon Add office photos

Filter interviews by

Turing Full Stack Software Developer Interview Questions, Process, and Tips

Updated 5 Sep 2024

Top Turing Full Stack Software Developer Interview Questions and Answers

Turing Full Stack Software Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How to optimise performance of a Nodejs app
  • Ans. 

    Optimizing performance of a Nodejs app involves various techniques to improve speed and efficiency.

    • Use asynchronous programming to handle multiple requests efficiently

    • Implement caching to reduce redundant database queries

    • Optimize code by removing unnecessary loops and function calls

    • Use a load balancer to distribute traffic evenly across multiple servers

    • Monitor and analyze performance using tools like New Relic or Datad

  • Answered by AI
  • Q2. How to optimise React
  • Ans. 

    Optimising React involves code splitting, lazy loading, using PureComponent, avoiding unnecessary re-renders, and using memoization.

    • Use code splitting to load only necessary components

    • Implement lazy loading for components that are not immediately needed

    • Utilize PureComponent to prevent unnecessary re-renders

    • Avoid unnecessary re-renders by using shouldComponentUpdate or React.memo

    • Use memoization techniques like useMemo o

  • Answered by AI
  • Q3. What is a callback?
  • Ans. 

    A callback is a function that is passed as an argument to another function and is executed after the completion of that function.

    • Callbacks are commonly used in asynchronous programming to handle tasks that take time to complete.

    • They allow for functions to be executed once a certain task is completed, without blocking the rest of the code.

    • Example: setTimeout function in JavaScript takes a callback function as an argumen

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Turing Full Stack Software Developer interview:
  • React.Js
  • Nodejs
  • Javascript

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Was given a DSA problem on squares it was relatively easy.

Round 2 - Coding Test 

Was giving another problem as regards longest sub array without repeating letters.

Round 3 - Technical 

(2 Questions)

  • Q1. What is git grep
  • Ans. 

    git grep is a command in Git that allows you to search through the contents of files in a Git repository.

    • Allows searching through the contents of files in a Git repository

    • Similar to the 'grep' command in Unix/Linux

    • Can be used to search for specific strings or patterns in files

    • Useful for finding references to functions, variables, or text within the codebase

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

    Profilers are tools used to analyze the performance of software applications by measuring various metrics such as CPU usage, memory usage, and execution time.

    • Profilers help identify bottlenecks and optimize code for better performance.

    • Examples of profilers include VisualVM, YourKit, and Xcode Instruments.

    • Profiling can be done for different aspects of an application, such as CPU profiling, memory profiling, and network

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Turing Full Stack Software Developer interview:
  • Python
  • Javascript
Interview preparation tips for other job seekers - Just know your languages and be fairly good at DSA

Skills evaluated in this interview

Full Stack Software Developer Interview Questions Asked at Other Companies

asked in Synergy
Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions str ... read more
asked in UST
Q2. If a application is running slow what process would you follow to ... read more
asked in Cognizant
Q3. Briefly explain the method you will use to execute an array linke ... read more
Q4. How do we link our stylesheet with the HTML?
asked in Cognizant
Q5. What is the difference between primary key, foreign key, candidat ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Nov 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 - One-on-one 

(5 Questions)

  • Q1. Puzzle of 7 horses
  • Q2. Not sure, look it up online
  • Q3. 2d Matrix problems
  • Q4. Coding questions on Array
  • Q5. Coding Question on String

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding questions for freshers. I only know that, that;s when I joined in 2018
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What is your Role and responsibility in your current organization?
  • Q2. What Kind of Production environments do you solve?
  • Ans. 

    I solve complex production environments by identifying issues, optimizing performance, and implementing solutions.

    • Identifying bottlenecks and optimizing performance

    • Troubleshooting and resolving production issues

    • Implementing scalable solutions for high traffic websites

    • Working with cloud services like AWS or Azure

    • Automating deployment processes with tools like Jenkins or Docker

  • Answered by AI
  • Q3. What Features you have worked on? Explain 1 feature?
  • Ans. 

    Developed a real-time chat feature for a social networking platform.

    • Implemented WebSocket technology for instant messaging

    • Designed user interface for chat window with message history

    • Integrated push notifications for new messages

    • Developed backend logic for message encryption and decryption

  • Answered by AI
  • Q4. How did you prepare the design doc for this feature? What was your Approach?
  • Ans. 

    I prepared the design doc by outlining the requirements, architecture, data flow, and user interactions.

    • Outlined the requirements and goals of the feature

    • Defined the architecture and technologies to be used

    • Described the data flow and interactions between components

    • Included wireframes or mockups for user interfaces

    • Listed potential edge cases and how to handle them

  • Answered by AI
  • Q5. Find if Array2 is a substring of Array1
  • Ans. 

    Check if Array2 is a substring of Array1

    • Iterate through Array1 and check if each element contains Array2

    • Use built-in string functions like includes() or indexOf() to check for substring

    • Consider edge cases like empty arrays or arrays with empty strings

  • Answered by AI
  • Q6. How will you build breadcrums in react?
  • Ans. 

    Breadcrumbs in React can be built using a combination of state management and conditional rendering.

    • Create a state variable to store the breadcrumb data.

    • Update the state variable as the user navigates through the application.

    • Render the breadcrumbs component with the data stored in the state.

  • Answered by AI
  • Q7. How will you design a parking system? What api's will you create ? Their body and response object.
  • Ans. 

    Design a parking system with APIs for managing parking spots and reservations.

    • Create API for adding new parking spots with details like location, availability, and pricing

    • Create API for listing available parking spots based on location and availability

    • Create API for reserving a parking spot with user details and duration

    • Create API for cancelling a parking reservation

    • Response object for adding parking spot: { success: t...

  • Answered by AI

Skills evaluated in this interview

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

It was an online test

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA Questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 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 

(5 Questions)

  • Q1. Puzzle of 7 horses
  • Q2. Not sure, look it up online
  • Q3. 2d Matrix problems
  • Q4. Coding questions on Array
  • Q5. Coding Question on String

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding questions for freshers. I only know that, that;s when I joined in 2018
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Just basic questions on Maths, Quants

Round 2 - Coding Test 

Simple coding questions after 1 week of teaching

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare the basics

I applied via Company Website and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning and aptitude

Round 2 - Coding Test 

String array linked list

Round 3 - HR 

(1 Question)

  • Q1. Why should we hire? Weakness and strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Sorting basic and Linked list , Hashing And OOPs Concepts
Round 1 - Aptitude Test 

Q 1 print string in tringal farmat
Q2 print duplicate string in two array

Round 2 - Technical 

(1 Question)

  • Q1. About core java over all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very comfortable and confident

Turing Interview FAQs

How many rounds are there in Turing Full Stack Software Developer interview?
Turing interview process usually has 2 rounds. The most common rounds in the Turing interview process are Technical and Coding Test.
What are the top questions asked in Turing Full Stack Software Developer interview?

Some of the top questions asked at the Turing Full Stack Software Developer interview -

  1. How to optimise performance of a Nodejs ...read more
  2. How to optimise Re...read more
  3. What is a callba...read more

Tell us how to improve this page.

Turing Full Stack Software Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Data Scientist
70 salaries
unlock blur

₹11.5 L/yr - ₹36 L/yr

Talent Acquisition Specialist
36 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Data Specialist
32 salaries
unlock blur

₹3.2 L/yr - ₹5.4 L/yr

Business Analyst
30 salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Data Analyst
20 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Turing with

Infosys

3.6
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

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