0

web technology Online Quiz - 207

Description: web technology Online Quiz - 207
Number of Questions: 20
Created by:
Tags: web technology
Attempted 0/20 Correct 0 Score 0

"Active Sessions" is the parameter in the FTP site Tab that I use to determine how many users are connected to my FTP service?

  1. True

  2. False


Correct Option: B

"Active Sessions" is the parameter in the FTP site Tab that I use to determine how many users are connected to my FTP service?

  1. True

  2. False


Correct Option: B

Does ASP debugging work in IIS 6.0 worker process isolation mode?

  1. True

  2. False


Correct Option: A

"ability to automatically recycle worker processes based on various criteria"-IIS Feature What are these Criterias?

  1. recycle after a fixed time

  2. recycle after the set no. of requests processed

  3. recycle after set % CPU utilized

  4. recycle after a certain amnt of time has elapsed


Correct Option: A,B,D

Which of this is not a proper authentication process for IIS

  1. Basic access authentication

  2. Digest access authentication

  3. Integrated Windows Authentication

  4. Anonymous Access Authentication


Correct Option: D

IIS 7.5--the latest!!! Comes installed with which version of Windows?

  1. Windows Vista Corporate Edition

  2. Windows Server 2008 R1

  3. Windows Server 2008 R2

  4. Windows Server 2003 Sp3


Correct Option: C

How many classes can a single .NET DLL contain?

  1. One

  2. Two

  3. None

  4. Mamy


Correct Option: D

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) One - This option is incorrect because a single .NET DLL (Dynamic Link Library) can contain multiple classes. A DLL can serve as a container for multiple classes and other types.

Option B) Two - This option is incorrect because a single .NET DLL can contain more than just two classes. It can contain any number of classes, depending on the complexity and design of the software.

Option C) None - This option is incorrect because a .NET DLL must contain at least one class. A class is the fundamental building block of object-oriented programming in .NET, and a DLL must have at least one class definition.

Option D) Many - This option is correct because a single .NET DLL can contain multiple classes. There is no restriction on the number of classes that can be included in a DLL.

The correct answer is D) Many. This option is correct because a single .NET DLL can contain any number of classes.

Which of the following denote ways to manage state in an ASP.Net Application?

  1. Session objects

  2. Application objects

  3. ViewState

  4. All the Above


Correct Option: D

Which of the following transfer execution directly to another page?

  1. Server.Transfer

  2. Response.Redirect

  3. Both A) and B)

  4. None of the Above


Correct Option: C

AI Explanation

To answer this question, you need to understand the concepts of Server.Transfer and Response.Redirect.

Option A) Server.Transfer - This option is correct because Server.Transfer is a method in ASP.NET that transfers the execution directly to another page on the server. It preserves the server resources and improves performance by avoiding the round-trip to the client.

Option B) Response.Redirect - This option is correct because Response.Redirect is a method in ASP.NET that redirects the user to a different page or URL. It sends a response to the client with a new URL, and the client's browser makes a new request to that URL. This results in a round-trip to the client.

Option C) Both A) and B) - This option is correct because both Server.Transfer and Response.Redirect transfer the execution directly to another page, but they work in different ways.

Option D) None of the Above - This option is incorrect because both Server.Transfer and Response.Redirect transfer the execution directly to another page.

The correct answer is C) Both A) and B). This option is correct because both Server.Transfer and Response.Redirect transfer the execution directly to another page.

Which of the following is FALSE?

  1. ASP.NET applications run without a Web Server

  2. ASP+ and ASP.NET refer to the same thing

  3. ASP.NET is a major upgrade over ASP

  4. None of the Above


Correct Option: B

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A: ASP.NET applications run without a Web Server - This option is incorrect. ASP.NET applications cannot run without a web server. ASP.NET is a web development framework developed by Microsoft, and it requires a web server to host and run the applications.

Option B: ASP+ and ASP.NET refer to the same thing - This option is marked as the correct answer. It is incorrect. ASP+ and ASP.NET are not the same thing. ASP+ was a codename used by Microsoft during the early development stages of ASP.NET, but it was later renamed to ASP.NET. ASP.NET is the official name for the web development framework.

Option C: ASP.NET is a major upgrade over ASP - This option is correct. ASP.NET is indeed a major upgrade over ASP (Active Server Pages). ASP.NET provides a more robust and scalable framework for web development compared to ASP. It introduces new features and enhancements, such as improved performance, better security, and support for object-oriented programming.

Option D: None of the above - This option is incorrect. The correct answer is option B, as explained above.

Therefore, the correct answer is option B. ASP+ and ASP.NET do not refer to the same thing.

Which of the following denote the property in every validation control?

  1. ControlToValidate property

  2. Text property

  3. Both A) and B)

  4. None of the Above


Correct Option: C

Find the term: The .NET framework which provides automatic memory management using a technique called

  1. Serialization

  2. Garbage Collection

  3. Assemblies

  4. Overriding


Correct Option: B

In ASP.NET the sessions can be dumped by using

  1. Session.Dump

  2. Session.Abandon

  3. Session.Exit

  4. None of the Above


Correct Option: B

AI Explanation

To answer this question, you need to understand how sessions work in ASP.NET.

In ASP.NET, sessions allow you to store and retrieve user-specific information across multiple requests. Session state is maintained on the server, and a session ID is used to associate the session data with a specific user.

Now let's go through each option to understand why it is correct or incorrect:

Option A) Session.Dump - This option is incorrect. The Session class in ASP.NET does not have a Dump method. Therefore, this option is not a valid way to dump sessions.

Option B) Session.Abandon - This option is correct. The Session.Abandon method is used to abandon or end a session. When you call Session.Abandon, it destroys the session and removes all session data. This effectively "dumps" the session.

Option C) Session.Exit - This option is incorrect. The Session class in ASP.NET does not have an Exit method. Therefore, this option is not a valid way to dump sessions.

Option D) None of the Above - This option is incorrect. As explained above, the correct option is B) Session.Abandon.

Therefore, the correct answer is B) Session.Abandon. This option is correct because calling Session.Abandon will effectively dump the session by destroying it and removing all session data.

What is the base class from which all Web forms inherit?

  1. Master Page

  2. Page Class

  3. Session Class

  4. None of the Above


Correct Option: B

The type of code found in Code-Behind class is

  1. Server-side code

  2. Client-side code

  3. Both A) and B)

  4. None of the above


Correct Option: A

The .NET Framework provides a runtime environment called

  1. RMT

  2. CLR

  3. RCT

  4. RC


Correct Option: B
Explanation:

To answer this question, the user needs to know what the .NET Framework is and what it provides. The .NET Framework is a software development framework developed by Microsoft. It provides a runtime environment called the Common Language Runtime (CLR), which manages the execution of .NET applications and provides services such as memory management, security, and exception handling.

Therefore, the correct answer is:

The Answer is: B. CLR

In .NET the operation of reading metadata and using its contents is known as

  1. Reflection

  2. Enumeration

  3. Binding

  4. Serialization


Correct Option: A

AI Explanation

To answer this question, we need to understand the concept of reading metadata and using its contents in .NET.

Option A) Reflection - This option is correct. Reflection in .NET refers to the process of examining and manipulating metadata, such as types, properties, and methods, at runtime. It allows you to dynamically inspect and interact with objects and their metadata. Reflection is often used for tasks like invoking methods, accessing properties, and creating instances dynamically.

Option B) Enumeration - This option is incorrect. Enumeration is a different concept in .NET that refers to the process of iterating over a collection of items.

Option C) Binding - This option is incorrect. Binding in .NET refers to the process of connecting data to a user interface element or a property of an object.

Option D) Serialization - This option is incorrect. Serialization in .NET refers to the process of converting an object into a format that can be stored or transmitted, typically as binary or XML data.

The correct answer is A) Reflection. This option is correct because reflection is the operation of reading metadata and using its contents in .NET.

WSDL stands for

  1. Web Server Description Language

  2. Web Server Descriptor Language

  3. Web Services Description Language

  4. Web Services Descriptor Language


Correct Option: C

Which method do you invoke on the DataAdapter control to load your generated dataset with data?)

  1. Load ( )

  2. Fill( )

  3. DataList

  4. DataBind


Correct Option: B

AI Explanation

To answer this question, you need to understand the purpose of the DataAdapter control and how it is used to load data into a dataset.

The correct answer is:

B) Fill() - This method is used to populate a dataset with data from a data source. The Fill() method is invoked on the DataAdapter control to fetch data from the database and load it into the dataset. It takes the dataset as a parameter and populates it with the retrieved data.

Option A) Load() - This method is not a valid method for loading data into a dataset using the DataAdapter control. It is not a recognized method in the context of the DataAdapter control.

Option C) DataList - DataList is not a method on the DataAdapter control. It is a type of control used for displaying data in a list format in ASP.NET.

Option D) DataBind - DataBind is not a method on the DataAdapter control. It is a method used to bind data to controls in ASP.NET, but it is not specifically used for loading data into a dataset with the DataAdapter control.

Therefore, the correct answer is B) Fill(). This method is used to load a generated dataset with data from a data source.

Common type system is built into which of the following:

  1. CLR

  2. RCT

  3. RCW

  4. GAC


Correct Option: A
- Hide questions