Upload Button Icon Add office photos

Filter interviews by

TableSpace Technologies Senior Full Stack Developer Interview Questions and Answers

Updated 9 Aug 2024

TableSpace Technologies Senior Full Stack Developer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Standard Qs w.r.t why switch
  • Q2. What do you know about the company
  • Ans. 

    The company is a leading tech startup specializing in e-commerce solutions.

    • Founded in 2010 by a group of software engineers

    • Offers a wide range of e-commerce services such as website development, payment processing, and inventory management

    • Known for their innovative approach to solving complex technical challenges

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Python Qs related to projects mentioned in the resume
  • Q2. Django related medium Qs
Round 3 - Aptitude Test 

Cognitive Analysis online test

Round 4 - CTO 

(2 Questions)

  • Q1. Scalibility related
  • Q2. Cybersecurity related
Round 5 - HR 

(1 Question)

  • Q1. CTC Expectation

Interview questions from similar companies

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

(2 Questions)

  • Q1. Don't remember so I have no
  • Q2. I can't remember it
Round 2 - Technical 

(2 Questions)

  • Q1. I don't know the res
  • Q2. I can't remember it
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude and 2 coding problems- easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Duplicate number code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 60 min, topics: DBMS, computer networking, outputs, SQL queries

Round 2 - Coding Test 

Topics: Trees, DP, Greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good understanding of DSA, specially topics like Trees, DP, Graph and Greedy
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on dsa, coding question, overall good experience and so on

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search and sorting
  • Q2. Prime number coding question
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Asked related to python

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain the project in resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2022. There were 5 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 

1 round of dsa with 2 questions

Round 3 - Technical 

(2 Questions)

  • Q1. 1 system design round
  • Q2. LLD round for 30 minutes
Round 4 - Technical 

(2 Questions)

  • Q1. Previous project discussion
  • Q2. Discuss past project, tech stack for 30 mins
  • Ans. 

    Developed a web-based project management tool using React, Node.js, and MongoDB.

    • Used React for the front-end development

    • Used Node.js for the back-end development

    • Used MongoDB for the database management

    • Implemented features like task assignment, progress tracking, and file sharing

    • Followed Agile methodology for project management

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic hr questions, salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm during the interview, communite clearly and brush through system design interviews.

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Path Queries

    You are given a weighted, undirected graph with ‘V’ vertices numbered from 1 to ‘V’ and ‘E’ bidirectional edges.

    You have to answer ‘Q’ queries. Every query has two integers, ‘u’, ‘v’, repre...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered by CodingNinjas
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
  • Q3. Rat In a Maze: All Paths

    You are given a 'N' * 'N' maze with a rat placed at 'MAZE[0][0]'. Find and print all paths that rat can follow to reach its destination i.e. 'MAZE['...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

TableSpace Technologies Interview FAQs

How many rounds are there in TableSpace Technologies Senior Full Stack Developer interview?
TableSpace Technologies interview process usually has 5 rounds. The most common rounds in the TableSpace Technologies interview process are HR, Technical and Aptitude Test.
What are the top questions asked in TableSpace Technologies Senior Full Stack Developer interview?

Some of the top questions asked at the TableSpace Technologies Senior Full Stack Developer interview -

  1. Python Qs related to projects mentioned in the res...read more
  2. Standard Qs w.r.t why swi...read more
  3. Django related medium...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k 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.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
Zoho Interview Questions
4.3
 • 500 Interviews
View all
Operations Manager
22 salaries
unlock blur

₹6 L/yr - ₹11.2 L/yr

Assistant Manager
8 salaries
unlock blur

₹7.3 L/yr - ₹13.8 L/yr

Senior Manager
7 salaries
unlock blur

₹13 L/yr - ₹34.5 L/yr

Project Manager
6 salaries
unlock blur

₹8.2 L/yr - ₹14 L/yr

Assistant Manager Operations
6 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare TableSpace Technologies with

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
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