Upload Button Icon Add office photos

Filter interviews by

VVDN Technologies Senior .NET Developer Interview Questions and Answers

Updated 2 Aug 2024

VVDN Technologies Senior .NET Developer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are Middleware and filters
  • Ans. 

    Middleware and filters are components in ASP.NET Core that allow you to handle requests and responses in the pipeline.

    • Middleware are components that are added to the request pipeline to handle requests and responses.

    • Filters are used to implement cross-cutting concerns like logging, exception handling, and authorization.

    • Middleware can be used to modify the request or response before it reaches the controller action.

    • Filt...

  • Answered by AI
  • Q2. Authentication and authorisation
  • Q3. Oops concepts and questions around overloading overriding method hiding
Round 2 - HR 

(1 Question)

  • Q1. General hr behavioural question and situational questions
Round 3 - Technical 

(1 Question)

  • Q1. Majorly focused around oops and work practices
Round 4 - Client Interview 

(1 Question)

  • Q1. Unit testing strategies and basic behavioural questions

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a HashSet to find duplicates in an array of strings.

    • Create a HashSet to store unique elements.

    • Iterate through the array and check if the element is already in the HashSet.

    • If it is, then it is a duplicate. If not, add it to the HashSet.

    • Return the duplicates found in the array.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. HR gauged how well I can handle a pressured environment

Interview Preparation Tips

Interview preparation tips for other job seekers - Read important .net interview questions. Focus on basics

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic string manipulation program
  • Q2. What are different ways to Inject services
  • Ans. 

    Different ways to inject services in .NET

    • Constructor Injection: Services are injected through a class constructor

    • Property Injection: Services are injected through public properties

    • Method Injection: Services are injected as method parameters

    • Service Locator Pattern: Services are accessed through a central registry

    • DI Containers: Frameworks like Autofac, Unity, or Ninject manage service injection

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How JWT authentications work in Web API
  • Ans. 

    JWT authentication in Web API involves generating a token with user credentials and validating it on subsequent requests.

    • JWT stands for JSON Web Token, which is a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • In Web API, a JWT token is generated upon successful authentication and is sent to the client.

    • The client includes the JWT token in the Authorization header o...

  • Answered by AI
  • Q2. Write custom middleware
  • Ans. 

    Custom middleware in .NET allows for custom logic to be executed before or after an HTTP request is processed.

    • Create a class that implements the IMiddleware interface

    • Override the InvokeAsync method to add custom logic

    • Register the middleware in the Startup class using the UseMiddleware extension method

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between single & first in linq
  • Ans. 

    Single returns the only element of a sequence, or a default value if the sequence is empty. First returns the first element of a sequence, or a default value if the sequence contains no elements.

    • Single throws an exception if the sequence contains more than one element, while First does not.

    • Single is useful when you expect only one element in the sequence, while First is used when you just need the first element.

    • Example...

  • Answered by AI
  • Q2. Difference between ref & out keyword
  • Ans. 

    ref is used for passing a variable by reference, out is used for returning a value from a method

    • ref keyword is used to pass a variable by reference, allowing the method to modify the variable

    • out keyword is used to return a value from a method, the variable passed must be assigned a value within the method

    • ref parameters must be initialized before passing to the method, out parameters do not need to be initialized

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. General Aptitude Questions
  • Q2. 2 Coding Problems
  • Q3. Domain related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Assignment 

2 coding question (1st reverse a string without changing position of special character. 2nd remove elements before '#') + 20 mcqs

Round 2 - Group Discussion 

How to Improve software development process

Round 3 - Technical 

(3 Questions)

  • Q1. Rearrange string
  • Q2. Create form using react.js
  • Q3. Longest prefix of strings in array
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Q2. Basic hr question
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - JAM 

(1 Question)

  • Q1. The 1st round was JAM - Just a minute. They will give you a topic on the spot and we have to talk about this topic for 1-2min. Topics: The perfect prank you pulled, The best trip, Your pet's inner thoughts...
Round 2 - Group Discussion 

The 2nd round is GD: The GD was conducted properly for other batches. But for our batch the HR just collected everyone's resume and asked qns from our resume.
(Note: This is not an elimination round)

Round 3 - Aptitude Test 

The 3rd round was Aptitude and Technical mcq test: 10 qns - DBMS, 20 - Quants, 20 - Java mcq
(Note: This round has negative markings)

Round 4 - Technical 

(3 Questions)

  • Q1. Resume based and about projects
  • Q2. Basic sql queries Eg: SQL query to find the no of students in a department
  • Q3. Reverse a string - Python
  • Ans. 

    Reverse a string in Python using slicing

    • Use string slicing with a step of -1 to reverse the string

    • Example: 'hello'[::-1] will return 'olleh'

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. The last round was general hr: Since there were two many candidates the process took too much time. There was no questions asked during the hr round, who ever has agreed to the 2yrs bond were recruited

Interview Preparation Tips

Interview preparation tips for other job seekers - NOTE:
1. The 2yrs bond agreement.
2. No stipend will be provided for 2025 passouts (you have to work for the first 6months without stipend)
3. Based on business demand you may get QA role.

This is the worst interview experience I ever had and I would never recommend this company to anyone. I declined the offer.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on dotnet core
  • Q2. Basic questions on angular
Round 2 - Coding Test 

MCQ asked for css,js etx

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

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Ask for basic dot net questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Oops concepts
  • Q2. Questions on design patterns

VVDN Technologies Interview FAQs

How many rounds are there in VVDN Technologies Senior .NET Developer interview?
VVDN Technologies interview process usually has 3 rounds. The most common rounds in the VVDN Technologies interview process are Technical, HR and Client Interview.
How to prepare for VVDN Technologies Senior .NET Developer 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 .Net, C#, WPF and Winforms.
What are the top questions asked in VVDN Technologies Senior .NET Developer interview?

Some of the top questions asked at the VVDN Technologies Senior .NET Developer interview -

  1. What are Middleware and filt...read more
  2. find duplicates in an ar...read more
  3. Oops concepts and questions around overloading overriding method hid...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 VVDN Technologies interviews
Job Portal
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Junior Engineer
1.6k salaries
unlock blur

₹1.1 L/yr - ₹3.6 L/yr

Assistant Engineer
691 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Senior Software Engineer
350 salaries
unlock blur

₹4.8 L/yr - ₹18.2 L/yr

Technical Lead
304 salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Embedded Software Engineer
301 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Explore more salaries
Compare VVDN Technologies with

Sasken

3.9
Compare

Happiest Minds Technologies

3.7
Compare

L&T Technology Services

3.4
Compare

LTIMindtree

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