Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology Software Developer Intern Interview Questions and Answers

Updated 3 Aug 2024

Zopsmart Technology Software Developer Intern Interview Experiences

2 interviews found

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

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical round
  • Q2. Append element into Array question
Round 2 - One-on-one 

(1 Question)

  • Q1. Vector question on array
Round 3 - One-on-one 

(1 Question)

  • Q1. Vector based question less time complexity

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There are 3 questions moderate one with topics like dp ( edit distance variant ), dequeue and hashing question. I cleared the test and move forward to interview round 1

Round 2 - One-on-one 

(2 Questions)

  • Q1. Write code for Topological sort?
  • Ans. 

    Topological sort is a linear ordering of vertices in a directed acyclic graph.

    • Use Depth First Search (DFS) to visit each vertex and add it to the result list after visiting all its neighbors.

    • Maintain a visited set to keep track of visited vertices and a result list to store the sorted order.

    • If a cycle is detected during DFS, the graph is not a DAG and topological sort is not possible.

  • Answered by AI
  • Q2. A implementation Based question of a data structure on merging square with many constraints.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare you DSA very well if want to get the offer.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Some Objective questions and 1 Coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Situation based questions on Coroutines
  • Q2. About Project Tech Stack Used and Questions on that
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 questions in the online assessment.

1 - Binary Search
2 - DP
3 - Graphs

Round 2 - Technical 

(1 Question)

  • Q1. Implement a persistence stack with constant time operations
  • Ans. 

    Implement a persistence stack with constant time operations

    • Use a combination of a stack and a hashmap to achieve constant time operations for push, pop, and get operations

    • Maintain a stack to store the elements and a hashmap to store the index of each element in the stack

    • When pushing an element, add it to the stack and update its index in the hashmap

    • When popping an element, remove it from the stack and also remove its i...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Median of two sorted arrays and OOPs basics
  • Ans. 

    Finding the median of two sorted arrays and discussing OOPs basics

    • To find the median of two sorted arrays, merge the arrays and then calculate the median

    • OOPs basics include concepts like encapsulation, inheritance, polymorphism, and abstraction

    • Example: Median of [1, 3] and [2] is 2.0

  • 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 campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

We had 21 questions including 3 coding questions. It was simple and beginners friendly questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions were asked based on DBMS, SQL, api, simple coding and testing
Round 3 - Technical 

(1 Question)

  • Q1. I was asked to describe my projects and questions were asked based on that. Had scenario based questions

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

It consisted of 17 MCQ based on networking and 3 coding questions. Among those one coding question was on practical implementation.

  • Q1. Recycling pens

    You have 'N' empty pens whose refills have been used up. You have 'R' rupees in your pocket. You have two choices of operations that you can perform each time.

    1) Recycle 1...

  • Ans. Bruteforce
    • We will iterate through all possible values of the usable pen, i.e from 0 to N and try to find out whether we can make these many usable pens or not.
    • Let’s say we currently want to find whether we can make X usable pens or not. To do so we will require X refills and buy X refills we need X*C amount of money.
    • We keep X pens and sell N - X pens. We will get (N-X)*K amount of money from selling it.
    • So total money w...
  • Answered by CodingNinjas
  • Q2. Data Structures

    Given an array A[],and constants b, k and m. A paint job is created using the formula s[i] = (A[i]*s[i-1] + b )% m.
    Find all the pairs in s[i] less than equal to K and print them.

  • Ans. 

    The first approach was to Binary Search over every element of the generated array and the rest of the elements.
    A better approach was since the array was sorted, use a two-pointer approach to find indexes that contribute to the answer.

  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Hard

It was around 5-6 p.m. The interviewer was very easy to talk to. They went straight to the questions and asked me if I had any doubts in the end.

  • Q1. DBMS

    What are ACID properties? Explain them?

  • Ans. 

    Tip 1 : Know every bit of acid property. It's internal working also.


     

  • Answered by CodingNinjas
  • Q2. Questions related to project

    Describe the architecture of your project. How did you manage to handle multiple transactions occurring at one point?

  • Ans. 

    Tip 1: Knowledge of everything in your project and why it is special?
     

  • Answered by CodingNinjas
  • Q3. NodeJS

    What do you know about NodeJS event loop? Given a set of callback functions. Determine which function runs first.

  • Ans. 

    Tip 1: Good knowledge of NodeJs
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in BangaloreEligibility criteriaReputed College, or good profile.Postman interview preparation:Topics to prepare for the interview - NodeJS, HTTP, TCP, DBMS, Web ArchitectureTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Know NodeJS completely from inside out. Focus on NodeJS event loop and knowing how callbacks occur.
Tip 2 : Have in-depth knowledge of all database concepts. eg. Knowing indexing is not enough, but how it is implemented is.
Tip 3 : Make good projects on NodeJS.
Tip 4 : Have in-depth knowledge of networking concepts especially TCP.
Tip 5 : Know the company better.

Application resume tips for other job seekers

Tip 1 : Projects on NodeJS are a must and mentioning javascript too.
Tip 2 : Having a good college name, or Google Summer of Code kind of experiences helps.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. DBMS Question

    Write a query to create an employee table with (employee_id, name, dept) with employee_id as its primary key

  • Ans. 

    A query to create an employee table with employee_id, name, and dept columns, with employee_id as the primary key.

    • Use the CREATE TABLE statement to create the employee table.

    • Specify the data types and constraints for each column.

    • Set the employee_id column as the primary key using the PRIMARY KEY constraint.

  • Answered by AI
  • Q2. Inorder Traversal

    You have been given a Binary Tree of 'N' nodes, where the nodes have integer values. Your task is to find the In-Order traversal of the given binary tree.

    For example :
    For the ...
  • Ans. 

    The task is to find the in-order traversal of a given binary tree.

    • Implement a recursive function to perform in-order traversal of the binary tree

    • Start from the left subtree, then visit the root node, and finally visit the right subtree

    • Use an array to store the values of the nodes in the in-order traversal

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

Interview on google meet

  • Q1. DBMS Question

    Given two tables, return a inner join on a common column (key)

  • Ans. 

    The inner join operation combines rows from two tables based on a common column (key).

    • Use the JOIN keyword in the SQL query to perform an inner join.

    • Specify the common column (key) in the ON clause of the join.

    • The result will contain only the matching rows from both tables.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. Search In A Row Wise And Column Wise Sorted Matrix

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. You are given a target integer 'X'. Find t...

  • Ans. 

    Given a sorted matrix, find the position of a target integer in the matrix.

    • Iterate through each row and column of the matrix

    • Compare the target integer with the current element

    • If the target integer is found, return the position

    • If the target integer is not found, return {-1, -1}

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BengaluruEligibility criteriaNo criteriaSpringworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on data-structures and algorithms fundamentals
Tip 2 : Learn Javascript fundamentals for interviews
Tip 3 : Having good projects on resume is an added advantage

Application resume tips for other job seekers

Tip 1 : Do not put false projects on resume.
Tip 2 : Have good projects on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 3 Hours
Round difficulty - Hard

3 Coding questions ( 1 medium graph dfs based question , 2 hard level prefix array question ans 3 was a hard question which I don't remember)

2 Database question ( It mostly includes joining 2-3 tables and then you would be able to solve it)

  • Q1. Find Number Of Islands

    You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0 signifies water.

    A cell is said to be conn...

  • Ans. Flood Fill Algorithm

    We can use the flood fill algorithm to check for all connected 1s.

     

    • We create two arrays, dx, and dy, in which we store the unit vectors for all eight directions. Thus, when we are at a given cell, we can easily check for all its adjacent cells by simply looping over the two arrays, adding their values to the current position, and checking for this new position recursively.
    • We will also create a ...
  • Answered by CodingNinjas
  • Q2. Maximum Product Subarray

    You are given an array “arr'' of integers. Your task is to find the contiguous subarray within the array which has the largest product of its elements. You have to report t...

  • Ans. Brute-force

    Steps:

    1. Create an ans variable and initialize it to INT_MIN.
    2. Run a loop i = 0 to N and do:
      • Run a loop j = i to N and do:
        • Create a variable, say currentProduct and initialize it to 1.
        • Run a loop k = i to j and do:
          • currentProduct = currentProduct * arr[k]
          • Store the maximum of ans and the currentProduct in the ans variable.
    3. Finally, return the ans variable.
    Space Complexity: O(1)Explanation:

    O(1)

     

    Constant space is u...

  • Answered by CodingNinjas
  • Q3. DBMS Question

    There were 3-4 models given and we had to join those models to get to the result.

Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

These rounds depends on the type of interviewer.
My friends were asked questions from DSA but from me they asked a lot of questions on Node.JS and React.

  • Q1. Technical Questions

    What are promises, await , all lifecycle methods of react?

    What is recursion, explain your projects, explain docker

  • Ans. 

    Tip 1 : Have good hands on development
     

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

This round depends on your interviewer.
My colleagues were asked questions from DS but my interviewer focused just on javascript.

  • Q1. Web Development based Questions

    What are middlewares, controllers, how to design one middleware, what is jwt, reduce ,map and filter method usage and params.
    What is an event looping in javascript and how do...

  • Ans. 

    Tip 1 : Be focused on Development especially in Javascript

  • Answered by CodingNinjas
Round 4 - Telephonic Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

It was a managerial round they will test your communication and how well do you handle situations in your life

  • Q1. Basic HR question

    What is one of the most challenging situations that you have faced in your life and how you handled it

  • Ans. 

    Tip 1 : just be confident and communicate with them
     

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaMinimum 6 GPASpringworks interview preparation:Topics to prepare for the interview - React, Data structures, SQl, Java, Node.JSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Cpanies like SpringWorks are more focused on Development so make sure you have good knowledge in Javascript
Tip 2 : Complete 100-150 questions easy/medium questions on leetcode like 3 sum or invert binary tree
Tip 3 : Have a good knowledge of any RDBMS.

Application resume tips for other job seekers

Tip 1 : Make sure your resume is not filled with lots of colors try to give it a simple look
Tip 2 : Mention only those skills in which you have minimum intermediate knowledge ex if you know docker but haven't used it nicely then just don't mention it

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

3 DSA questions, 2 SQL questions
On the DoSelect platform, which was good

  • Q1. Matrix Chain Multiplication

    You are given ‘N’ 2-D matrices and an array/list “ARR” of length ‘N + 1’ where the first ‘N’ integers denote the number of rows in the Matrices and the last element denotes the ...

  • Ans. 

    It was a straightforward application of the matrix multiplication approach of DP

  • Answered by CodingNinjas
  • Q2. Linear Probing

    ‘Hashing’ is a technique in which a large non-negative integer is mapped with a smaller non-negative integer using a function called ‘hash function’. Hash Table is the table in which we stor...

  • Ans. Linear Probing

    The approach is pretty simple. We just need to find the mapping index and if it is occupied, we need to search for the next available index.

     

    The algorithm for the same is as follows:

    • Create an array HASH_TABLE of size N.
    • Initialise every value of HASH_TABLE as -1.
    • Loop for each KEY:
      • Initialize HASH = KEY % N
      • If HASH_TABLE[ HASH ] is already occupied, we perform:
        • while(HASH_TABLE[ HASH ] != -1):
          • HASH = ( HAS...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Started off with introductions and projects related questions.
Basic javascript and CSS property-related questions.
An easy DSA question

  • Q1. Two sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use t...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

Introduction and two easy to medium DSA questions

  • Q1. Queue Using Two Stacks

    You will be given ‘Q’ queries. You need to implement a queue using two stacks according to those queries. Each query will belong to one of these three types:

    1 ‘X’: Enqueue element ...
  • Ans. Making the Enqueue operation costly

    In this approach, we make sure that the oldest element added to the queue stays at the top of the stack, the second oldest below it and so on. To achieve this, we will need two stacks. 

     

    First stack('STK1') is the main stack being used to store the data, while the second stack('STK2') is to assist and store data temporarily during various operations.

     

    Following steps will...

  • Answered by CodingNinjas
  • Q2.  Roman Numeral To Integer

    Given a string that represents a roman number. Convert the roman number to an integer and return it.

    Roman numerals are represented by seven different symbols: I, V, X, L, C, D,...

  • Ans. Recursive Approach

    The key idea is to follow the rules of roman numbers which are as follows:

     

    • The roman digits I, X and C are repeated up to three times in succession to form the numbers.
    • When a digit of lower value is written to the right or after a digit of higher value, the values of all the digits are added.
    • When a digit of lower value is written to the left or before a digit of higher value, then the value of th...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen Institute Of Technology. Eligibility criteriaNoSpringworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, React.js, Node.js, MongoDB.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be thorough with your projects
Tip 2 : Have a good understanding of the basics of CSS, React.js, and Node.js
 

Application resume tips for other job seekers

Tip 1 : MERN Stack projects
Tip 2 : Past internships

Final outcome of the interviewSelected

Skills evaluated in this interview

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology Software Developer Intern interview?
Zopsmart Technology interview process usually has 3 rounds. The most common rounds in the Zopsmart Technology interview process are One-on-one Round and Technical.
What are the top questions asked in Zopsmart Technology Software Developer Intern interview?

Some of the top questions asked at the Zopsmart Technology Software Developer Intern interview -

  1. This was managerial round which was was offline in person interview. At first h...read more
  2. Some theoretical questions from DBMS and oops and also asked to write some SQL ...read more
  3. This round was also similar to the first technical round at first given a DSA q...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Zopsmart Technology interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Zopsmart Technology Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

4.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
87 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
75 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Developer
65 salaries
unlock blur

₹8.5 L/yr - ₹15.6 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹11.7 L/yr - ₹30 L/yr

Software Development Engineer II
44 salaries
unlock blur

₹11 L/yr - ₹22 L/yr

Explore more salaries
Compare Zopsmart Technology with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm Mall

3.6
Compare

Snapdeal

3.9
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