Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology Interview Questions, Process, and Tips

Updated 6 Feb 2025

Top Zopsmart Technology Interview Questions and Answers

View all 28 questions

Zopsmart Technology Interview Experiences

Popular Designations

50 interviews found

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

Aptitudes on operating system, code snippets

Round 2 - Technical 

(2 Questions)

  • Q1. Binary tree recursion
  • Q2. Linked list reverse
Round 3 - Technical 

(2 Questions)

  • Q1. Sql based commands
  • Q2. Java based classed and objecfs

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)
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

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Bubble sort was also asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why there is a gap in your career

Interview Preparation Tips

Interview preparation tips for other job seekers - The Recruiter HR name is Padmavathi S and the hiring manager is Mr. Vishal-
Vishal has taken 1 hour and 50 minutes of One-on-one interviews and has asked a lot of unprofessional questions that were not related to this job role requirement. His tone and manner are disrespectful. He does not know the industry trends and asks irrelevant questions without knowing the industry revenue trend and the requirements. Vishal is a very arrogant person.

The HR Padmavathi S will only ghost the candidates after the interview. You will need to take multiple follow-ups for the interview feedback and if you ask for specific feedback on why your candidature has not been selected, she will not reply to you.

**THE COMPANY SHOULD TAKE APPROPRIATE ACTION ON THESE TWO PEOPLE ASAP !!**

Enterprise Business Manager Interview Questions asked at other Companies

Q1. While doing a Account Mapping? What are the basics one needs to be aware while preparing this document: Eg: XYZ manufacturing company has various factories operating in Middle East, India & Africa region? Who would scope out each of the... read more
View answer (1)

Zopsmart Technology interview questions for popular designations

 Software Developer

 (8)

 SDE

 (5)

 Software Development Engineer

 (4)

 Software Development Engineer 1

 (4)

 Scrum Master

 (3)

 Software Engineer

 (3)

 Software Developer Intern

 (2)

 android Lead

 (1)

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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Get interview-ready with Top Zopsmart Technology Interview Questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Two questions were asked with a time duration of 35 minutes. But the problem was that they asked Good Knowledge of Fundamentals of CS and Good Hands on Data Structures, and they just took technical round at the first place. WHY?

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Development Engineer 1 interview:
  • Strings
  • Arrays
  • Linked List
Interview preparation tips for other job seekers - Prepare for everything like coding, aptitude, and fundamentals of DS and CS.

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is string contant pool?
  • Ans. 

    String constant pool is a memory area in Java where unique string literals are stored to optimize memory usage.

    • String constant pool is a part of the Java heap memory.

    • It stores unique string literals to avoid duplicate storage.

    • Strings created using double quotes are stored in the string constant pool.

    • Strings created using new keyword are stored in the heap memory.

  • Answered by AI
  • Q2. Can we create object for abstract classes and interfaces?
  • Ans. 

    Yes, we can create object for abstract classes and interfaces in Java.

    • Objects cannot be created for abstract classes directly, but can be created for concrete subclasses that extend the abstract class.

    • Interfaces cannot be instantiated, but objects can be created for classes that implement the interface.

    • Example: Abstract class Animal { abstract void makeSound(); } Class Dog extends Animal { void makeSound() { System.out...

  • Answered by AI
  • Q3. What is the keyword used in interface if we want concreate method?
  • Ans. 

    The keyword used in interface for concrete method is 'default'.

    • The 'default' keyword is used in interfaces to provide a default implementation for a method.

    • It allows interfaces to have concrete methods without requiring implementing classes to override them.

    • Example: 'default void methodName() { // method implementation }'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on core java concepts.

Skills evaluated in this interview

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

SDE Interview Questions & Answers

user image Amruth Reddy

posted on 4 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

30 min exam online test with easy and medium leetcode questions. Precisely Bulls and Cow problem and remove K digits leetcode questions

SDE Interview Questions asked at other Companies

Q1. 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 subsequence must be in strictly inc... read more
Add answer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

It was sort of assessment which consists of technical questions and coding round

Round 2 - One-on-one 

(1 Question)

  • Q1. It was of more around the technical subjects and college projects
Round 3 - One-on-one 

(1 Question)

  • Q1. It consists of all the technical questions and coding questions , projects etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you know

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)
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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology interview?
Zopsmart Technology interview process usually has 2-3 rounds. The most common rounds in the Zopsmart Technology interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Zopsmart Technology interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Zopsmart Technology. The most common topics and skills that interviewers at Zopsmart Technology expect are Javascript, NoSQL, Java, Analytical and Backend.
What are the top questions asked in Zopsmart Technology interview?

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

  1. Write a program to slice the array from given index and re-arrange the array w...read more
  2. What is the keyword used in interface if we want concreate meth...read more
  3. What is launch modes in andr...read more
How long is the Zopsmart Technology interview process?

The duration of Zopsmart Technology interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Zopsmart Technology Interview Process

based on 48 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
BigBasket Interview Questions
3.9
 • 356 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
Vyapar Interview Questions
3.4
 • 51 Interviews
Pepperfry Interview Questions
3.3
 • 31 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
View all

Zopsmart Technology Reviews and Ratings

based on 109 reviews

3.1/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.0

Salary

3.2

Job security

2.9

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 109 Reviews and Ratings
Lead React Developers

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Senior Java Developer

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Explore more jobs
Software Engineer
85 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
82 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Developer
74 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹11.7 L/yr - ₹31 L/yr

Software Development Engineer II
47 salaries
unlock blur

₹11 L/yr - ₹18.5 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