Upload Button Icon Add office photos
Engaged Employer

i

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

Zazz IT Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Zazz IT Solutions Senior Test Engineer Interview Questions and Answers

Updated 11 Nov 2024

Zazz IT Solutions Senior Test Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Test scenarios, regression sanity and integration testing

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 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#

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.

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.
Round 1 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

Genral aptitude questions

Round 3 - Technical 

(4 Questions)

  • Q1. Be prepared with your basics
  • Q2. Languages and work flow
  • Q3. Be aware what you keep in your resume
  • Q4. Be strong in a area

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What are the solid principles?
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open-Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - a subclass should be able to replace its parent class without affecting the system's behavior

    • Interface Segreg...

  • Answered by AI
  • Q2. Difference between ref and out?
  • Ans. 

    Ref and out are both used for passing arguments by reference in C#. Ref is bidirectional while out is unidirectional.

    • Ref and out are used to pass arguments by reference instead of by value

    • Ref is used for both input and output parameters while out is only used for output parameters

    • Ref requires the variable to be initialized before passing while out does not

    • Example: void MyMethod(ref int x) { x = x + 1; } and void MyMeth

  • Answered by AI
  • Q3. Explain about your project its architecture.
  • Q4. What are the rest APIs and popular status codes?
  • Ans. 

    REST APIs are a way to interact with web services. Popular status codes include 200, 404, and 500.

    • REST APIs allow clients to access and manipulate resources on a server using HTTP requests

    • Common HTTP methods used in REST APIs include GET, POST, PUT, and DELETE

    • Status codes indicate the success or failure of a request, with 2xx codes indicating success and 4xx/5xx codes indicating errors

    • Some popular status codes include ...

  • Answered by AI
  • Q5. Explain memory management in c#.
  • Ans. 

    Memory management in C# involves automatic garbage collection and the use of pointers.

    • C# uses a garbage collector to automatically manage memory allocation and deallocation.

    • Developers can use pointers to directly manipulate memory, but this is not recommended.

    • C# also provides tools for managing memory usage, such as the IDisposable interface and the using statement.

  • Answered by AI
  • Q6. What are the latest architectural trends in c#?
  • Ans. 

    Microservices, cloud-native, and serverless are the latest architectural trends in C#.

    • Microservices architecture is gaining popularity due to its scalability and flexibility.

    • Cloud-native architecture focuses on building applications that are optimized for cloud environments.

    • Serverless architecture allows developers to focus on writing code without worrying about infrastructure management.

    • Other trends include containeri...

  • Answered by AI
  • Q7. Comparison between .net core and framework
  • Ans. 

    Both .NET Core and Framework are used for developing Windows applications, but Core is cross-platform and lightweight.

    • Core is open-source and modular, while Framework is a monolithic framework

    • Core has better performance and scalability than Framework

    • Core supports microservices architecture, while Framework does not

    • Core has a smaller footprint and can be deployed as a single executable

    • Framework has better backward compa

  • Answered by AI
  • Q8. Major advancements in .net core
  • Ans. 

    Major advancements in .NET Core include improved performance, cross-platform compatibility, and enhanced security features.

    • Improved performance through the use of Span and other optimizations

    • Cross-platform compatibility with support for Linux and macOS

    • Enhanced security features such as runtime code generation and data protection

    • Introduction of .NET Core 3.0 with support for Windows Desktop applications

    • Integration with ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and straightforward

Skills evaluated in this interview

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

Zazz IT Solutions Interview FAQs

How many rounds are there in Zazz IT Solutions Senior Test Engineer interview?
Zazz IT Solutions interview process usually has 1 rounds. The most common rounds in the Zazz IT Solutions interview process are Case Study.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

REVIEWS

Tsugami Precision Engineering

No Reviews

INTERVIEWS

Amadeus

No Interviews

INTERVIEWS

Dusters Total Solutions Services

No Interviews

INTERVIEWS

Hero MotoCorp

No Interviews

INTERVIEWS

HCL Infosystems

No Interviews

Tell us how to improve this page.

Zazz IT Solutions Senior Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Magic Edtech Interview Questions
3.0
 • 50 Interviews
Affine Interview Questions
3.3
 • 48 Interviews
IT By Design Interview Questions
4.0
 • 39 Interviews
ConsultAdd Interview Questions
3.7
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all
Project Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI/UX Designer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zazz IT Solutions with

Nexus Venture Partners

3.0
Compare

Sequoia Capital

3.4
Compare

Matrix Partners

2.8
Compare

Lightspeed Venture Partners

1.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