Become a GOLD member of Deccansoft and get access to 40+ courses!!
NewBatches/Webinars
Packages
Gold Membership
Bestseller
Microsoft Azure Suite & Suite Plus
Power Platform Acadamy
New
Azure DevOps Expert & Expert Plus
MS.NET Foundation For Beginners
MS.NET Full Stack Developer
UI / Web Development
SQL Server & MSBI Tools
Software Testing
Courses
MS.NET Courses (Includes Live Project)
Complete C#, OOPs and Windows Programing
ASP.NET MVC Online Training
ASP.NET WebForms
ASP.NET Core
WCF incl. Web Services and Remoting
WPF incl. MVVM and Prism
LINQ and Entity Framework
Live Project Training for Developing Enterprise Application
Live Project using Ntier Arch (.NET5 + EF Core + Angular)
Microservices using .NET Core
Gold Membership
CareerStep IT Program
Client-side UI Technologies
Building Static Web Pages using HTML and CSS
JavaScript and HTML DOM
jQuery, AJAX and JSON
Building Interactive Web Pages using HTML5 and CSS3
BootStrap + Live Examples
AngularJS + Live Project
Angular + Typescript
ReactJS
KnockoutJS
Xamarin
SQL Server + MSBI
SQL Server 2017
Querying Data with Transact-SQL(70-761)
SQL Server Integration Service (SSIS)
SQL Server Reporting Service (SSRS)
SQL Service Analysis Service (SSAS)
Cloud Computing / Azure / AWS
AZ-900: Microsoft Azure Fundamentals
Azure Suite (AZ-104+AZ-204+AZ-305+ AZ-500)
AZ-104: Microsoft Azure Administrator
AZ-204: Developing Solutions for Microsoft Azure
AZ-305: Microsoft Azure Architect Technologies and Design
DP-203: Data Engineering on Microsoft Azure
Amazon Web Services (AWS)
DevOps Expert
AZ-400: Microsoft Azure DevOps
Docker by Sandeep Soni
Kubernetes by Sandeep Soni
Docker & Kubernetes by Rahul Rampurkar
IaC Using Terraform
Powershell
Microsoft Power Platform
Microsoft Power Platform
Data Analytics using PowerBI (DA-100)
Testing Tools
Manual Testing
Selenium Testing with Java(Live Training)
Others
Python Programming
C and Data Structure
Core Java
OOPs and C++
Advance Java
Complete Azure Training
Pricing
Videos
Testimonials
Azure Certification
Contact Us
Login
Login or Register
×
Sign In
Register
Forgot Password?
How did you find us
WhatsApp
YouTube
LinkedIn
Facebook
Telegram
Twitter
Google
Referred by Friend
Refresh
Input symbols
By clicking Register, you accept to the
terms and conditions
and that you have read our
privacy policy.
Recover Password
×
Submit
Enquiry Now
Where did you come to know about us
WhatsApp
YouTube
LinkedIn
Facebook
LinkedIn Ad
Email
Twitter
Google
Referred
Other
Refresh
Input symbols
ASP.NET Architecture
Interview Questions and Answer
1. In an ASP.NET page life cycle, when does a control retrieves its previous state from the ViewState?
Options:
a. Before Init event of Page is raised.
b. After Init and before Load event of Page is raised
c. After Load event of Page is raised
d. Just before PreRender event of page is raised.
Reveal Answer
2. When the web server receives the request for the file with the extension .aspx, it forwards it to ________ which is an ________ application executing within the web server process.
Options:
a. asp_asp.dll, ASP
b. aspnet_asp.dll,ASP
c. aspnet_asp.dll, ISAPI
d. aspnet_isapi.dll, ISAPI
Reveal Answer
3. Can a process have more than one app domain and each app domain is dependent of other app domains.
Options:
a. True
b. False
Reveal Answer
4. ISAPI application is responsible for launching _________ worker process
Options:
a. asp_wp.exe
b. asp_wp.dll
c. aspnet_isapi.dll
d. aspnet_wp.exe
e. aspnet_wp
Reveal Answer
5. In the worker process a new _______ is created for every web application.
Options:
a. process
b. Thread
c. Object
d. Class
e. AppDomain
Reveal Answer
6. For every request a new thread is created in the AppDomain.
Options:
a. True
b. False
Reveal Answer
7. The first event to be triggered in an aspx page is
Options:
a. Page_Load ()
b. Page_Init ()
c. Page_click ()
Reveal Answer
8. I have an ASP.NET application. I have a page loaded from server memory. At this instance which of the following methods gets fired
Options:
a. Unload ()
b. Load ()
c. PreRender ()
Reveal Answer
9. A _______________ is a logical collection of one or more thread with in a process.
Options:
a. Application Domain
b. Application Dom
c. App Domain
d. App Collection
Reveal Answer
10. If a thread of one App domain wants to access the thread of another app domain, it has to use ________________.
Options:
a. IPC
b. IPP
c. ICE
d. PIC
Reveal Answer
11. When the web server receives the request for file with the extension .aspx, it forwards it to_____________
Options:
a. aspnet_isapi.exe
b. aspnet_isapi.dll
c. webserver.exe
d. isapi.dll
Reveal Answer
12. If a user wants to create controls at runtime which event should be used to write code?
Options:
a. PreLoad
b. Load
c. Init
d. PreInit
Reveal Answer
13. What happens in the Init event of a page?
Options:
a. ViewState is loaded on the page.
b. Each child control of the page is initialized to its design time values.
c. HTML is rendered.
Reveal Answer
14. You need to allow users to choose their own themes. In which page event will you write the user-selected theme?
Options:
a. Page_Load
b. Page_Render
c. Page_PreInit
d. Page_PreRender
Reveal Answer
15. Arrange ASP.NET page life cycle during first request in proper sequence. a. Page_ViewStateComplete Event b. Page_Load Event c. Page_Init Event d. Page Object Created e. Page_Prerender Event f. Unload Event g. Page_Render Event
Options:
a. a, b, c, d, e, f, g
b. d, c, b, e, a, g, f
c. c, d, e, a, b, f, g
d. g, f, e, a, b, c, d
Reveal Answer
16. The controls are fully laoded using _________ Event.
Options:
a. Page_Init
b. Page_Render
c. Page_Load
d. Page_ViewStateComplete
Reveal Answer
17. For a given response/page there is _______ VIEWSTATE rendered to the browser.
Options:
a. only one
b. only two
c. only three
d. only four
Reveal Answer
18. Once the response of the page is rendered to the web server then all the objects created for controls and page are ready for garbage collection.
Options:
a. True
b. False
Reveal Answer
19. If we are not rendering the output of the same page/web form on a round trip, the Enable View State property of the controls on the page can be set to _________.
Options:
a. True
b. False
Reveal Answer
20. If AutoEventWireup is set to "True" the events of page class are mapped to the event handlers based on the ________ of the event handler method.
Options:
a. Value
b. Name and Value pair
c. Id
d. Name
Reveal Answer
21. In C# for event handlers of page class we can _________ the appropriate method of the parent class.
Options:
a. overload
b. override
c. hide
d. delete
Reveal Answer
22. A class added to the code file of a web form can be used in other web forms.
Options:
a. True
b. False
Reveal Answer
23. In ASP.NET by default AuotEventWireUp is set to ________
Options:
a. true
b. false
Reveal Answer
Packages
Gold Membership
Microsoft Azure Suite &Suite Plus
Azure DevOps Expert &Expert Plus
MS.NET Foundation For Beginners
MS.NET Full Stack Developer
UI / Web Development
SQL Server & MSBI Tools
Software Testing
Resources
Blog
Deccansoft
AzureA2Z
Wall of Fame
On-Job Tech Support
About
About BestDotNetTraining
About Trainer
Testimonials
FAQ
Other links
About Us
Contact Us
Leave us a feedback
Sitemap
Privacy Policy
Terms & Conditions
Proudly Powered by