Upload Button Icon Add office photos

Zscaler Softech

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Zscaler Softech Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 16 Feb 2024

Zscaler Softech Graduate Engineer Trainee (Get) Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Technical and aptitude questions

Round 2 - Group Discussion 

Talk for 2 mins about the topic

Round 3 - Technical 

(2 Questions)

  • Q1. One to one round
  • Q2. Osi model, all networking and some os related basic to medium level questions
Round 4 - One-on-one 

(2 Questions)

  • Q1. Based on cv projects and networking
  • Q2. Network interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare networking
Do projects

Interview questions from similar companies

I applied via Campus Placement 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 Resume tips
Round 2 - Group Discussion 

They've given a common topic to discuss and monitored our attitude towards the talk.

Round 3 - Technical 

(1 Question)

  • Q1. OOPS concepts Python basic questions About family
Round 4 - HR 

(1 Question)

  • Q1. SQl questions Basic queries Self intro Why Avasoft

Interview Preparation Tips

Interview preparation tips for other job seekers - Be comfortable and confident.
Be Clear with whatever you put in resume.

I applied via Campus Placement and was interviewed in Oct 2022. There were 3 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 - Group Discussion 

First round we were split into groups of 10 for GD

Round 3 - Technical 

(3 Questions)

  • Q1. Next we had technical round with questions from coding domain
  • Q2. Logic of for loop and how merge sort works
  • Ans. 

    Explaining the logic of for loop and how merge sort works

    • For loop is a control flow statement that iterates a set of instructions based on a condition

    • Merge sort is a divide and conquer algorithm that divides an array into two halves, sorts them separately, and then merges them

    • For loop can be used to iterate through an array and perform merge sort on it

    • Merge sort has a time complexity of O(n log n) and is efficient for

  • Answered by AI
  • Q3. Explain sorting and why C is structural language.
  • Ans. 

    Sorting is the process of arranging data in a particular order. C is a structural language because it follows a top-down approach.

    • Sorting is used to arrange data in ascending or descending order.

    • C is a structural language because it follows a top-down approach where the program is divided into smaller modules or functions.

    • Structures and pointers are important features of C language that make it a structural language.

    • Ex...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep communication at your level best and brush up all your basics of cs.

Skills evaluated in this interview

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.

Interview Questionnaire 

2 Questions

  • Q1. What's is meaning of success?
  • Ans. 

    Success is achieving one's goals and feeling fulfilled in the process.

    • Success is subjective and varies from person to person.

    • It can be achieving a personal or professional goal.

    • Success can also be measured by the impact one has on others.

    • Feeling fulfilled and content is a key component of success.

    • Success is not always about material possessions or wealth.

  • Answered by AI
  • Q2. Why do we work in corporate office?

Interview Preparation Tips

Interview preparation tips for other job seekers - Find all these kind of of questions and their solutions then you cracked any kind of interviews.

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

Interview Questionnaire 

1 Question

  • Q1. Questions were related to your technology on which you are good, it starts with basic that identifies you worked in your technology and good knowledge over workflow and your coding standard.

Interview Preparation Tips

Interview preparation tips for other job seekers - Working hard and prepare yourself to achieve your goal where you are satisfy with your job. There is no shortcut, you have to face the challenges. Be prepare yourself

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

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

Zscaler Softech Interview FAQs

How many rounds are there in Zscaler Softech Graduate Engineer Trainee (Get) interview?
Zscaler Softech interview process usually has 4 rounds. The most common rounds in the Zscaler Softech interview process are Aptitude Test, Group Discussion and Technical.
What are the top questions asked in Zscaler Softech Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the Zscaler Softech Graduate Engineer Trainee (Get) interview -

  1. Osi model, all networking and some os related basic to medium level questi...read more
  2. Based on cv projects and network...read more
  3. Network interf...read more

Recently Viewed

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Pattern Technologies

No Interviews

INTERVIEWS

Airtel DTH Services

No Interviews

INTERVIEWS

Pattern Technologies

No Interviews

SALARIES

Flexera Software

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Zscaler Softech

No Interviews

INTERVIEWS

Zscaler Softech

No Interviews

Tell us how to improve this page.

Zscaler Softech Graduate Engineer Trainee (Get) Interview Process

based on 1 interview

Interview experience

3
  
Average
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
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