Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by DigiValet Team. If you also belong to the team, you can get access from here

DigiValet Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DigiValet Interview Questions, Process, and Tips

Updated 19 Nov 2024

Top DigiValet Interview Questions and Answers

View all 10 questions

DigiValet Interview Experiences

Popular Designations

15 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Acropolis Institute of Technology and Research, Bhopal and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

(2 Questions)

  • Q1. Array question with easy level on leetcode
  • Q2. Array + map question with medium level on leetcode
Round 2 - Technical 

(5 Questions)

  • Q1. Basic question to check your fundamental are cleared or not .
  • Q2. Ask on the basis of resume , oop + one language command is compulsary to clear it.
  • Q3. About inheritance, polymorphism , exception handling
  • Q4. Sorting , binary search
  • Q5. Sql command , react

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (186)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Hashmap internal working
  • Q2. Spring boot starter use
  • Ans. 

    Spring Boot starters are dependency descriptors that simplify the dependency management process in Spring Boot applications.

    • Spring Boot starters provide a set of pre-configured dependencies that can be easily included in your project.

    • They help in reducing the amount of boilerplate code needed to set up a Spring Boot application.

    • Starters are typically named with the format 'spring-boot-starter-*', where * represents the...

  • Answered by AI
  • Q3. Concurrnt andsynchrnized collection

Interview Preparation Tips

Interview preparation tips for other job seekers - read multithreading
concurrency very well
synchronization
synchronixed and concurrent collections

Skills evaluated in this interview

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
Add answer
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is spring starter?
  • Ans. 

    A spring starter is a mechanical device used to start an engine by storing energy in a spring and releasing it to turn the engine's crankshaft.

    • Spring starters are commonly used in small engines, such as those found in lawnmowers or chainsaws.

    • The spring is wound up manually or by pulling a cord, and when released, it rapidly unwinds to start the engine.

    • Spring starters are often used as a backup to electric starters in c...

  • Answered by AI
  • Q2. Whats is arraylist and array
  • Ans. 

    An array is a data structure that stores a collection of elements of the same data type. ArrayList is a resizable array implementation in Java.

    • Array: Fixed-size collection of elements accessed by index. Example: String[] names = new String[5];

    • ArrayList: Dynamic-size collection of elements in Java. Example: ArrayList names = new ArrayList<>();

Answered by AI

Skills evaluated in this interview

Senior Product Engineer Interview Questions asked at other Companies

Q1. Imagine an attack and guide through all steps involved to determine a Risk value. What is Feasibility ? What is impact and how risk is related to these factors ?
View answer (1)

Software Engineer Interview Questions & Answers

user image Shreem Pauranik

posted on 1 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It consistis of atitude questions along with some core subjects related question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Question were on Data Analytics
  • Q2. OOPS related questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)

DigiValet interview questions for popular designations

 Software Engineer

 (4)

 Software Developer

 (3)

 Project Engineer

 (2)

 Junior Software Engineer

 (1)

 QA Engineer

 (1)

 Senior Java Developer

 (1)

 Senior Product Engineer

 (1)

 Software Development Engineer Intern

 (1)

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

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

It was an easy process to be honest, the aptitude really was based on quants...and coding problem were holding easy to medium level of difficulty.

Round 2 - Technical 

(1 Question)

  • Q1. Tell me the technologies used in your project.
  • Ans. 

    The technologies used in my project include Java, Spring Boot, MySQL, and Angular.

    • Java

    • Spring Boot

    • MySQL

    • Angular

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.

Junior Software Engineer Interview Questions asked at other Companies

Q1. If there are 10 ball 2 red, 5 blue ,3 orange and one ball is picked randomly what is probability that the ball picked is red?
View answer (2)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff between priority and severity
  • Ans. 

    Priority is the order in which defects should be fixed, while severity is the impact of a defect on the system.

    • Priority determines the order in which defects should be fixed, based on business needs or deadlines.

    • Severity indicates the impact of a defect on the system's functionality or performance.

    • Priority is usually assigned by the project manager or product owner, while severity is determined by the QA team.

    • For examp...

  • Answered by AI
  • Q2. Test life cycle
Round 2 - Technical 

(2 Questions)

  • Q1. Compatibility testing
  • Q2. Simulator testing

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

Jobs at DigiValet

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Video Synthesis 

(1 Question)

  • Q1. I have to give the interview
Round 2 - Technical 

(1 Question)

  • Q1. Questions were on basically iot

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (10)

Software Developer Interview Questions & Answers

user image Prakhar Dabkara

posted on 13 Sep 2024

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

Easy level questions

Round 2 - Coding Test 

Basic level resume based

Round 3 - Coding Test 

Basic DSA , strong questions on resume

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 (38)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 minutes with logical questions and verbality

Interview Preparation Tips

Interview preparation tips for other job seekers - Always being ready for what ever interviewr ask you will provide your answer.

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 (38)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is Lan and basics
  • Ans. 

    LAN stands for Local Area Network, a network that connects computers and devices in a limited area such as a home, office, or campus.

    • LAN is a network that covers a small geographic area, typically within a single building or campus.

    • It allows connected devices to communicate with each other and share resources such as printers and internet access.

    • LANs are commonly used in homes, offices, and schools to facilitate commun...

  • Answered by AI

Skills evaluated in this interview

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (10)

DigiValet Interview FAQs

How many rounds are there in DigiValet interview?
DigiValet interview process usually has 2-3 rounds. The most common rounds in the DigiValet interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for DigiValet 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 DigiValet. The most common topics and skills that interviewers at DigiValet expect are Javascript, MySQL, HTML, Bootstrap and Hospitality.
What are the top questions asked in DigiValet interview?

Some of the top questions asked at the DigiValet interview -

  1. You are given an array of numbers in which some numbers are palindrome. Write a...read more
  2. You are given a multidimensional array of n length. You need to extract values ...read more
  3. What is Client side and server side Validatio...read more
How long is the DigiValet interview process?

The duration of DigiValet interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

DigiValet Interview Process

based on 16 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 227 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
FabHotels Interview Questions
3.0
 • 33 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Cleartrip Interview Questions
3.4
 • 17 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
Hotelogix Interview Questions
3.3
 • 1 Interview
View all

DigiValet Reviews and Ratings

based on 23 reviews

2.0/5

Rating in categories

2.7

Skill development

1.7

Work-life balance

2.0

Salary

2.1

Job security

1.7

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 23 Reviews and Ratings
Lead Infrastructure Engineer

Indore

2-5 Yrs

Not Disclosed

System IT Engineer

Indore

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
20 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Product Developer
11 salaries
unlock blur

₹6.6 L/yr - ₹10.5 L/yr

Project Engineer
10 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Devops Engineer
7 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Team Manager
6 salaries
unlock blur

₹22 L/yr - ₹28 L/yr

Explore more salaries
Compare DigiValet with

Hotelogix

3.3
Compare

QiK Stay

1.4
Compare

Oyo Rooms

3.3
Compare

Yatra

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