Upload Button Icon Add office photos

Zscaler Softech

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Zscaler Softech Software Engineer2 Interview Questions and Answers

Updated 24 Apr 2024

Zscaler Softech Software Engineer2 Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Basic questions on C# and DBMS
Round 2 - Technical 

(1 Question)

  • Q1. System design questions on networking
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round and aptitude

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2022. 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 Resume tips
Round 2 - Coding Test 

Few programming questions related to string. Reversing a string.

Round 3 - Technical 

(1 Question)

  • Q1. Related to Java 8 features and also few questions from spring boot annotations. And also they'll ask about your project and it's used technologies.
Round 4 - Other 

(1 Question)

  • Q1. Varsant English test

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and talk about your project

I applied via Naukri.com and was interviewed in Mar 2022. 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 Resume tips
Round 2 - Coding Test 

Few programming questions related to string. Reversing a string.

Round 3 - Technical 

(1 Question)

  • Q1. Related to Java 8 features and also few questions from spring boot annotations. And also they'll ask about your project and it's used technologies.
Round 4 - Other 

(1 Question)

  • Q1. Varsant English test

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and talk about your project
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on hashmap and hashset Java 8 features Previous project and company Coding questions on strings and arrays
Round 2 - Technical 

(1 Question)

  • Q1. Behavioural questions and managerial discussion on tech stack
Round 3 - Versant round 

(1 Question)

  • Q1. English vocabulary rounds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Baiscs on resume, Javascript basics, Promises
Round 2 - Technical 

(1 Question)

  • Q1. Js code playground, output based, find vowels in a string
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Learn basic mathematics and english comprehension concepts

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

I applied via Campus Placement and was interviewed before Sep 2021. 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 Resume tips
Round 2 - Aptitude Test 

Math and verbal round .

Round 3 - Group Discussion 

General topics to speak

Round 4 - Technical 

(1 Question)

  • Q1. Duplicates in array College Projects Hashmap implementation
  • Ans. 

    Implement a function to find duplicates in an array of strings using Hashmap.

    • Create a Hashmap to store the frequency of each string in the array

    • Iterate through the array and check if the frequency of any string is greater than 1

    • If yes, add it to the list of duplicates

    • Return the list of duplicates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer what you know, be genuine and honest

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DBMS.

  • Q1. What is data integrity?
  • Ans. 

    Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

    • Data integrity ensures that data is accurate and consistent in storage and transmission.

    • It involves maintaining the quality and reliability of data over time.

    • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

    • Examples of data integrity violations include data corruption, unautho

  • Answered by AI
  • Q2. What is a trigger in the context of a database management system?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

    • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

    • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential

  • Answered by AI
  • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
  • Ans. 

    Clustered indexes physically order the data in the table, while non-clustered indexes do not.

    • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

    • Non-clustered indexes are stored se...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DBMS.

  • Q1. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

    • UNION merges the result sets of two or more SELECT statements and removes duplicates.

    • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

    • UNION is slower than UNION ALL as it involves removing duplicates.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column...

  • Answered by AI
  • Q2. What are the functions of a cursor in PL/SQL?
  • Ans. 

    A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

    • Allows iteration over a result set

    • Retrieves data row by row

    • Can be used to update or delete rows in a table

    • Must be declared, opened, fetched, and closed

  • Answered by AI
  • Q3. Write a SQL query to fetch the nth highest salary from a table.
  • Ans. 

    SQL query to fetch the nth highest salary from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to fetch the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a managerial round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have got questions about vsam files and about SQL queries.
  • Q2. What is my previous work and project roles and responsibilities.?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics clear with your project,your work,and your roles and responsibilities and be good to make them understand what you willing to answer.
Contribute & help others!
anonymous
You can choose to be anonymous

Zscaler Softech Interview FAQs

How many rounds are there in Zscaler Softech Software Engineer2 interview?
Zscaler Softech interview process usually has 3 rounds. The most common rounds in the Zscaler Softech interview process are Technical and One-on-one Round.
What are the top questions asked in Zscaler Softech Software Engineer2 interview?

Some of the top questions asked at the Zscaler Softech Software Engineer2 interview -

  1. System design questions on network...read more
  2. Basic questions on C# and D...read more

Recently Viewed

SALARIES

Zscaler Softech

INTERVIEWS

Zscaler Softech

No Interviews

SALARIES

Zscaler Softech

SALARIES

Grant Thornton Bharat

INTERVIEWS

Pattern Technologies

No Interviews

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Pattern Technologies

10 top interview questions

SALARIES

Grant Thornton Bharat

DESIGNATION

SALARIES

Zscaler Softech

Tell us how to improve this page.

Zscaler Softech Software Engineer2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 173 Interviews
AVASOFT Interview Questions
3.6
 • 160 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
SPRINKLR Interview Questions
3.0
 • 100 Interviews
UKG Interview Questions
3.1
 • 100 Interviews
View all
Zscaler Softech Software Engineer2 Salary
based on 39 salaries
₹15 L/yr - ₹28.5 L/yr
13% more than the average Software Engineer2 Salary in India
View more details

Zscaler Softech Software Engineer2 Reviews and Ratings

based on 3 reviews

4.1/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.6

Salary

3.6

Job security

3.2

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 3 Reviews and Ratings
Technical Account Manager
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
71 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zscaler Softech with

Palo Alto Networks

3.9
Compare

Gen

4.0
Compare

FireEye

4.3
Compare

Check Point Software Technologies

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