Upload Button Icon Add office photos

Zscaler Softech

Compare button icon Compare button icon Compare

Filter interviews by

Zscaler Softech Interview Questions and Answers for Freshers

Updated 22 Jun 2025
Popular Designations

7 Interview questions

A Software Engineer Intern was asked 10mo ago
Q. Given an array of integers, find the minimum value in each sliding window of size k. Write the code in C.
Ans. 

Implement a function to find minimum values in a sliding window of an array.

  • Use a deque to store indices of array elements.

  • Maintain the deque in increasing order of values.

  • Remove indices that are out of the current window.

  • The front of the deque always contains the index of the minimum element.

View all Software Engineer Intern interview questions
An Intern was asked 10mo ago
Q. Describe the process of designing a login page or form.
Ans. 

A modern and user-friendly login page with email and password fields

  • Include a clean and simple design with a logo and branding

  • Add input fields for email and password with proper validation

  • Include a 'Forgot Password' link for password recovery

  • Add a 'Remember Me' checkbox for convenience

  • Include a 'Sign In' button for submitting the form

View all Intern interview questions
A Senior Software Engineer was asked
Q. How do you implement semaphores in Java?
Ans. 

Semaphores in Java are used for controlling access to a shared resource. They can be implemented using the java.util.concurrent package.

  • Use the Semaphore class from the java.util.concurrent package

  • Create a Semaphore object with an initial number of permits

  • Use the acquire() method to acquire a permit before accessing the shared resource

  • Use the release() method to release a permit after accessing the shared resource

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Given a string, swap the case of each character (uppercase to lowercase and lowercase to uppercase) without using utility functions, arithmetic operators, map, or array functions. For example, Zscalar shoul...
Ans. 

Swap characters from uppercase to lowercase and lowercase to uppercase in a given string.

  • Iterate through each character in the string

  • Check if the character is uppercase or lowercase

  • Swap the case of the character using bitwise XOR operation

  • Build the resulting string with the swapped characters

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How can bitmask operations be implemented in PostgreSQL?
Ans. 

Bitmask in Postgresql is used to store and manipulate multiple boolean values within a single integer column.

  • Bitmask is a technique to represent a set of boolean flags using binary digits.

  • In Postgresql, the bitwise operators (&, |, ^, ~) can be used to perform operations on bitmasks.

  • To set a specific flag in a bitmask, use the bitwise OR operator (|).

  • To check if a flag is set in a bitmask, use the bitwise AND oper...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How do you create a singleton, ensuring reflection does not compromise the implementation?
Ans. 

To create a singleton ensuring reflection does not mess up the implementation, use an enum or a private constructor with a static field.

  • Use an enum to create a singleton as enums are inherently singletons and cannot be instantiated multiple times.

  • Alternatively, use a private constructor with a static field to create a singleton.

  • To prevent reflection from creating multiple instances, throw an exception in the const...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is the difference between a ConcurrentHashMap and a synchronized HashMap?
Ans. 

ConcurrentHashMap allows multiple threads to access and modify the map concurrently, while SynchronizedHashMap ensures thread-safety by allowing only one thread to access the map at a time.

  • ConcurrentHashMap is more efficient in scenarios with high concurrency as it allows concurrent read and write operations.

  • SynchronizedHashMap is simpler to use and provides thread-safety, but can lead to performance degradation i...

View all Senior Software Engineer interview questions
Are these interview questions helpful?

Zscaler Softech Interview Experiences for Freshers

9 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Find sliding window min ( expected to write code in C)
  • Ans. 

    Implement a function to find minimum values in a sliding window of an array.

    • Use a deque to store indices of array elements.

    • Maintain the deque in increasing order of values.

    • Remove indices that are out of the current window.

    • The front of the deque always contains the index of the minimum element.

  • Answered by AI
  • Q2. Networking questions
  • Q3. Operating system questions
  • Q4. C pointers questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Quizes and mathematical aptitude

Round 2 - Case Study 

Two case studies were presented

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why this organization?
  • Ans. 

    I am drawn to this organization because of its innovative approach to data analysis and its commitment to making a positive impact in the industry.

    • The organization has a strong reputation for using cutting-edge technology and techniques in data analysis.

    • I admire the organization's focus on using data to drive decision-making and improve processes.

    • I am impressed by the organization's track record of success and growth i...

  • Answered by AI
  • Q2. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a seasoned data analyst leading projects and mentoring junior analysts.

    • Leading data analysis projects

    • Mentoring junior analysts

    • Continuing to learn and grow in the field

    • Possibly pursuing advanced certifications or degrees

    • Contributing to the success of the organization

  • Answered by AI

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2024

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

1hr hard questions DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Leetcode medium question
  • Q2. Leetcode easy question

Senior Software Engineer Interview Questions & Answers

user image Mayank Upadhyaya

posted on 19 Dec 2023

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
No response
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 

(5 Questions)

  • Q1. Difference. Between concurrent hash map and synchronised hashmap
  • Ans. 

    ConcurrentHashMap allows multiple threads to access and modify the map concurrently, while SynchronizedHashMap ensures thread-safety by allowing only one thread to access the map at a time.

    • ConcurrentHashMap is more efficient in scenarios with high concurrency as it allows concurrent read and write operations.

    • SynchronizedHashMap is simpler to use and provides thread-safety, but can lead to performance degradation in hig...

  • Answered by AI
  • Q2. Semaphores in java how to implement
  • Ans. 

    Semaphores in Java are used for controlling access to a shared resource. They can be implemented using the java.util.concurrent package.

    • Use the Semaphore class from the java.util.concurrent package

    • Create a Semaphore object with an initial number of permits

    • Use the acquire() method to acquire a permit before accessing the shared resource

    • Use the release() method to release a permit after accessing the shared resource

  • Answered by AI
  • Q3. Bitmask in Postgresql how to use
  • Ans. 

    Bitmask in Postgresql is used to store and manipulate multiple boolean values within a single integer column.

    • Bitmask is a technique to represent a set of boolean flags using binary digits.

    • In Postgresql, the bitwise operators (&, |, ^, ~) can be used to perform operations on bitmasks.

    • To set a specific flag in a bitmask, use the bitwise OR operator (|).

    • To check if a flag is set in a bitmask, use the bitwise AND operator ...

  • Answered by AI
  • Q4. Swap character from uppercase to lowercase and lowercase to uppercase Zscalar ->zSCALAR without using 1.util function 2.arithimatic operator 3.map 4.array function
  • Ans. 

    Swap characters from uppercase to lowercase and lowercase to uppercase in a given string.

    • Iterate through each character in the string

    • Check if the character is uppercase or lowercase

    • Swap the case of the character using bitwise XOR operation

    • Build the resulting string with the swapped characters

  • Answered by AI
  • Q5. How to create singleton ensuring reflection does not mess up the implementation
  • Ans. 

    To create a singleton ensuring reflection does not mess up the implementation, use an enum or a private constructor with a static field.

    • Use an enum to create a singleton as enums are inherently singletons and cannot be instantiated multiple times.

    • Alternatively, use a private constructor with a static field to create a singleton.

    • To prevent reflection from creating multiple instances, throw an exception in the constructo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare bit operations and java.util.concurrent package

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Group Discussion 

Topic was electric engine vs motor engine

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident what you want to say and be active.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA coding questions, CN mcq

Round 2 - Technical 

(1 Question)

  • Q1. OOPs related questions

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Questions are from databases like MySQL. Also we have to write queries.

Round 2 - Technical 

(1 Question)

  • Q1. Find maximum salary from the given table.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Question on Vpn
  • Q2. Questions on Ccna

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2024

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

I applied via Campus Placement and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Coding Test 

60 Minutes, Backend Developer, Hackerrank, API Creation

Round 2 - Technical 

(1 Question)

  • Q1. Design a login page/form
  • Ans. 

    A modern and user-friendly login page with email and password fields

    • Include a clean and simple design with a logo and branding

    • Add input fields for email and password with proper validation

    • Include a 'Forgot Password' link for password recovery

    • Add a 'Remember Me' checkbox for convenience

    • Include a 'Sign In' button for submitting the form

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

(1 Question)

  • Q1. Project discussion, resume based
Round 4 - HR 

(1 Question)

  • Q1. HR questions about myself

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Zscaler Softech?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

Zscaler Softech Interview FAQs

How many rounds are there in Zscaler Softech interview for freshers?
Zscaler Softech interview process for freshers usually has 2-3 rounds. The most common rounds in the Zscaler Softech interview process for freshers are Technical, Coding Test and One-on-one Round.
How to prepare for Zscaler Softech 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 Zscaler Softech. The most common topics and skills that interviewers at Zscaler Softech expect are Accounting, MS Office, Excel, Communication Skills and Finance.
What are the top questions asked in Zscaler Softech interview for freshers?

Some of the top questions asked at the Zscaler Softech interview for freshers -

  1. How to create singleton ensuring reflection does not mess up the implementat...read more
  2. Swap character from uppercase to lowercase and lowercase to uppercase Zscalar...read more
  3. Difference. Between concurrent hash map and synchronised hash...read more
How long is the Zscaler Softech interview process?

The duration of Zscaler Softech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 9 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
2.9
 • 105 Interviews
View all

Zscaler Softech Reviews and Ratings

based on 361 reviews

3.4/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.7

Salary

3.0

Job security

3.2

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 361 Reviews and Ratings
People Consultant(HR)

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

Staff Software Development Engineer - DevOps

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Deputy Manager, GL

Mohali

6-8 Yrs

Not Disclosed

Explore more jobs
Technical Account Manager
124 salaries
unlock blur

₹20.7 L/yr - ₹36 L/yr

Software Engineer
117 salaries
unlock blur

₹12.2 L/yr - ₹21.4 L/yr

Senior Software Engineer
101 salaries
unlock blur

₹21.2 L/yr - ₹38 L/yr

Associate Software Engineer
68 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Softwaretest Engineer
58 salaries
unlock blur

₹21.5 L/yr - ₹25.5 L/yr

Explore more salaries
Compare Zscaler Softech with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.2
Compare
write
Share an Interview