Buy Questpond's video subscriptions on
huge discount
.
Online: 1878
Home
Articles
Interviews
Forums
For Beginners
Popular Questions
ITIL Career Advice
PMP Career Advice
Career Advices
Codes
Videos
ASP.NET
ASP.NET MVC
Android Intel XDK
Sql Server
AngularJS
Bootstrap
Backbone.JS
MongoDB
LESS (CSS)
jQuery
WPF
WWF
SSIS
LightSwitch
Tutorials
News
ASP.NET MVC
|
Be Interview Ready
|
Top Performers
|
DNF MVP
|
Top Posts
|
Winners
|
Subscribe
|
Catalogs
Welcome Guest !
Register
Login
Home
>
Interviews
> ASP.NET
ASP.NET Interview Questions and Answers (1544) - Page 51
Latest and authentic Interview questions. You can also
post an interview question
and
win monthly prizes
as well as gain community
credit points
.
1544 records found.
Post
|
Interview Experiences
|
Interview FAQs
|
Online Interviews
|
Exclusive Questions
Get 650+ Questpond's Interview videos on discount
Loading ...
You are designing an ASP.NET web application that allows members of the Administrators role to edit content by using a HyperLink control on each page named EditHyper Link. You do not want nonadministrators to discover the location of the administration pages. Which approach should you recommend ?
NOTE: This is objective type question, Please click question title for correct answer.
You are designing an ASP.NET web application that provisions virtual machines for a testing environment. Users can provision from 1 to 10 virtual machines at a time, and each virtual machine provision might take up to 60 seconds. For security reasons, the Server hosting the virtual machines allows provisioning requests only from the web server. You need to design the application to keep users notified of the provisioning Progress. Which approach should you recommend ?
NOTE: This is objective type question, Please click question title for correct answer.
You are creating a new website for an enterprise organization. The enterprise has a quality assurance team that requires developers to use TDD(Test driven development). Additionally, the application architecture must partition according to the principle of SoC. Which template should you use
NOTE: This is objective type question, Please click question title for correct answer.
State a simple difference between a Skin and a Theme ?
Skin :-
Skin is a file that defines the visual appearance of a particular control. we can create a Skin file for the GridView control that defines the look of the GridView for different SkinIDs.
Theme :-
Theme is a collection of Skins.
Thanks and Regards
Akiii
What is the main role of Entity Client Data Provider ?
The main role of the Entity Client Data Provider is to convert Entity SQL queries into SQL query which is understood by underlying database.
It communicates with ADO.Net data provider which in turn sends or retrieves data from the database.
Thanks and Regards
Akiii
What are the 3 things that are contained in EDM (Entity Data Model) ?
Conceptual Model:
Conceptual model is your model classes and their relationships. All the tables in the database are mapped into entities here.
Storage Model:
Storage model is your database design model which includes tables, views, stored procedures and their relationships and keys.
Mapping:
Mapping consist information about how your conceptual model is mapped to storage model like nvarchar type is mapped into string type in the conceptual model.
Thanks and Regards
Akiii
Briefly describe the ObjectContext class ?
ObjectContext
class represents EntityContainer which you can see from XML view of Model1.edmx or from EDM property window. You can call this as context class.
This is the primary class for interacting with entity objects and database. An instance/object of the ObjectContext class encapsulates the connection to the database, metadata that describes the model, and an ObjectStateManager object that tracks objects during create, update, and delete operations.
With the help of this class you can access all the tables and columns in the underlying database.
Thanks and Regards
Akiii
What is a Scalar and Navigation property in Entity framework ?
Scalar property
are properties whose actual values are contained in the entity. A property of an entity that maps to a single field in the storage model.
E.g. Student entity has scalar properties e.g. StudentId, StudentName. These correspond with the Student table columns.
Navigation property
is used to navigate through relations in data. It allows you to navigate from one entity to a "connected" entity.
E.g. if a user is connected to a role, you can use the "Role" navigation to read and inspect the role associated with that user. Basically it is equivalent to a foreign key relationship in a database.
Thanks and Regards
Akiii
What do you mean by Code First Approach in Entity Framework ?
In Code First approach you write your POCO classes first and then create database from these POCO classes.
Developers who follow the path of Domain-Driven Design (DDD) principles prefer to begin by coding their classes first and then generating the database required to persist their data in it.
In Code First approach, you avoid working with visual model designer (EDMX) completely.
Thanks and Regards
Akiii
What is mean by Model First development in Entity Framework ?
In Model First approach, you first create Entities, relationships, and inheritance hierarchies directly on the design surface of EDMX.
You have to select 'Empty model' when you add ADO.NET Entity Data Model in the project.
By this, we generate a DDL and we execute this DDL against the database to create the tables and associations/relations from the EDMX file.
Thanks and Regards
Akiii
You need to design a physical architecture to meet these requirements: ¦ The website will remain online if the web server is restarted. ¦ The database server will not be affected by a denial-of-service attack against the web server. ¦ You must minimize hardware costs. How many servers will you need ?
NOTE: This is objective type question, Please click question title for correct answer.
You need to design a physical architecture to meet these requirements: • The website must be able to serve six requests per minute. • The database server will store 2 TB of data. • You must minimize hardware costs. How many servers will you need?
NOTE: This is objective type question, Please click question title for correct answer.
You are designing a three-tier web application. You need to choose the method of communication between the web and application layers to meet these requirements: ¦ The application server will use the .NET Framework 4.0. ¦ The application server must be physically isolated. ¦ The application server will be located on the same high-speed LAN as the web server and database servers. ¦ The web server will be located behind a firewall. ¦ The communications will be two-way. ¦ The communications must be as efficient as possible Which WCF binding type will you use?
NOTE: This is objective type question, Please click question title for correct answer.
You are designing an ASP.NET web application that allows end users to chat live with customer support when they click a Button control. At times, it might take several minutes for customer support to respond to a user. You need to design the applicationto be responsive to users, even when customer support cannot immediately reply. You need to support a wide variety of browsers, including browsers built into mobile devices. Which approach should you recommend?
NOTE: This is objective type question, Please click question title for correct answer.
You are designing the client-side component of web application with the following requirements: • Retrieve data from a web service, and display it in a <div> element on the webpage. • Work with all common browsers. • Do not require client-side installation. Which technologies should you recommend ?
NOTE: This is objective type question, Please click question title for correct answer.
Page_Init event occurs only when the first time the page is started. True or False ?
NOTE: This is objective type question, Please click question title for correct answer.
Controls and View State are not fully loaded in the Page_Load event. True or False ?
NOTE: This is objective type question, Please click question title for correct answer.
You are designing a 3D game that will run in client browsers. The platform you choose must be able to work in all common browsers and must support GPU acceleration. Which technology should you choose?
NOTE: This is objective type question, Please click question title for correct answer.
You are creating a new web application. You must meet these requirements: ¦ Use the Login control to allow users to authenticate. ¦ Allow a web designer to configure the appearance of all controls using classes in CSS style sheets. How should you configure the Login control ?
NOTE: This is objective type question, Please click question title for correct answer.
You are planning to write client-side JavaScript that must retrieve and display a string Value returned by a server-side method. You want the messages sent between the clients and server to be as small as possible. Which approach should you choose ?
NOTE: This is objective type question, Please click question title for correct answer.
1
...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
...
78
More ASP.NET Exclusive Interview Questions & Answers here
Found this useful, bookmark this page to the blog or social networking websites.
Bookmark It
Interview Questions and Answers Categories
.NET Certifications
.NET Core
.NET Framework
ADO.NET
AI ML
Android
Angular
AngularJS 1x
Aptitute Test
ASP.NET
ASP.NET AJAX
ASP.NET Core
ASP.NET MVC
ASP.NET Web API
Aurelia
Azure
Best Practices
BizTalk Server
Bootstrap
C#
Cloud
CMS
CSS 3
Data Structures & Algorithms
Design Pattern & Practices
DotNetFunda.Com
Entity Framework
Error and Solution
F#
Function Points (FPA)
HR
HTML 5
IIS
Interview Questions
JavaScript
jQuery
Kinect
LightSwitch
LINQ
Management
Mobile Development
MSBI (SSIS, SSRS, SSAS)
Mule
Networking
News and Community
Node.js
NoSql
OOPS
Oracle
Others
PostgreSQL
PowerShell
Product Reviews
Project Management
Python
QA (Testing)
R Language
Regular Expressions
SEO
SharePoint
SignalR
Silverlight
Sql Server
TypeScript
UML
VB.NET
Visual Studio
WCF
Web Analytics
Web Services, Remoting
Windows 8
Windows Forms
Windows Metro
Windows Phone
WPF
WWF
XML