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
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Zscaler Softech?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

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.

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

Are these interview questions helpful?

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sliding window problem in an Array(using 2 pointers) like Pythagorean triplets.
  • Ans. 

    The sliding window technique efficiently finds Pythagorean triplets in an array using two pointers.

    • Sort the array to facilitate the two-pointer approach. Example: [3, 1, 4, 6, 5] becomes [1, 3, 4, 5, 6].

    • Iterate through the array, fixing one element and using two pointers for the remaining elements.

    • For each fixed element, check if the sum of squares of the two pointers equals the square of the fixed element.

    • If a triplet...

  • Answered by AI
  • Q2. Overlapping circular linked list problem.
  • Ans. 

    Detect if two circular linked lists overlap

    • Traverse both lists and check if they have the same tail node

    • If they have different tail nodes, they do not overlap

    • If they have the same tail node, check if they intersect at any point

    • Use Floyd's cycle-finding algorithm to detect intersection point

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 6 rounds of technical interview . Each round of 1 hr or more. In all the rounds I was asked to write proper programs (Sometimes on HackerRank, sometimes on an IDE, sometimes just on a text editor.) . Questions were designed to test problem solving abilities and proper use to dataStructures and coding basics. Lot of emphasis on writing efficient program with least time complexity possible.

During preparations, its important to understand basics of different dataStructures and how to efficiently use it in your programs . For practicing interview problems, I referred leetcode and geeksforgeeks . Solving different kind of problems from these websites really helped me. Dynamic Programming is also an important area from where lot of problems are asked in interview.

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. What are key differences in spring and springboot
  • Ans. 

    Spring is a framework while Spring Boot is an opinionated version of Spring.

    • Spring requires more configuration while Spring Boot has auto-configuration

    • Spring Boot has embedded servers while Spring does not

    • Spring Boot has a simpler setup process compared to Spring

    • Spring Boot has a built-in dependency management system

    • Spring Boot is more suitable for microservices architecture

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to brush up spring,SQL concepts very well

Skills evaluated in this interview

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What are distributed systems? How does the security can be maintained?
  • Ans. 

    Distributed systems are a network of independent computers that work together to achieve a common goal. Security can be maintained through encryption, authentication, access control, and monitoring.

    • Distributed systems consist of multiple computers that communicate and coordinate actions to achieve a common goal.

    • Security in distributed systems can be maintained through encryption of data in transit and at rest.

    • Authentic...

  • Answered by AI
  • Q2. Importance of container orchestration tools in large complex systems?
  • Ans. 

    Container orchestration tools are crucial for managing the deployment, scaling, and monitoring of large complex systems.

    • Container orchestration tools help automate the deployment and scaling of containerized applications, making it easier to manage large complex systems.

    • They provide features like service discovery, load balancing, health checks, and auto-scaling, which are essential for ensuring high availability and p...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amadeus Senior Software Engineer interview:
  • Advanced Java
  • Kafka
  • Docker
  • Angular
Interview preparation tips for other job seekers - Very Good Company.. Employee well being focus.

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 99 salaries
₹12 L/yr - ₹46 L/yr
69% 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.6/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

4.0

Salary

3.6

Job security

3.3

Company culture

3.6

Promotions

3.3

Work satisfaction

Explore 13 Reviews and Ratings
Senior Software Engineer

Bangalore / Bengaluru

3-7 Yrs

₹ 12-30 LPA

Explore more jobs
Technical Account Manager
124 salaries
unlock blur

₹13 L/yr - ₹40 L/yr

Software Engineer
103 salaries
unlock blur

₹7.5 L/yr - ₹26.2 L/yr

Senior Software Engineer
99 salaries
unlock blur

₹12 L/yr - ₹46 L/yr

Associate Software Engineer
68 salaries
unlock blur

₹6.8 L/yr - ₹21 L/yr

Softwaretest Engineer
55 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.3
Compare
write
Share an Interview