Upload Button Icon Add office photos

Filter interviews by

Driven IT Solutions DOT NET Developer Interview Questions, Process, and Tips

Updated 26 Nov 2024

Top Driven IT Solutions DOT NET Developer Interview Questions and Answers

View all 7 questions

Driven IT Solutions DOT NET Developer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. What is ViewState?
  • Ans. 

    ViewState is a client-side state management technique used in ASP.NET to store page-specific data.

    • ViewState is used to persist data between postbacks on a web page.

    • It stores data in a hidden field on the page which is sent to the client and back to the server.

    • ViewState is specific to a single page and is not shared between pages.

    • It can be used to store simple data types like strings or complex objects.

    • Example: ViewStat

  • Answered by AI
  • Q2. What is Cookies?
  • Ans. 

    Cookies are small pieces of data stored on the client's computer by the web server to track user activity and preferences.

    • Cookies are used to store user preferences, login information, shopping cart items, etc.

    • They can be set by the server using the Set-Cookie header in HTTP response.

    • Cookies can be accessed and modified by the client-side scripts like JavaScript.

    • They have an expiration date and can be either session co...

  • Answered by AI
  • Q3. What are Cache?
  • Ans. 

    Cache is a hardware or software component that stores data so that future requests for that data can be served faster.

    • Cache helps in improving the performance of applications by reducing the time taken to fetch data from the main memory or disk.

    • Examples of cache include browser cache, CPU cache, and database cache.

    • Cache can be implemented at different levels such as client-side cache, server-side cache, and distributed

  • Answered by AI
  • Q4. What is Command Class?
  • Ans. 

    Command Class is a class in .NET that represents a command to be executed.

    • Command Class is used to encapsulate a command to be executed, along with any parameters or options.

    • It helps in separating the command logic from the rest of the application.

    • Examples include SqlCommand in ADO.NET for executing SQL commands and ProcessStartInfo in System.Diagnostics for starting external processes.

  • Answered by AI
  • Q5. What are Constraints?
  • Ans. 

    Constraints are rules defined on a column to enforce data integrity and consistency in a database.

    • Constraints ensure that data in a database meets certain criteria.

    • Common types of constraints include NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, and CHECK constraints.

    • For example, a NOT NULL constraint ensures that a column cannot have a NULL value, while a UNIQUE constraint ensures that all values in a column are unique.

  • Answered by AI
  • Q6. What is Subquery?
  • Ans. 

    A subquery is a query nested within another query, used to return data that will be used in the main query.

    • Subqueries can be used in SELECT, INSERT, UPDATE, and DELETE statements.

    • They can be used to retrieve data from one table based on values from another table.

    • Subqueries can be correlated or non-correlated, depending on whether they reference columns from the outer query.

    • Example: SELECT * FROM table1 WHERE column1 =

  • Answered by AI
  • Q7. What is PostBack?
  • Ans. 

    PostBack is a mechanism in ASP.NET where the page is posted back to the server for processing.

    • PostBack is triggered when a user interacts with a control on the page, such as clicking a button.

    • The entire page is sent back to the server for processing, including the viewstate.

    • PostBack can cause the page to reload, resulting in a full round trip to the server.

  • Answered by AI
Round 2 - Coding Test 

1. A Function to wrtitten String is Palindrome or not?

2. Look at the series what number should come next? 7,10,8,11,9,12...

3. A man wants to bring a lion, a goat and grass across a river. The boat is tiny and can only cross one person at a time. If he leaves Lion and goat together, the lion will eat the goat. If the keeps Goat and grass together, the goat will eat the grass. How can he bring all three across the river?

4.You have 100 doors in a row that are initially closed. You make 100 passes through the doors starting with the first door everytime. The first time you visit the door and toggle the door( i.e if the door is closed, then it opens and if its open then it closed). The second time you only visit the second door(i.e 2nd,4th,6th etc.). The third time you only visit the 3rd door.(i.e 3rd,6th,9th). This goes on till 100. What state are the below doors in after the last pass? Which are open which are closed?

Door 16
Door 27
Door 44
Door 64
Door 75
Door 98

Round 3 - Coding Test 

Create a form with Dropdown

Interview Preparation Tips

Topics to prepare for Driven IT Solutions DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • MS SQL
Interview preparation tips for other job seekers - Prepare well on Coding Test. Asking questions like Form with DropDown.

Skills evaluated in this interview

DOT NET Developer Interview Questions & Answers

user image abasaheb lokhande

posted on 26 Nov 2024

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

Given the task for the crud application

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
Q3. How many ways are there to send data to controller from View?
asked in Nagarro
Q4. Can Two Primary keys can be made possible in Sql Table ?
asked in Infosys
Q5. What kind of database you used in projects

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Asks about Dotnet framework components,Razor,Data Annotations,View Model,ADO.NET,File Operations,Joins
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Skill related questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is Manage and unmanaged code
  • Ans. 

    Managed code is code that is executed by the Common Language Runtime (CLR) while unmanaged code is code that is executed outside of the CLR.

    • Managed code is written in high-level languages like C# or VB.NET and is compiled to Intermediate Language (IL) which is then executed by the CLR.

    • Unmanaged code is written in languages like C or C++ and directly compiled to machine code which is executed by the operating system.

    • Man...

  • Answered by AI
  • Q2. Boxing vs unboxing
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is implicit, unboxing is explicit

    • Boxing creates a new object on the heap, unboxing retrieves the value from the object

    • Boxing is slower than unboxing

    • Example: int num = 10; object obj = num; // boxing

    • Example: int num = (int)obj; // unboxing

  • Answered by AI
  • Q3. What is Trigger?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when an event occurs in the database.

    • Triggers are used to maintain the integrity of the database by enforcing business rules or cascading changes.

    • They can be set to execute before or after an INSERT, UPDATE, or DELETE operation.

    • For example, a trigger can be used to update a related table when a record is inserted into another table.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is Cursor, index, trigger. Write syntax
  • Ans. 

    Cursor, index, and trigger are database concepts used in SQL. Cursors are used to retrieve data row by row, indexes are used to improve query performance, and triggers are used to automatically perform actions when certain events occur.

    • Cursor: Used to retrieve data row by row. Syntax - DECLARE cursor_name CURSOR FOR SELECT column1, column2 FROM table_name

    • Index: Used to improve query performance by creating a data struc...

  • Answered by AI
  • Q2. What is abstract class, method overriding, dictionary,dispose. Write instance or syntax
  • Ans. 

    Abstract class is a class that cannot be instantiated, method overriding is when a subclass provides a specific implementation of a method in its superclass, dictionary is a collection of key-value pairs, dispose is a method used to release unmanaged resources.

    • Abstract class: Cannot be instantiated, can have abstract methods. Example: abstract class Shape { public abstract void Draw(); }

    • Method overriding: Subclass prov...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was a telephonic round and interview ask just basics of c#, asp.net and SQL server.
Second round is face to face and it is deep in technical. You are able to write syntax of every single thing in SQL like user defined function, index, cursor.

Skills evaluated in this interview

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

I applied via campus placement at CV Raman College of Engineering, Bhuvaneshwar and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It consisted of pseudocodes and DSA related questions

Round 2 - Coding Test 

2 or 4 questions were asked. And we had to write optimised approach and password all test cases

Round 3 - Technical 

(3 Questions)

  • Q1. Factorial of a given number ,
  • Ans. 

    Factorial of a number is the product of all positive integers less than or equal to that number.

    • To calculate factorial of a number, multiply all positive integers less than or equal to that number.

    • Factorial of 5 (5!) = 5 * 4 * 3 * 2 * 1 = 120

    • Factorial of 0 is defined as 1, so 0! = 1

  • Answered by AI
  • Q2. Fibonacci series
  • Q3. And other DSA related questions and details of project
Round 4 - HR 

(1 Question)

  • Q1. HR related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to focus on optimised approach

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 were 2 interview rounds.

Round 1 - Aptitude Test 

25 minutes test with 10 que for apti and 10 que is for technical in apti they were having mcq que for train speed and probability and in technical test they were asking all about dot net like what is interface how do we run program and what is private public all the que are in mcq type

Round 2 - Technical 

(3 Questions)

  • Q1. All about dot net
  • Q2. Must prepared for all dot net que
  • Q3. Focus on what mentioned in JD
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. 1)Asked about past company projects and the technical issues faced during that time. 2) Difference between varchar and nvarchar 3) Abstraction real time example 4) About polymorphism and its types 5)Solid ...
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 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. Difference between code first and database first.. Technical interview is very easy But no offer even after all rounds clearing
Round 2 - One-on-one 

(2 Questions)

  • Q1. Managerial round
  • Q2. General Manager questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. I said I know python very well and they Asked some questions questions related to python development environment and introduction to dot net programming.
  • Q2. It consists of 12 coding questions, we have to solve atleast 5-6 problems so that we can ne selected.
Round 2 - HR 

(2 Questions)

  • Q1. Went on a salary discussion round.
  • Q2. He asked me to learn new technologies.

Interview Preparation Tips

Topics to prepare for KML Sensors DOT NET Developer interview:
  • Python
  • dot net
  • SQL
  • Git and GitHub

Driven IT Solutions Interview FAQs

How many rounds are there in Driven IT Solutions DOT NET Developer interview?
Driven IT Solutions interview process usually has 2 rounds. The most common rounds in the Driven IT Solutions interview process are Coding Test, Technical and Assignment.
What are the top questions asked in Driven IT Solutions DOT NET Developer interview?

Some of the top questions asked at the Driven IT Solutions DOT NET Developer interview -

  1. What is Command Cla...read more
  2. What are Constrain...read more
  3. What is ViewSta...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Driven IT Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Driven IT Solutions DOT NET Developer Salary
based on 7 salaries
₹2 L/yr - ₹3.3 L/yr
48% less than the average DOT NET Developer Salary in India
View more details

Driven IT Solutions DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
DOT NET Developer
7 salaries
unlock blur

₹2 L/yr - ₹3.3 L/yr

PHP Developer
6 salaries
unlock blur

₹3.6 L/yr - ₹6 L/yr

Software Developer
4 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

PHP Web Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹4.3 L/yr

Team Lead
4 salaries
unlock blur

₹5 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Driven IT Solutions with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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