0

web technology Online Quiz - 161

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

how do u read the passed arguments to a windows bat file inside that bat file?

  1. using $ARGS[0] , $ARGS[1] etc

  2. using $1 , $2 etc

  3. using $[0] , $[1] etc

  4. using %1, %2 etc


Correct Option: D

The following SQL statement:DELETE FROM tab1 WHERE CURRENT OF csr1 WITH RR Is used to perform which type of delete operation?

  1. Positioned

  2. Searched

  3. Embedded

  4. Dynamic


Correct Option: A

AI Explanation

To answer this question, we need to understand the different types of delete operations in SQL.

A positioned delete operation is performed using a cursor, which allows you to navigate through the result set of a query and perform operations on the current row.

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

Option A) Positioned - This option is correct because the SQL statement "DELETE FROM tab1 WHERE CURRENT OF csr1 WITH RR" is a positioned delete operation. The "WHERE CURRENT OF csr1" clause indicates that the delete operation is performed on the current row of the cursor named "csr1". This type of delete operation is useful when you want to delete rows based on the current position of a cursor.

Option B) Searched - This option is incorrect because a searched delete operation is performed based on specified conditions in the WHERE clause, rather than the current position of a cursor. In a searched delete operation, you specify the conditions that must be met for a row to be deleted.

Option C) Embedded - This option is incorrect because an embedded delete operation refers to a delete statement that is embedded within a program written in a programming language (e.g., Java, C++, etc.). The given SQL statement is not embedded within any program, so it is not an embedded delete operation.

Option D) Dynamic - This option is incorrect because a dynamic delete operation refers to a delete statement that is constructed dynamically at runtime, usually based on user input or other external factors. The given SQL statement is a static statement that does not change at runtime, so it is not a dynamic delete operation.

The correct answer is A) Positioned. This option is correct because the given SQL statement performs a delete operation based on the current position of a cursor.

XML is standardised by the

  1. WSDL

  2. XML schema organisation

  3. W3C

  4. XML consortium


Correct Option: C

By defaut assemblies are -------- in .NET

  1. shared

  2. private

  3. public

  4. protected


Correct Option: B

Assembly manifest contains 1 version number 2 assembly game 3 security idendity

  1.      1 AND 2 only

  2.   2 AND 3 only

  3.      3 AND 1 only

  4.       1 , 2 and 3


Correct Option: D

The ------- name space contains classes for working with EVENT LOG

  1. System.IO

  2. System.Data

  3. System.Diagnostics

  4. System.Directory


Correct Option: C

The format of assembly version is

  1. ...

  2. ...

  3. ...

  4. ...


Correct Option: A

.NET supports the following languages 4 Managed C++ 3 VB.NET 2 Jscript 1 C#

  1. 1,2,3 and 4

  2. 1,3,and 4 only

  3. 1 and 2 only

  4. 1 only


Correct Option: A

Identify the wrong statement

  1. Visual studio is a common IDE for all microsoft .NET languages

  2. share point portal server supports business to business integration

  3. CLI is an international standard [ ECMA ]

  4. The CLR is a foundation of .NET framework


Correct Option: B

-------- is an application that exposes a programmatic interface through standard access methods

  1. windows services

  2. windows forms

  3. web services

  4. web forms


Correct Option: C

CLS stands for

  1. common language system

  2. computer language system

  3. common language specification

  4. computer language specification


Correct Option: C

CTS stands for

  1. common type system

  2. common type specification

  3. command type system

  4. command type specification


Correct Option: A

AI Explanation

To answer this question, you need to understand the concept of CTS (Common Type System).

Option A) Common Type System - This option is correct. CTS stands for Common Type System, which is a set of rules defined by the .NET framework that all languages must adhere to. It ensures interoperability between different languages by defining a common set of data types and their behavior.

Option B) Common Type Specification - This option is incorrect. While it sounds similar to CTS, the correct term is Common Type System, not Common Type Specification.

Option C) Command Type System - This option is incorrect. CTS does not stand for Command Type System.

Option D) Command Type Specification - This option is incorrect. CTS does not stand for Command Type Specification.

The correct answer is A) Common Type System. This option is correct because CTS stands for Common Type System, which is a set of rules defined by the .NET framework for ensuring interoperability between different languages.

The ------- loads and executes CLI-compatible programs

  1. CLS

  2. VES

  3. CTS

  4. CLR


Correct Option: B

------ is not a part of .NET assembly structure

  1. meta data

  2. IL

  3. manifest

  4. none of the above


Correct Option: D

To deploy an assembly into GAC

  1. -sn.exegacutil.exe

  2. -sm. exegacutil.exe

  3. -sm. exegacutil.dll

  4. -sm. exegacutil.dpy


Correct Option: A

UDDI stands for

  1. universal data description and integration

  2. universal data discovery and identification

  3. universal description discovery and identification

  4. universal description discovery and integration


Correct Option: D

Assistive Technology is

  1. Technology that assists developers in creating accessible products.

  2. Technology used in software that provide student instruction, tests and learning feedback with no or only periodic involvement by an instructor.

  3. Technology that assists all users in understanding the functioning of software.

  4. Any software or hardware that is commonly used to increase, maintain, or improve functional capabilities of individuals with disabilities.


Correct Option: D

The Web Content Accessibility Guidelines for making web content accessible is provided by:

  1. There are currently no such guidelines available.

  2. Microsoft

  3. W3C’s Web Accessibility Initiative group.

  4. United Nations


Correct Option: C

Accessibility is

  1. The degree to which any product is accessible to maximum users possible.

  2. The degree to which a product is accessible to users without disabilities.

  3. The degree to which a product is accessible to only indivisuals with disabilities.

  4. The level of authorization provided to a user to use a product.


Correct Option: A

The 'Web Content Accessibility Guidelines 2.0' for making web content accessible is provided by:

  1. There are currently no such guidelines available.

  2. Microsoft

  3. W3C’s Web Accessibility Initiative group.

  4. United Nations


Correct Option: C
- Hide questions