Upload Button Icon Add office photos

Filter interviews by

Veritas Senior Software Developer Interview Questions and Answers

Updated 10 Oct 2023

Veritas Senior Software Developer Interview Experiences

2 interviews found

I was interviewed in Sep 2021.

Interview Questionnaire 

4 Questions

  • Q1. Put vs post vs Patch request
  • Ans. 

    PUT is used to update an existing resource, POST is used to create a new resource, PATCH is used to update a part of an existing resource.

    • PUT replaces the entire resource with the new one

    • POST creates a new resource with a new URI

    • PATCH updates a part of the existing resource

    • PUT and POST are idempotent, PATCH is not

    • PUT and PATCH are safe, POST is not

  • Answered by AI
  • Q2. Array vs Arraylist
  • Ans. 

    Array is a fixed size collection of elements while ArrayList is a dynamic collection that can grow or shrink.

    • Arrays are faster and more memory efficient than ArrayLists.

    • Arrays can only store elements of the same data type while ArrayLists can store any type of object.

    • ArrayLists have built-in methods for adding, removing, and sorting elements while arrays require manual manipulation.

    • Arrays are typically used for small c...

  • Answered by AI
  • Q3. Arraylist internal working
  • Q4. Spring AOP related transactional annotation question

Interview Preparation Tips

Interview preparation tips for other job seekers - Core Java , Spring AOP, Spring security, DSA

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic oops question and previous project detail
  • Q2. Previous project and os concept
  • Ans. 

    Developed a project using the concept of operating systems to optimize resource allocation and improve performance.

    • Implemented process scheduling algorithms like Round Robin and Priority Scheduling.

    • Utilized memory management techniques such as paging and segmentation.

    • Used synchronization mechanisms like semaphores and mutexes to prevent race conditions.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. No coding just basic discussion
  • Q2. Basic discussion on memeory management

Skills evaluated in this interview

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Freshworks
Q2. Middle Of Linked ListGiven the head node of the singly linked lis ... read more
asked in Freshworks
Q3. Overlapping IntervalsYou have been given the start and end times ... read more
asked in SAP
Q4. Sum Of Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in Freshworks
Q5. Cube Sum PairsYou are given a positive integer N, and you have to ... read more

Interview questions from similar companies

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

Based on core Java, DS and spring

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

(2 Questions)

  • Q1. Reverse the linkedlist
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the next pointer of each node to point to the previous node

  • Answered by AI
  • Q2. Implement stack in c++
  • Ans. 

    Implement stack using array in C++

    • Create a class with an array to store elements

    • Implement push() and pop() functions to add and remove elements

    • Include functions like isEmpty() and isFull() to check stack status

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 5 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 - Coding Test 

Medium data structure problem was given and asked to solve. System design questions was asked.

Round 3 - Coding Test 

Medium data structure problem was asked. Java questions were asked and previous projects were discussed.

Round 4 - System Design 

(3 Questions)

  • Q1. System Design question was asked. Java concepts were asked.
  • Q2. Java Concepts were asked.
  • Q3. Previous projects were discussed.
Round 5 - Behavioral 

(1 Question)

  • Q1. Previous projects were discussed. Roles and responsibilities were discussed.

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Developer interview:
  • Data Structures
  • Algorithms
  • System Design
  • Java
Interview preparation tips for other job seekers - Prepare well and it becomes easy to crack.

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Core deep concepts of c++ and few basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the concepts of c++ and dsa
Also be precise with your past experience and vocal about the things you've achieved and learnt.
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 before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1 round consist base of development like OOPS, Basic Concept of solid, Design Pattern, Database, AZURE/AWS, Testing Frameworks, ORM etc.
  • Q2. What is Oops in c#?
  • Ans. 

    Object-Oriented Programming concepts in C#

    • Oops stands for Object-Oriented Programming.

    • It includes concepts like classes, objects, inheritance, polymorphism, encapsulation.

    • Example: Creating a class 'Car' with properties like 'make', 'model' and methods like 'drive'.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. More discussion on basic topic along with some advance area like architecture, security, performance,
Round 4 - HR 

(1 Question)

  • Q1. Mostly want to know how you are fit with there culture, more focus on personality.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare from basic things, If you don't know answer please tell them know, don't try to waste your time as well as interviewer

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a string without any library function.
  • Ans. 

    Reverse a string without any library function.

    • Create an empty string to store the reversed string

    • Loop through the original string from end to start

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI
  • Q2. About current project and it's architecture. Challenges you've faced in current project and how did you've solved it. Basic of OOPS
Round 2 - Mangerial 

(1 Question)

  • Q1. Personality check, tell me something about yourself which is not there in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with current project architecture....easy data structure problem solving skills and groom your concepts in programming language you use.

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of OOPS, .NET Core, Angular
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions on .Net Core, AWS Services

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of .NET core, C#,Angular

Interview Questionnaire 

1 Question

  • Q1. Print even and odd numbers using two threads in Java
  • Ans. 

    Printing even and odd numbers using two threads in Java

    • Create two threads, one for even numbers and one for odd numbers

    • Use a loop to iterate through the numbers and print them

    • Use synchronization to ensure alternate printing of even and odd numbers

    • Use wait() and notify() methods to control the execution of threads

  • Answered by AI

Skills evaluated in this interview

Veritas Interview FAQs

How many rounds are there in Veritas Senior Software Developer interview?
Veritas interview process usually has 3 rounds. The most common rounds in the Veritas interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Veritas Senior Software Developer interview?

Some of the top questions asked at the Veritas Senior Software Developer interview -

  1. Put vs post vs Patch requ...read more
  2. Previous project and os conc...read more
  3. Array vs Arrayl...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Veritas interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Veritas Senior Software Developer Salary
based on 26 salaries
₹13.3 L/yr - ₹28 L/yr
73% more than the average Senior Software Developer Salary in India
View more details

Veritas Senior Software Developer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

4.9

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

4.8

Job Security

5.0

Company culture

4.9

Promotions/Appraisal

5.0

Work Satisfaction

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