Upload Button Icon Add office photos

Filter interviews by

Veritas Technical Support Engineer Interview Questions and Answers

Updated 25 May 2024

Veritas Technical Support Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Explain linux details
  • Ans. 

    Linux is an open-source operating system based on Unix that is widely used in servers, desktops, and embedded systems.

    • Linux is free and open-source, meaning anyone can modify and distribute it.

    • It is based on Unix and follows a multi-user, multitasking model.

    • Linux uses a command-line interface, but also has graphical user interfaces like GNOME and KDE.

    • Common distributions include Ubuntu, CentOS, and Debian.

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

(1 Question)

  • Q1. Differnce between softlink and hardlink
  • Ans. 

    Softlinks are pointers to the original file while hardlinks are direct references to the file's inode.

    • Softlinks are symbolic links that point to the original file by its path.

    • Hardlinks are direct references to the file's inode on the disk.

    • Softlinks can span across different file systems while hardlinks cannot.

    • If the original file is deleted, softlinks become broken but hardlinks still point to the file data.

    • Softlinks h...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell me about yourself and past experiences
Round 2 - Technical 

(1 Question)

  • Q1. Linux environment, hardware issues, navigation in linux, logs.
Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion about past experience and current roll

Technical Support Engineer Interview Questions Asked at Other Companies

asked in Salesforce
Q1. Admin Questions :- What is Relationships what are types of relati ... read more
asked in Zoho
Q2. Send an email to customer apologising the mistake made by the rep ... read more
asked in Salesforce
Q3. How you will get contact of account with name starting with abc.
Q4. What are the steps which you will follow if a customer calls and ... read more
Q5. How to release previous IP which assign to your device?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Backup technology related question ,scenario based trouble shooting questions

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Support Role Questions 1) Like explaining a case which was done in your previous role and experience
  • Q2. Questions on Javascript
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Interview questions on Javascript, HTML, CSS and behavioural
Round 3 - Behavioral 

(1 Question)

  • Q1. Manager Questions based on Position and previous work experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How does internet works
  • Q2. HTTP codes SQL troubleshooting
Round 2 - Technical 

(1 Question)

  • Q1. SQL python java
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Work shifts questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Few linux commands
  • Q2. Explain few, Any command for example
  • Ans. 

    Some common commands for technical support engineers include ping, ipconfig, and tracert.

    • Ping: Used to test the reachability of a host on an IP network.

    • Ipconfig: Displays all current TCP/IP network configuration values.

    • Tracert: Shows the route that packets take to reach a specified destination.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Question related to L3 and L2 topics
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation. Relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what we have mentioned in the resume
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 

(2 Questions)

  • Q1. Basic Linux in-depth
  • Q2. Final year Project review and discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be your self. Make your introduction tell all about your self.

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. If I open www.google.com, explain what goes on in the background.
  • Ans. Explain the process from the scratch. DNS, TCP, SSL, and HTTP requests to google.com. The browser makes a DNS connection to get the IP address (explain the full process, recursive query), makes a TCP connection to the IP address (explain the handshake). Then since google is on HTTPS, a TLS handshake happens (Explain the full flow). Then, an HTTP GET request is made by the browser to fetch the page.
  • Answered by Md. Tahseen khan
  • Q2. Few differences between HTTP 1.0 and 1.1. You may want to check HTTP2 as well.
  • Ans. 

    HTTP 1.1 introduced persistent connections, chunked transfer encoding, and improved caching.

    • HTTP 1.1 allows multiple requests over a single connection

    • HTTP 1.1 supports chunked transfer encoding for better handling of large data

    • HTTP 1.1 introduced improved caching mechanisms

    • HTTP 2.0 uses binary framing instead of text-based framing in HTTP 1.x

  • Answered by AI
  • Q3. Read about caching headers thoroughly and their differences. Like the difference between no-store and no-cache.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with HTTP, DNS and SSL

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to solve the error in the code? what is scope? what are logical operators?
  • Ans. 

    Scope refers to the visibility and accessibility of variables in a program. Logical operators are used to perform logical operations in code.

    • Scope in programming refers to where in the code a variable can be accessed. It can be global, local, or block scope.

    • To solve an error in the code, first identify the error message or behavior causing the issue. Then, debug the code by checking for syntax errors, logical errors, o...

  • Answered by AI
  • Q2. How will you get the data in the table using js? what are the other ways to print the output? what is a block in js?
  • Ans. 

    To get data in a table using js, you can use DOM manipulation methods like getElementById or querySelector. Other ways to print output include console.log and innerHTML. A block in js is a set of statements enclosed in curly braces.

    • Use getElementById or querySelector to get data in a table using js

    • Other ways to print output include console.log and innerHTML

    • A block in js is a set of statements enclosed in curly braces,

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. About ServiceNow? About the technical role in my previous company? previous job roles and responsibilities? Why do you want to switch from previous company? How will you handle the challenges here in servi...
  • Q2. Why do I want to switch from my previous company?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for new challenges and opportunities for growth

    • Interested in gaining experience in a different industry or technology

    • Seeking a better work-life balance or company culture

    • Wanting to work with a different team or leadership style

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview went well, but I didn't receive any feedback beyond the rejection. I hope to get some insights into the reasons for the decision, as it would help to learn for next time. I'll definitely try again!

Skills evaluated in this interview

Veritas Interview FAQs

How many rounds are there in Veritas Technical Support Engineer interview?
Veritas interview process usually has 2-3 rounds. The most common rounds in the Veritas interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Veritas Technical Support 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 Veritas. The most common topics and skills that interviewers at Veritas expect are Technical Support, Troubleshooting, customer support, Networking and Unix.
What are the top questions asked in Veritas Technical Support Engineer interview?

Some of the top questions asked at the Veritas Technical Support Engineer interview -

  1. differnce between softlink and hardl...read more
  2. Explain linux deta...read more
  3. Linux environment, hardware issues, navigation in linux, lo...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Veritas interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Veritas Technical Support Engineer Salary
based on 269 salaries
₹7 L/yr - ₹18 L/yr
174% more than the average Technical Support Engineer Salary in India
View more details

Veritas Technical Support Engineer Reviews and Ratings

based on 23 reviews

3.5/5

Rating in categories

2.9

Skill development

3.3

Work-Life balance

3.6

Salary & Benefits

3.0

Job Security

3.0

Company culture

2.8

Promotions/Appraisal

2.7

Work Satisfaction

Explore 23 Reviews and Ratings
Software Engineer
420 salaries
unlock blur

₹7.3 L/yr - ₹22 L/yr

Senior Software Engineer
272 salaries
unlock blur

₹12.9 L/yr - ₹33 L/yr

Technical Support Engineer
269 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Senior Technical Support Engineer
145 salaries
unlock blur

₹10 L/yr - ₹20.5 L/yr

Principal Software Engineer
127 salaries
unlock blur

₹22 L/yr - ₹46 L/yr

Explore more salaries
Compare Veritas with

NortonLifeLock's

4.0
Compare

CommVault

3.9
Compare

Veeam Software

4.0
Compare

NetApp

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview