Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology SDE Interview Questions and Answers

Updated 8 Nov 2024

Zopsmart Technology SDE Interview Experiences

5 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

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

Round 1 - Coding Test 

Two easy to medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them.

    • Create a new string to store the reversed string

    • Iterate through the original string from end to start

    • Append each character to the new string

    • Return the new string as the reversed string

  • Answered by AI
  • Q2. First and last occurrence of an element in a sorted array
  • Ans. 

    Find the first and last occurrence of an element in a sorted array.

    • Use binary search to find the first occurrence of the element.

    • Modify binary search to find the last occurrence of the element.

    • Handle cases where the element is not found in the array.

  • Answered by AI

Skills evaluated in this interview

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

asked in Infosys
Q1. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q2. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q3. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q4. Maximum Meetings Selection You are tasked with scheduling meeting ... read more
asked in Amazon
Q5. There is a 12 km road and a contractor who is in-charge of repair ... read more

SDE Interview Questions & Answers

user image angad

posted on 10 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detai...

  • Answered by AI

SDE Interview Questions & Answers

user image Anonymous

posted on 1 Nov 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. 1. I was asked to create bst from preorder and inorder 2. Basic OOPs concepts 3. Question on finding the highest profit after selling the stocks
  • Q2. 4. Question from projects

Interview Preparation Tips

Interview preparation tips for other job seekers - basic DSA and OOPs

Zopsmart Technology interview questions for designations

 Testing

 (1)

 Trainee

 (1)

SDE Interview Questions & Answers

user image Mehul Khandelwal

posted on 19 Apr 2024

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

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on React, virtual DOM and basic questions on javascript DSA questions included Linked List reversal and find a cycle in linked list

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude round contains 20 mcq's.

Round 2 - Technical 

(3 Questions)

  • Q1. Ask 2 to 3 puzzles
  • Q2. Questions on DBMS
  • Q3. Ask 2/3 questions of dsa on topics like linked list and array
Round 3 - HR 

(1 Question)

  • Q1. What is your motivation to join the company
  • Ans. 

    I am motivated to join the company because of its innovative projects and collaborative work environment.

    • Exciting projects that align with my interests and skills

    • Opportunity for growth and learning

    • Positive company culture and team dynamics

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The aptitude round included a range of logical and analytical questions.

Round 2 - Technical 

(1 Question)

  • Q1. The Technical round included a mix of problem solving and technical questions , evaluating the grasp of core concepts.
Round 3 - HR 

(1 Question)

  • Q1. The HR round was a discussion focused on personal experience , career aspiration , and alignment with the company's value.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Resume based questions
  • Q2. Event loop in nodejs
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue for new events to execute

  • Answered by AI
  • Q3. Javascript es6 questions

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology SDE interview?
Zopsmart Technology interview process usually has 1-2 rounds. The most common rounds in the Zopsmart Technology interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in Zopsmart Technology SDE interview?

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

  1. first and last occurrence of an element in a sorted ar...read more
  2. What is oops conce...read more
  3. reverse a str...read more

Tell us how to improve this page.

Zopsmart Technology SDE Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

SDE Interview Questions from Similar Companies

Amazon SDE Interview Questions
4.1
 • 44 Interviews
Flipkart SDE Interview Questions
4.0
 • 5 Interviews
Myntra SDE Interview Questions
4.0
 • 3 Interviews
Snapdeal SDE Interview Questions
3.8
 • 1 Interview
Blinkit SDE Interview Questions
3.7
 • 1 Interview
View all
Zopsmart Technology SDE Salary
based on 29 salaries
₹9 L/yr - ₹12.5 L/yr
48% less than the average SDE Salary in India
View more details

Zopsmart Technology SDE Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
85 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
83 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Developer
67 salaries
unlock blur

₹8.5 L/yr - ₹15 L/yr

Software Development Engineer II
52 salaries
unlock blur

₹11 L/yr - ₹22 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹11.7 L/yr - ₹31 L/yr

Explore more salaries
Compare Zopsmart Technology with

Vyapar

3.4
Compare

Nowfloats Technologies

3.2
Compare

ShopKirana

3.8
Compare

Classplus

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