Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Zopsmart Technology Software Developer Interview Questions and Answers

Updated 14 Nov 2024

Zopsmart Technology Software Developer Interview Experiences

8 interviews found

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Consist 3 coding questions medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about java concept
  • Q2. Sql query basics
Round 3 - Technical 

(2 Questions)

  • Q1. Asked medium to advance level oops java concept
  • Q2. Deep discussion over project
Round 4 - Technical 

(2 Questions)

  • Q1. Hard level linked list questions
  • Q2. Advanced level sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and oop concepts well
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Coding question on DSA
  • Q2. Design pattern followed by basic java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns in java
  • Ans. 

    Design patterns in Java are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Some common design patterns in Java include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has its own purpose and can be applied in different scenarios.

    • Design patterns promote code reusability and help in organizing code in a structured manner.

  • Answered by AI
  • Q2. Database designing and java8

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions of dbms ,os

Round 2 - One-on-one 

(2 Questions)

  • Q1. Delete middle node of linked list
  • Ans. 

    To delete the middle node of a linked list, we can iterate through the list to find the middle node and then remove it by adjusting the pointers.

    • Iterate through the linked list to find the middle node by using two pointers - one moving one node at a time and the other moving two nodes at a time.

    • Once the middle node is found, adjust the pointers to skip over the middle node and connect the nodes before and after it.

    • Hand...

  • Answered by AI
  • Q2. N queen problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be self-confident

Skills evaluated in this interview

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

Dsa questions asked and java basic questions

Zopsmart Technology interview questions for designations

 Software Developer Intern

 (2)

 Software Engineer

 (3)

 Java Developer

 (1)

 Software Development Engineer

 (4)

 Junior Software Engineer

 (1)

 Software Engineer Intern

 (1)

 Senior Software Engineer

 (1)

 Full Stack Developer

 (1)

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Assignment 

We were to make a go Lang api using one of the frameworks the company has made named go-fr

Round 2 - Technical 

(1 Question)

  • Q1. I was asked 3 questions that were easy they were adding two linked list, tortoise and hare method to find the mid of the linked list and 2 sum problem. On top of that verbal skills were also tested as o wa...
Round 3 - Technical 

(1 Question)

  • Q1. The round tested my Go Lang skills and the questions were generally from the assignment and some HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do easy to medium leetcode and SQL as well also prepare for networking and Operating system

Software Developer Interview Questions & Answers

user image Aakansha latiyan

posted on 14 May 2024

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

Aptitude test such as profit and loss , blood relations

Round 2 - Coding Test 

Questions on string and map

Round 3 - HR 

(1 Question)

  • Q1. Questions like will you be able to work after your assigned time

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 2 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 3 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 4 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.
Interview experience
4
Good
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 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Strings related coding question
Round 2 - Technical 

(1 Question)

  • Q1. Files, os and db related questions

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Medium

The online test consisted of 2 coding questions, 30 aptitude MCQs, 30 behavioral MCQs and 10 code snippets to debug. The coding questions were of medium level, aptitude MCQs were easy and the code snippets to debug was also of easy level. Each section had a time constraint.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list without using additional space beyond constant space complexity.

    • Create a dummy node to start the merged list

    • Iterate through both linked lists and compare nodes to merge them in sorted order

    • Update the next pointers accordingly

    • Handle cases where one list is empty or both lists are empty

    • Return the head of the merged linked list

  • Answered by AI
  • Q2. 

    Minimum Path Sum Problem Statement

    Consider a 2-dimensional grid 'GRID' with 'N' rows and 'M' columns in Ninjaland. Each cell in the grid has an associated cost. The goal is to determine the minimum path ...

  • Ans. 

    The Minimum Path Sum Problem involves finding the minimum sum of costs along a path from the top-left to the bottom-right of a grid.

    • Use dynamic programming to calculate the minimum path sum by considering the costs of moving down or right at each cell.

    • Initialize a 2D array to store the minimum path sum values for each cell in the grid.

    • Iterate through the grid to calculate the minimum path sum for each cell based on the...

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

My interview was at 9:00 am. The interview was conducted on Amazon Chime and my webcam was on. The interviewer also asked me to write the code on a document which can be edited by both me and the interviewer. The difficulty of the questions was of medium level. I was asked 3 coding questions along with 2 questions related to OOPS at the end. The interview ended with the discussion of one of my projects. The interviewer was good and also gave me hints wherever required.

  • Q1. 

    Palindrome Partitioning Problem Statement

    You are given a string S. Your task is to partition S such that every substring of the partition is a palindrome. Your objective is to return all possible palindr...

  • Ans. 

    Given a string, partition it into palindromes and return all possible configurations.

    • Use backtracking to generate all possible palindrome partitions

    • Check if each substring is a palindrome before adding it to the partition

    • Return all valid partitions as an array of strings

  • Answered by AI
  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the result.

  • Answered by AI
  • Q3. 

    Find Missing Number In String Problem Statement

    You have a sequence of consecutive nonnegative integers. By appending all integers end-to-end, you formed a string S without any separators. During this pro...

  • Ans. 

    Find the missing number in a string of consecutive nonnegative integers.

    • Iterate through the string and check for missing numbers by comparing adjacent integers

    • If a missing number is found, return it as the output

    • Handle cases where there are multiple missing numbers or the string is invalid by returning -1

  • Answered by AI
  • Q4. What are the ACID properties in DBMS?
  • Ans. 

    ACID properties in DBMS ensure data integrity and consistency.

    • Atomicity: All operations in a transaction are treated as a single unit of work, either all succeed or all fail.

    • Consistency: Database remains in a consistent state before and after the transaction.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once a transaction is committed, the changes made by it are permanent and...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteriaCandidate must be femaleAmazon interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Graphs, Dynamic Programming, OOPS, Operating System, Database Management, C++,Computer Networks.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : You must have a grip over Data Structures and algorithms. Your concepts must be crystal clear. Pick one coding platform and try to practice at least 7-10 coding questions everyday. I completed around 200+ questions on Leetcode, 200+ questions on Geek For Geeks and around 30-40 questions on InterviewBit. 
Tip 2 : After attempting any coding problem, analyze its time and space complexity. See, if you can further optimize your solution. You can always check the editorials and compare your solution with it.
Tip 3 : Apart from coding questions keep studying concepts of Operating Systems, databases and object oriented programming. You can always refer to Geeks For Geeks articles for it. Also, Coding Ninja's Data Structures and algorithms course in C++ helped me a lot in improving my OOPS concepts specifically.

Application resume tips for other job seekers

Tip 1 : You do not need to have a long list of projects on your resume. One good project with proper knowledge of it will do good. Similarly, do not list down several number of skills. Few skills but roper knowledge of them are enough.
Tip 2 : Do not fake anything on your resume. The interviewer gets to know about it by asking questions. If you aren't able to answer, it leaves a negative impact.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This was MCQ+Coding round.

  • Q1. How can you check if two strings are anagrams of each other?
  • Ans. 

    Check if two strings are anagrams by comparing the sorted versions of the strings.

    • Sort both strings and compare if they are equal.

    • Use a hashmap to store the frequency of characters in each string and compare the maps.

    • Ignore spaces and punctuation when comparing the strings.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Round 3 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute Of Technology, Silchar, Assam. I applied for the job as SDE - 1 in SiddharthnagarEligibility criteria6 CGPAAmazon interview preparation:Topics to prepare for the interview - Basic Computer Science backgroundTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.

Application resume tips for other job seekers

Add projects and Internships if you have done any and add only those things which you really know.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology Software Developer interview?
Zopsmart Technology interview process usually has 2-3 rounds. The most common rounds in the Zopsmart Technology interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in Zopsmart Technology Software Developer interview?

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

  1. delete middle node of linked l...read more
  2. Design patterns in j...read more
  3. In the 1st technical round, basic questions regarding the languages which i hav...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Food Corporation of India

5.6k top interview questions

INTERVIEWS

Bombardier Transportation

5.6k top interview questions

SALARIES

Burohappold Engineering

INTERVIEWS

Karur Vysya Bank

No Interviews

SALARIES

Burohappold Engineering

INTERVIEWS

Food Corporation of India

No Interviews

INTERVIEWS

Burohappold Engineering

10 top interview questions

INTERVIEWS

Winman Software

No Interviews

Tell us how to improve this page.

Zopsmart Technology Software Developer Interview Process

based on 10 interviews

1 Interview rounds

  • Technical Round
View more
Zopsmart Technology Software Developer Salary
based on 74 salaries
₹8 L/yr - ₹14 L/yr
35% more than the average Software Developer Salary in India
View more details

Zopsmart Technology Software Developer Reviews and Ratings

based on 12 reviews

2.8/5

Rating in categories

2.7

Skill development

3.0

Work-life balance

2.5

Salary

3.0

Job security

2.4

Company culture

2.4

Promotions

2.9

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zopsmart Technology with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm Mall

3.6
Compare

Snapdeal

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent