Upload Button Icon Add office photos

Filter interviews by

Veeam Software Interview Questions and Answers

Updated 5 Mar 2025

Veeam Software Interview Experiences

Popular Designations

5 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Feb 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What stacks you are using?
  • Q2. Where did you use kubernetties?

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Questions on Network Troubleshooting, VMware, Operating Systems , Open book but time is very very less one has to be super quick

Round 2 - Technical 

(1 Question)

  • Q1. Scenarios on Public Cloud how to access console , logs , again deep networking knowledge is needed
Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Duration : 60 mins
Total 5 questions.
1)Typescript
2)JS
3) CSS
4) React
5) Coding

Round 2 - Technical 

(1 Question)

  • Q1. Managarial Questions and Technical Questions
Round 3 - Technical 

(1 Question)

  • Q1. JS Technical Questions

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is inode ?
  • Ans. 

    An inode is a data structure in a Unix-style file system that stores information about a file or directory.

    • Inodes contain metadata about the file, such as permissions, ownership, timestamps, and pointers to data blocks.

    • Each file or directory in a Unix-style file system is represented by an inode.

    • Inodes are identified by a unique inode number within the file system.

    • When a file is created, an inode is allocated to store ...

  • Answered by AI
  • Q2. What is boot process of Linux
  • Ans. 

    The boot process of Linux involves several stages including BIOS, bootloader, kernel initialization, and user space initialization.

    • BIOS (Basic Input/Output System) performs hardware initialization and loads the bootloader

    • Bootloader (such as GRUB) loads the Linux kernel into memory

    • Kernel initializes devices, mounts the root filesystem, and starts the init process

    • Init process (systemd or SysVinit) starts user space proce

  • Answered by AI

Skills evaluated in this interview

Service Engineer Interview Questions asked at other Companies

Q1. What are the compulsory policy excess in four wheeler private vehicles?
View answer (12)

Veeam Software interview questions for popular designations

 Software Developer

 (1)

 Senior Software Engineer

 (1)

 React Js Frontend Developer

 (1)

 Service Engineer

 (1)

 Software Application Cloud Technical Support Analyst

 (1)

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

I was interviewed in Jan 2024.

Round 1 - Coding Test 

Had a DSA question based on maps, CSS related MCQ and prototype related MCQ

Round 2 - One-on-one 

(1 Question)

  • Q1. Solved basic DSA question hashmap

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview questions from similar companies

I was interviewed before Jan 2016.

Interview Questionnaire 

1 Question

  • Q1. Technical interview

Interview Preparation Tips

Round: Test
Experience: techincal questions from C,C++ . mostly pointers. few ques from DB, and OS.

Duration: 1 hour 30 minutes
Total Questions: 45

Round: Test
Experience: This is a rigourous 6-8 hours coding round where you are given a problem statement to solve .
The company people are there to guide you through the process .
Duration: 6 hours
Total Questions: 1

Round: Technical Interview
Experience: A panel of 2-3 members takes your inteview on basic fundamental c++, data structures questions.
duration is mostly 45 mins to 1hr.

Skills: C++, Coding Skills And Knowledge On Data Structures, Pointers In C, Logical Puzzles, Thinking Approach
College Name: Netaji Subhas Institute Of Technology, Delhi

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

Interview Questionnaire 

2 Questions

  • Q1. Networks based questions
  • Q2. Os based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and tough for fresher to crack, Nice package and good people who will guid u in interview process in case you are stuck at answer

Interview Questionnaire 

3 Questions

  • Q1. What is Multi Threading?
  • Ans. 

    Multi Threading is the ability of a program to perform multiple tasks simultaneously.

    • It improves performance by utilizing multiple cores of CPU.

    • It requires synchronization to avoid race conditions.

    • Examples include web servers, video games, and image processing software.

  • Answered by AI
  • Q2. What is Reflection in Java
  • Ans. 

    Reflection is a feature in Java that allows inspecting and modifying the behavior of a program at runtime.

    • Reflection provides a way to access and manipulate classes, methods, and fields dynamically.

    • It can be used to create new objects, invoke methods, and access private fields.

    • Reflection is commonly used in frameworks like Spring and Hibernate.

    • Example: Using reflection to get the class name of an object - obj.getClass(

  • Answered by AI
  • Q3. What was your contribution in your project?

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident
Contribute & help others!
anonymous
You can choose to be anonymous

Veeam Software Interview FAQs

How many rounds are there in Veeam Software interview?
Veeam Software interview process usually has 1-2 rounds. The most common rounds in the Veeam Software interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Veeam Software 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 Veeam Software. The most common topics and skills that interviewers at Veeam Software expect are HP Data Protector, Data Management, Virtualization, CRM and Linux.
What are the top questions asked in Veeam Software interview?

Some of the top questions asked at the Veeam Software interview -

  1. What is boot process of Li...read more
  2. What is inod...read more
  3. Scenarios on Public Cloud how to access console , logs , again deep networking ...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

SALARIES

INCREFF

LIST OF COMPANIES

Ajira Tech

Overview

LIST OF COMPANIES

CDM Smith

Overview

SALARIES

CCTech

INTERVIEWS

RUBRIK INDIA

No Interviews

Tell us how to improve this page.

Veeam Software Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Veritas Interview Questions
4.0
 • 63 Interviews
Magic Edtech Interview Questions
3.1
 • 49 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
CommVault Interview Questions
3.9
 • 27 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
Cohesity Interview Questions
3.6
 • 18 Interviews
RUBRIK INDIA Interview Questions
3.7
 • 13 Interviews
Arcserve Interview Questions
3.3
 • 9 Interviews
View all

Veeam Software Reviews and Ratings

based on 7 reviews

4.0/5

Rating in categories

4.5

Skill development

3.2

Work-life balance

4.8

Salary

3.3

Job security

4.0

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 7 Reviews and Ratings
Technical Support Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regional Channel Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Presales Consultant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Veeam Software with

Druva

3.7
Compare

Acronis

3.9
Compare

CommVault

3.9
Compare

RUBRIK INDIA

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview