Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ZeMoSo Technologies Team. If you also belong to the team, you can get access from here

ZeMoSo Technologies Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 166 Reviews

Filter interviews by

ZeMoSo Technologies Principal Software Engineer Interview Questions, Process, and Tips

Updated 30 Oct 2024

Top ZeMoSo Technologies Principal Software Engineer Interview Questions and Answers

View all 10 questions

ZeMoSo Technologies Principal Software Engineer Interview Experiences

5 interviews found

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Simple coding questions and technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about the java programming language
  • Q2. Question on spring frameworks
Round 3 - Technical 

(2 Questions)

  • Q1. Sql query to find 2nd largest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find 2nd largest salary.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1,1 to get the second row after skipping the first row

  • Answered by AI
  • Q2. High level system design for a movie booking app
  • Ans. 

    A movie booking app system design involves user authentication, movie selection, seat reservation, payment processing, and booking confirmation.

    • User authentication: Implement login/signup functionality for users.

    • Movie selection: Display list of movies with details like showtimes, ratings, and genres.

    • Seat reservation: Allow users to select seats for chosen movie showtime.

    • Payment processing: Integrate payment gateway for...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ZeMoSo Technologies Principal Software Engineer interview:
  • Java
  • Spring Boot
  • SQL
Interview preparation tips for other job seekers - mediocore interview since it is a service based company

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Questions specific to tech stak mentioned in Resume

Round 2 - Coding Test 

2 intermidiate DS coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on skill sets
Round 4 - Technical 

(1 Question)

  • Q1. System design questions including design DB schema

Principal Software Engineer Interview Questions Asked at Other Companies

asked in F5 Networks
Q1. Codng question:For the given stream of integers, calculate the av ... read more
asked in Oracle
Q2. Implement Linked list with add, display, insert at end and delete ... read more
asked in Oracle
Q3. Predict Output based on whether static variables can be accessed ... read more
asked in Qualys
Q4. Why looking for change ? What kind of work is there in qualys?
asked in Oracle
Q5. String a = "Something" a.concat(" New") What will be garbage coll ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the use of pretty in JavaScript
  • Ans. 

    The pretty function in JavaScript is used to format and display data in a more visually appealing way.

    • Pretty function is used to format JSON data for better readability.

    • It can be used to display data in a structured and organized manner.

    • Pretty function is commonly used in debugging to make output easier to read.

  • Answered by AI
  • Q2. What are the features of Date and Time API in Java 8
  • Ans. 

    Java 8 Date and Time API provides improved date and time handling capabilities.

    • Introduction of new classes like LocalDate, LocalTime, LocalDateTime, ZonedDateTime, OffsetTime, OffsetDateTime, and Instant for better date and time manipulation

    • Support for time zones and offsets

    • Ability to perform date and time calculations easily

    • Enhanced formatting and parsing capabilities

    • Integration with existing date and time classes lik

  • Answered by AI
  • Q3. What are SOLID principles?
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its sub...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 - One-on-one 

(4 Questions)

  • Q1. Question related to the core java
  • Q2. Feature of Java 8
  • Ans. 

    Java 8 introduced lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to pass functionality as an argument to a method.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements efficiently.

    • Default methods allow interfaces to have methods with implementation.

    • Example: List names = Ar...

  • Answered by AI
  • Q3. What is multi threading?
  • Ans. 

    Multi threading is a programming concept where multiple threads within a process execute concurrently, allowing for better performance and responsiveness.

    • Allows for parallel execution of tasks within a single process

    • Improves performance by utilizing multiple CPU cores

    • Can lead to synchronization issues if not handled properly

    • Examples include web servers handling multiple client requests simultaneously

  • Answered by AI
  • Q4. How collections works internally?
  • Ans. 

    Collections in programming languages are data structures that store and organize multiple elements.

    • Collections can be implemented using various data structures such as arrays, linked lists, hash tables, and trees.

    • They provide methods for adding, removing, and accessing elements efficiently.

    • Examples of collections in Java include ArrayList, LinkedList, HashMap, and TreeSet.

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

(1 Question)

  • Q1. Questions related to the Spring framework

Skills evaluated in this interview

ZeMoSo Technologies interview questions for designations

 Principal Engineer

 (3)

 Software Engineer

 (15)

 Senior Software Engineer

 (21)

 Software Engineer III

 (6)

 Associate Software Engineer

 (5)

 Assistant Software Engineer

 (1)

 Software Testing Engineer

 (1)

 Software Engineer II

 (1)

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

I applied via Job Portal and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Online test with 8 questions mostly related to the technology applied for

Round 3 - Technical 

(1 Question)

  • Q1. How to sort an array and complexity
  • Ans. 

    Sorting an array of strings using a sorting algorithm like quicksort or mergesort.

    • Use a sorting algorithm like quicksort or mergesort to sort the array of strings.

    • Ensure the sorting algorithm is efficient and has a time complexity of O(n log n).

    • Consider the space complexity of the sorting algorithm as well.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Code review of given java classes
  • Ans. 

    Reviewing Java classes for code quality and best practices

    • Check for proper naming conventions and readability of code

    • Ensure that the code follows SOLID principles and design patterns

    • Look for potential bugs, performance issues, and security vulnerabilities

    • Verify that the code is well-documented and includes appropriate comments

    • Evaluate the test coverage and quality of unit tests

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top ZeMoSo Technologies Interview Questions

Interview questions from similar companies

Interview experience
3
Average
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 

(1 Question)

  • Q1. Data warehouse designing, data migration, SQL, Azure cloud
Round 3 - Technical 

(1 Question)

  • Q1. SQL, Python, Solution design

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Principal Software Engineer interview?
ZeMoSo Technologies interview process usually has 3 rounds. The most common rounds in the ZeMoSo Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in ZeMoSo Technologies Principal Software Engineer interview?

Some of the top questions asked at the ZeMoSo Technologies Principal Software Engineer interview -

  1. What are the features of Date and Time API in Jav...read more
  2. high level system design for a movie booking ...read more
  3. sql query to find 2nd largest sal...read more

Tell us how to improve this page.

ZeMoSo Technologies Principal Software Engineer Interview Process

based on 3 interviews in last 1 year

Interview experience

4
  
Good

People are getting interviews through

based on 4 ZeMoSo Technologies interviews
Job Portal
75%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 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
 • 790 Interviews
View all
ZeMoSo Technologies Principal Software Engineer Salary
based on 12 salaries
₹30 L/yr - ₹37.5 L/yr
11% more than the average Principal Software Engineer Salary in India
View more details

ZeMoSo Technologies Principal Software Engineer Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.4

Skill development

3.8

Work-Life balance

4.0

Salary & Benefits

3.8

Job Security

4.2

Company culture

4.6

Promotions/Appraisal

4.0

Work Satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
71 salaries
unlock blur

₹12.7 L/yr - ₹30 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
33 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Software Engineer2
28 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Senior Software Engineer 2
25 salaries
unlock blur

₹21.3 L/yr - ₹25 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Persistent Systems

3.5
Compare

LTIMindtree

3.9
Compare

Mphasis

3.4
Compare

TCS

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