Upload Button Icon Add office photos

VVDN Technologies

Compare button icon Compare button icon Compare

Filter interviews by

VVDN Technologies Senior Software Engineer Interview Questions and Answers

Updated 6 Dec 2024

6 Interview questions

A Senior Software Engineer was asked 8mo ago
Q. Explain the UEFI Boot Phases.
Ans. 

UEFI boot phases manage the startup process of a computer, ensuring hardware and software initialization.

  • 1. Power-On Self Test (POST): Checks hardware components like RAM and CPU.

  • 2. UEFI Firmware Initialization: Loads UEFI drivers and initializes hardware.

  • 3. Boot Manager: Determines the boot device and loads the bootloader.

  • 4. Bootloader Execution: Loads the operating system kernel into memory.

  • 5. OS Initialization:...

A Senior Software Engineer was asked 8mo ago
Q. Explain the different bootloaders and their responsibilities.
Ans. 

Bootloaders initialize hardware and load operating systems, managing the startup process of a computer or embedded system.

  • Primary responsibilities include hardware initialization and loading the OS.

  • Examples of bootloaders: GRUB (Linux), U-Boot (embedded systems), and LILO (Linux).

  • Bootloaders can provide a menu for selecting different operating systems.

  • They often perform self-tests (POST) to ensure hardware is func...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked 11mo ago
Q. What is async/await?
Ans. 

Async/await is a feature in programming that allows asynchronous code to be written in a synchronous manner.

  • Async/await is a way to write asynchronous code in a more synchronous style.

  • It is used in languages like JavaScript to handle asynchronous operations.

  • Async functions return a Promise, which allows them to be awaited.

  • Await keyword is used to pause the execution of an async function until a Promise is settled.

A Senior Software Engineer was asked 11mo ago
Q. Explain how you would implement CI/CD.
Ans. 

Implementing CI/CD involves automating the process of integrating code changes and deploying them to production.

  • Set up a version control system like Git to track changes

  • Use a continuous integration tool like Jenkins to automatically build and test code

  • Implement automated testing to ensure code quality

  • Use a continuous deployment tool like Ansible or Docker to deploy code changes

  • Integrate monitoring and alerting to ...

What people are saying about VVDN Technologies

View All
respectfulscotch
5d
works at
Freelancing in my own
I have 9.2 years of experience in IT development role. I got few offers for Full stack MEAN from tcs, hcl, Vvdn and selected in Wipro (but not releasing the offer yet) Vvdn provides the highest ctc(all fixed) from above list but 5 days wfo. Lead position- 28 lpa Hcl being 2nd highest but 5% variable pay and hybrid. Lead position - 26.5 TCS being 3rd but 10% variable pay and 5 day wfo. Assistant consultant - 22 lpa I’m not sure about Vvdn’s culture, WLB, job security
Vvdn Technologies
0%
Hcl
0%
TCS
0%
3 participants . expiring in 2w
Got a question about VVDN Technologies?
Ask anonymously on communities.
A Senior Software Engineer was asked
Q. How is the sizeof operator implemented?
Ans. 

Sizeof operator in C returns the size of a variable or data type in bytes.

  • Sizeof operator is evaluated at compile time

  • Sizeof operator can be used with variables, data types, or expressions

  • Example: sizeof(int) returns 4 on a 32-bit system

A Senior Software Engineer was asked
Q. Create a Django project and deploy it using Docker and Git.
Ans. 

Create a Django project, deploy with Docker and Git

  • Install Django and Docker

  • Create a new Django project

  • Initialize a Git repository

  • Create a Dockerfile for the Django project

  • Build and run the Docker image

  • Push the code to a Git repository

VVDN Technologies HR Interview Questions

26 questions and answers

Q. What are your responsibilities in your current role?
Q. What were your roles and responsibilities at your previous company?
Q. What projects did you work on in college, and can you explain how they work ... read more

VVDN Technologies Senior Software Engineer Interview Experiences

7 interviews found

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

(2 Questions)

  • Q1. What is async/await
  • Ans. 

    Async/await is a feature in programming that allows asynchronous code to be written in a synchronous manner.

    • Async/await is a way to write asynchronous code in a more synchronous style.

    • It is used in languages like JavaScript to handle asynchronous operations.

    • Async functions return a Promise, which allows them to be awaited.

    • Await keyword is used to pause the execution of an async function until a Promise is settled.

  • Answered by AI
  • Q2. Implement CI/CD

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. JDK JRE JIT JVM
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sizeof operator implementation
  • Ans. 

    Sizeof operator in C returns the size of a variable or data type in bytes.

    • Sizeof operator is evaluated at compile time

    • Sizeof operator can be used with variables, data types, or expressions

    • Example: sizeof(int) returns 4 on a 32-bit system

  • Answered by AI

Skills evaluated in this interview

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 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. Explain about UEFI Boot Phases
  • Ans. 

    UEFI boot phases manage the startup process of a computer, ensuring hardware and software initialization.

    • 1. Power-On Self Test (POST): Checks hardware components like RAM and CPU.

    • 2. UEFI Firmware Initialization: Loads UEFI drivers and initializes hardware.

    • 3. Boot Manager: Determines the boot device and loads the bootloader.

    • 4. Bootloader Execution: Loads the operating system kernel into memory.

    • 5. OS Initialization: The ...

  • Answered by AI
  • Q2. Explain about the different bootloaders and its responsibilities
  • Ans. 

    Bootloaders initialize hardware and load operating systems, managing the startup process of a computer or embedded system.

    • Primary responsibilities include hardware initialization and loading the OS.

    • Examples of bootloaders: GRUB (Linux), U-Boot (embedded systems), and LILO (Linux).

    • Bootloaders can provide a menu for selecting different operating systems.

    • They often perform self-tests (POST) to ensure hardware is functioni...

  • Answered by AI
  • Q3. Explain about the FSP
  • Q4. Explain the major issue which resolved in the projects.

Interview Preparation Tips

Topics to prepare for VVDN Technologies Senior Software Engineer interview:
  • UEFI
  • C
  • Bootloader
  • Linux
  • Communication Protocols
Interview preparation tips for other job seekers - According to my experience, be confident about your projects and previous roles and responsibilities handled in the projects..

Pratice coding concepts wise ..and practice the each problem until you write without any warnings and errors..finally understand the code flow it gives a better knowledge to make your code readable and understandable by every developer.

If you're aspiring to become BIOS developer, be confident about basics of BIOS And its phases and about the protocols..

Skills evaluated in this interview

I applied via Naukri.com

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. C & Linux based questions along with project details.
  • Q2. C programming question
Round 3 - Technical 

(1 Question)

  • Q1. More coding round and programming basics
Round 4 - HR 

(2 Questions)

  • Q1. Personality test with HR basic question on background.
  • Q2. About companies policies

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't mention anything extra that you don't know. Interviewers questions will mainly revolve around your resume

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

Interview Questionnaire 

2 Questions

  • Q1. 1. What is Networking? 2. Questions and programs from C concepts (Arrays, function pointers, Bitwise Operators, Files, Storage classes, Memory allocation, String Operations) ? 3. To write programs fro...
  • Q2. 4. STA connection procedure to an Accesspoint 5. Authentication Methods (WPA/WPA2/WPA3, WEP) 6. Four-Way-Handshake process 7. Wi-Fi spec standards (11ac,ax,g,n) 8. Wi-Fi Roaming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the concepts, it is easy to crack the interview.

Interview Questionnaire 

5 Questions

  • Q1. Create a Django Project and deploy with docker and GIT
  • Ans. 

    Create a Django project, deploy with Docker and Git

    • Install Django and Docker

    • Create a new Django project

    • Initialize a Git repository

    • Create a Dockerfile for the Django project

    • Build and run the Docker image

    • Push the code to a Git repository

  • Answered by AI
  • Q2. GIT Fundamentals
  • Q3. Resume projects
  • Q4. Basic Python Questions
  • Q5. Salary Expectation
  • Ans. 

    I expect a competitive salary that reflects my experience and the industry standards for a Senior Software Engineer.

    • Based on my research, the average salary for a Senior Software Engineer in this region is between $120,000 and $150,000.

    • I have over 8 years of experience in software development, which I believe warrants a salary towards the higher end of that range.

    • I am also open to discussing benefits and bonuses, as th...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Multithreading in Java
  • Ans. 

    Multithreading in Java allows for concurrent execution of multiple threads within a single program.

    • Multithreading can improve performance by allowing multiple tasks to be executed simultaneously.

    • Java provides built-in support for multithreading through the Thread class and Runnable interface.

    • Synchronization is important to prevent race conditions and ensure thread safety.

    • Examples of multithreading in Java include GUI a...

  • Answered by AI
  • Q2. LinkedList custom implementation, springBoot, Microservices, kafka, core Java, DS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing DS, this will boost your confidence.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Fully technical and functional based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Fine it went well. Had a good discussion with interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java 8, J2EE, Spring, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - There were four rounds. Technical written, two technical f2f rounds, coding test.

All the best

VVDN Technologies Interview FAQs

How many rounds are there in VVDN Technologies Senior Software Engineer interview?
VVDN Technologies interview process usually has 1-2 rounds. The most common rounds in the VVDN Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for VVDN Technologies Senior Software 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 VVDN Technologies. The most common topics and skills that interviewers at VVDN Technologies expect are Linux, C++, Application Development, Embedded C and Firmware.
What are the top questions asked in VVDN Technologies Senior Software Engineer interview?

Some of the top questions asked at the VVDN Technologies Senior Software Engineer interview -

  1. Explain the major issue which resolved in the project...read more
  2. Create a Django Project and deploy with docker and ...read more
  3. Explain about the different bootloaders and its responsibilit...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
VVDN Technologies Senior Software Engineer Salary
based on 339 salaries
₹7.9 L/yr - ₹14 L/yr
37% less than the average Senior Software Engineer Salary in India
View more details

VVDN Technologies Senior Software Engineer Reviews and Ratings

based on 44 reviews

2.5/5

Rating in categories

3.0

Skill development

2.4

Work-life balance

2.5

Salary

2.8

Job security

2.3

Company culture

2.8

Promotions

2.4

Work satisfaction

Explore 44 Reviews and Ratings
Junior Engineer
1.7k salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Assistant Engineer
812 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Senior Software Engineer
354 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Technical Lead
343 salaries
unlock blur

₹12.7 L/yr - ₹22.1 L/yr

Embedded Software Engineer
343 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Explore more salaries
Compare VVDN Technologies with

Virtusa Consulting Services

3.7
Compare

Hexaware Technologies

3.5
Compare

CGI Group

4.0
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview