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

Filter interviews by

ZeMoSo Technologies Senior Software Engineer Interview Questions and Answers for Freshers

Updated 17 Mar 2025

ZeMoSo Technologies Senior Software Engineer Interview Experiences for Freshers

3 interviews found

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

I applied via Naukri.com and was interviewed in Sep 2023. There were 4 interview rounds.

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. The first round was based on general aptitude questions and technical questions based in my skill set.
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview questions were based on dsa and array based questions to be specific. Questions based on string manipulation and other Java related basic to intermediate technical questions.
Round 4 - Technical 

(1 Question)

  • Q1. Interview was based on some project related discussion and intermediate level of array based dsa questions. The other questions were related to Spring, Spring boot framework amd other Java related intervie...
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 - One-on-one 

(1 Question)

  • Q1. Questions on caching. Consistency

Senior Software Engineer Interview Questions Asked at Other Companies for Fresher

Q1. How do you create GQL server, directive in GQL, Fragments in GQL ... read more
Q2. Write an API to implement HTTP GET method to hit an external data ... read more
asked in LTIMindtree
Q3. Explain microservice architecture and how do we implement that us ... read more
asked in HCLTech
Q4. Find the second highest number by using Java Stream, What are the ... read more
Q5. How many projects or process you implemented in RE framework?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2023.

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 - Coding Test 

Spending sometime on Leetcode would help to crack coding test.

Round 3 - Technical 

(1 Question)

  • Q1. Technical round was very innovative to test hands on experience of candidates.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. API testing methods
  • Ans. 

    API testing methods involve functional, performance, security, and exploratory testing.

    • Functional testing ensures that the API meets the requirements and specifications.

    • Performance testing checks the API's response time, throughput, and resource utilization.

    • Security testing verifies the API's authentication, authorization, and encryption mechanisms.

    • Exploratory testing involves ad-hoc testing to discover defects and usa...

  • Answered by AI
  • Q2. Difference between sanity and smoke
  • Ans. 

    Sanity and Smoke are types of software testing. Sanity tests a specific functionality while Smoke tests the entire system.

    • Sanity testing is a narrow and deep testing approach while Smoke testing is a broad and shallow testing approach.

    • Sanity testing is performed after a small change in code while Smoke testing is performed after a major change in code.

    • Sanity testing is used to check if the critical functionalities are ...

  • Answered by AI
  • Q3. Difference between retesting and regression
  • Ans. 

    Retesting is testing the same functionality again after fixing the defects. Regression is testing the unchanged functionality after making changes.

    • Retesting is done to ensure that the defects have been fixed and the functionality is working as expected.

    • Regression is done to ensure that the changes made to the software have not affected the existing functionality.

    • Retesting is a subset of regression testing.

    • Retesting is ...

  • Answered by AI
  • Q4. Bug life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical based interview round.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What are types of joins?
  • Ans. 

    Types of joins include inner join, outer join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables

    • Outer join: Returns all rows when there is a match in one of the tables

    • Left join: Returns all rows from the left table and the matched rows from the right table

    • Right join: Returns all rows from the right table and the matched rows from the left table

    • Full join: Returns rows whe

  • Answered by AI
  • Q2. Delete duplicates from a table?
  • Ans. 

    Use a DELETE statement with a self-join on the table to remove duplicates.

    • Use a DELETE statement with a self-join on the table to identify and remove duplicates.

    • Example: DELETE t1 FROM table_name t1 INNER JOIN table_name t2 WHERE t1.id < t2.id AND t1.column_name = t2.column_name;

  • Answered by AI
  • Q3. What are ETL and ELT tools and what are their differences?
  • Ans. 

    ETL and ELT tools are used for extracting, transforming, and loading data in data warehousing and analytics processes.

    • ETL stands for Extract, Transform, Load and involves extracting data from various sources, transforming it into a usable format, and loading it into a data warehouse or database.

    • ELT stands for Extract, Load, Transform and involves extracting data, loading it into a target system, and then transforming i...

  • Answered by AI
  • Q4. Can we add a new column in between 2 existing columns in a table? yes or no? Justify the answer
  • Ans. 

    Yes, a new column can be added in between 2 existing columns in a table by altering the table structure.

    • Yes, a new column can be added in between 2 existing columns by using the ALTER TABLE statement in SQL.

    • The new column can be specified to be added after a specific existing column.

    • For example, ALTER TABLE table_name ADD new_column_name datatype AFTER existing_column_name;

  • Answered by AI
  • Q5. Types of normalizations with brief explanation.
  • Ans. 

    Types of normalizations in databases help reduce redundancy and improve data integrity.

    • First Normal Form (1NF) - Eliminates repeating groups and ensures each column contains atomic values.

    • Second Normal Form (2NF) - Ensures all non-key attributes are fully functional dependent on the primary key.

    • Third Normal Form (3NF) - Removes transitive dependencies by moving non-key attributes to separate tables.

    • Boyce-Codd Normal Fo...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Basics of oops concepts
  • Q2. SQL queries based on joins, views and stored procedures
  • Q3. Difference between SP and A function
  • Ans. 

    SP is a stored procedure in a database, while a function is a piece of code that performs a specific task.

    • SP is precompiled and stored in the database, while a function is compiled and executed at runtime.

    • Functions can return a value, while SPs can return multiple result sets.

    • Functions can be used in SQL queries, while SPs are called using EXECUTE statement.

  • Answered by AI
  • Q4. What are views, why use them and what are the types.
  • Ans. 

    Views in databases are virtual tables that display data from one or more tables based on a query.

    • Views are used to simplify complex queries by storing them as a virtual table.

    • They can hide the complexity of underlying tables and provide a layer of security by restricting access to certain columns.

    • Types of views include simple views, complex views, materialized views, and indexed views.

  • Answered by AI
  • Q5. Top-down vs bottom-up programming approach.
  • Ans. 

    Top-down focuses on breaking down the problem into smaller parts, while bottom-up starts with small components and builds up.

    • Top-down starts with a high-level overview and breaks it down into smaller components.

    • Bottom-up starts with small components and gradually builds up to create a complete system.

    • Top-down is more structured and easier to plan, while bottom-up is more flexible and iterative.

    • Examples: Top-down - wate

  • Answered by AI

Interview Preparation Tips

Topics to prepare for kipi.ai Senior Software Engineer interview:
  • SQL
  • Programming
  • C
  • Agile Methodology
  • Communication Skills

Skills evaluated in this interview

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

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Form based JS questions. String questions in javascript
  • Q2. React interview questions with some state management follow up questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on js ,es6, node.js
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Duration was 1 hour, Topics covered were DSA, Concurrency in golang, Databse questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learing DSA everyday and Master tthe most important topics in your programming language

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Informatica scenario based questions
  • Q2. Told to write complex sql queries based on some informations.
  • Q3. Agile methodology
  • Q4. What do you know about Saama

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience and good hike.

Interview Questionnaire 

1 Question

  • Q1. SOLID principles examples in depth,given to design user management database in sql(just flow diagram,and in which table which value is used),some basic c# questions related to how you log in c#

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Senior Software Engineer interview for freshers?
ZeMoSo Technologies interview process for freshers usually has 3 rounds. The most common rounds in the ZeMoSo Technologies interview process for freshers are Resume Shortlist, Technical and One-on-one Round.
How to prepare for ZeMoSo Technologies Senior Software Engineer interview for freshers?
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 ZeMoSo Technologies. The most common topics and skills that interviewers at ZeMoSo Technologies expect are Javascript, Agile, Big Data, Coding and JQuery.
What are the top questions asked in ZeMoSo Technologies Senior Software Engineer interview for freshers?

Some of the top questions asked at the ZeMoSo Technologies Senior Software Engineer interview for freshers -

  1. What is API gateway?, Circuit breaker pattern, Load Balancing, Java Stream API,...read more
  2. How can you write a code to transform the sequence of numbers from 1, 2, 3, 4, ...read more
  3. Interview was based on some project related discussion and intermediate level o...read more
How long is the ZeMoSo Technologies Senior Software Engineer interview process?

The duration of ZeMoSo Technologies Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

ZeMoSo Technologies Senior Software Engineer Interview Process for Freshers

based on 3 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
ZeMoSo Technologies Senior Software Engineer Salary
based on 83 salaries
₹9.3 L/yr - ₹30 L/yr
26% more than the average Senior Software Engineer Salary in India
View more details

ZeMoSo Technologies Senior Software Engineer Reviews and Ratings

based on 20 reviews

3.7/5

Rating in categories

4.0

Skill development

3.6

Work-life balance

4.0

Salary

3.4

Job security

3.6

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 20 Reviews and Ratings
Senior Software Engineer
83 salaries
unlock blur

₹9.3 L/yr - ₹30 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
37 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Senior Software Engineer 1
34 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Software Engineer2
31 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

Cyfuture

3.0
Compare

DISYS

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