Upload Button Icon Add office photos

Zscaler Softech

Compare button icon Compare button icon Compare

Filter interviews by

Zscaler Softech Senior Software Engineer Interview Questions and Answers

Updated 23 Oct 2024

9 Interview questions

A Senior Software Engineer was asked 8mo ago
Q. How do you handle millions of requests from clients?
Ans. 

Use load balancing, caching, and scaling techniques to handle millions of requests from clients.

  • Implement load balancing to distribute requests evenly across servers.

  • Utilize caching mechanisms to store frequently accessed data and reduce load on servers.

  • Scale horizontally by adding more servers to handle increased traffic.

  • Optimize code and database queries to improve performance and reduce response times.

A Senior Software Engineer was asked 8mo ago
Q. Implement a circular list.
Ans. 

Implement a circular list

  • Use a linked list where the last node points back to the first node

  • Keep track of the current node for easy traversal

  • Ensure proper handling of edge cases like empty list or single node

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked 9mo ago
Q. Describe the process of creating a bar graph.
Ans. 

Creating a bar graph using array of strings

  • Create an array of strings representing the data points for the bar graph

  • Each string should indicate the value of the bar and its corresponding label

  • Use a visualization tool or library to plot the bar graph based on the array of strings

A Senior Software Engineer was asked 9mo ago
Q. You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the fut...
Ans. 

The best time to buy and sell stock is when the price is low to buy and high to sell, maximizing profit.

  • Buy when the stock price is low and sell when it is high

  • Consider market trends and analysis to predict the best time to buy and sell

  • Avoid emotional decision-making and stick to a well-thought-out strategy

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

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

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

Are these interview questions helpful?
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...

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

Zscaler Softech Senior Software Engineer Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Implement a circular list.
  • Ans. 

    Implement a circular list

    • Use a linked list where the last node points back to the first node

    • Keep track of the current node for easy traversal

    • Ensure proper handling of edge cases like empty list or single node

  • Answered by AI
  • Q2. How to handle millions of request from clients?
  • Ans. 

    Use load balancing, caching, and scaling techniques to handle millions of requests from clients.

    • Implement load balancing to distribute requests evenly across servers.

    • Utilize caching mechanisms to store frequently accessed data and reduce load on servers.

    • Scale horizontally by adding more servers to handle increased traffic.

    • Optimize code and database queries to improve performance and reduce response times.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Best time to buy and sell stock
  • Ans. 

    The best time to buy and sell stock is when the price is low to buy and high to sell, maximizing profit.

    • Buy when the stock price is low and sell when it is high

    • Consider market trends and analysis to predict the best time to buy and sell

    • Avoid emotional decision-making and stick to a well-thought-out strategy

  • Answered by AI
  • Q2. Create a bar graph
  • Ans. 

    Creating a bar graph using array of strings

    • Create an array of strings representing the data points for the bar graph

    • Each string should indicate the value of the bar and its corresponding label

    • Use a visualization tool or library to plot the bar graph based on the array of strings

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Leetcode questions on strings, arrays and hashmap
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based questions + domain knowledge
Round 4 - One-on-one 

(1 Question)

  • Q1. System design interview + resume based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - This has to be one of the worst job interview process I have ever gone through. The recruiter contacted me over phone for Software engineer position and scheduled an interview in a week's time. While the interviews (5 in total) were of easy/moderate difficulty the whole process took 2.5 long months. I cleared them all and discussed salary figures, with the HR constantly in touch to persuade me to join, and then out of the blue one day he calls and says your application hasn't been approved by the higher ups so we can't proceed further. Didn't have the decency to give any explanation as to why this happened. Complete waste of everyone's time and unapologetically unprofessional behavior. Would recommend treading carefully with these folks.

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

I applied via Naukri.com and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Oracle Architecture, RAC Setup, Golden Gate Troubleshooting, Data Guard recover, RMAN restoration

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Day to Day activities and Oracle architecture

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A c++ written round. It contains good questions on c++ related to exception handling, virtual table concepts, smart_ptrs , etc ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your project.
Have decent but not great knowledge knowledge in DS/Algos
Know basics of system design.
Be good in your programming language.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basic javascript questions with practical approach

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java memory management
  • Q2. Spring boot basics
  • Q3. Classloaders in java
  • Ans. 

    Classloaders are responsible for loading classes into the JVM at runtime.

    • Java has three built-in classloaders: bootstrap, extension, and system.

    • Custom classloaders can be created to load classes from non-standard sources.

    • Classloaders follow a delegation model, where they first delegate to their parent classloader before attempting to load the class themselves.

    • Classloaders can be used for dynamic class loading and hot-s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java basics very well and solve various coding challenges

Skills evaluated in this interview

Zscaler Softech Interview FAQs

How many rounds are there in Zscaler Softech Senior Software Engineer interview?
Zscaler Softech interview process usually has 2 rounds. The most common rounds in the Zscaler Softech interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Zscaler Softech Senior Software Engineer interview?
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 Python, Linux, Debugging, Unix and Networking.
What are the top questions asked in Zscaler Softech Senior Software Engineer interview?

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

  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. How to handle millions of request from clien...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 3 interview experiences

Difficulty level

Hard 100%
View more
Zscaler Softech Senior Software Engineer Salary
based on 101 salaries
₹21.2 L/yr - ₹38 L/yr
71% more than the average Senior Software Engineer Salary in India
View more details

Zscaler Softech Senior Software Engineer Reviews and Ratings

based on 13 reviews

3.5/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.9

Salary

3.5

Job security

3.2

Company culture

3.5

Promotions

3.2

Work satisfaction

Explore 13 Reviews and Ratings
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