Which utility allows you to reference an assembly in an application?
Correct Answer
An assembly can be referenced by using the gacutilexe utility with the /r option The /r option requires a reference type, a reference ID, and a description
Correct Answer: AJAX uses four technologies, which are as follows: => JavaScript => XMLHttpRequest => Document Object Model (DOM) => Extensible HTML (XHTML) and Cascading Style Sheets (CSS)
Correct Answer: The Systemxmldll is the real physical file, which contains the XML implementation Some of the other namespaces that allow NET to use XML are as follows: => SystemXml => SystemXmlSchema => SystemXmlXPath => SystemXmlXsl
3. What are the different implementations of LINQ?
Correct Answer: The different implementations of LINQ are: => LINQ to SQL - Refers to a component ofNET Framework version 35 that provides a run-time infrastructure to manage relational data as objects => LINQ to DataSet - Refers to a component that makes it easier and faster to query over data cached in a DataSet object => LINQ to XML - Provides an in-memory XML programming interface => LINQ to Objects - Refers to the use of LINQ queries with any IEnumerable or IEnumerable(T) collection directly, without the use of an intermediate LINQ provider or API, such as LINQ to SQL or LINQ to XML
Correct Answer: The App_Code folder is automatically present in the project It stores the files, such as classes, typed data set, text files, and reports If this folder is not available in the application, you can add this folder One of the important features of the App_Code folder is that only one dll is created for the complete folder, irrespective of how many files it contains
5. What is the role of the DataSet object in ADO.NET?
Correct Answer: One of the major component of ADONET is the DataSet object, which always remains disconnected from the database and reduces the load on the database
6. How can different versions of private assemblies be used in the same application without a re-build?
Correct Answer: You can use different versions of private assemblies in the same application without a re-build by specifying the assembly version in the AssemblyInfocs or AssemblyInfovb file
7. How can you implement a condition in a workflow?
Correct Answer: You can implement a condition by using either of the following ways: => By creating a rule condition - Specifies that you can implement conditions either directly in code or by using a tool, called the Rule Condition Editor Rule conditions are stored in a separate Extensible Markup Language (XML) file When a rule condition occurs in a workflow, the expression in a condition is evaluated and a Boolean value is returned => By creating a code condition - Refers to defining a condition directly in code A code condition can be created by writing a method in the code The method contains code for the condition and returns a Boolean value
8. Which class is used to indicate Black Navigation Bar ?
Correct Answer: C# is a type-safe, managed and object oriented language, which is compiled by Net framework for generating intermediate language (IL) Below are some of the features supported in C# - * Constructors and Destructors * Properties * Passing Parameters * Arrays * Main * XML Documentation and * Indexers Below are the advantages of C# - * Easy to learn * Object oriented * Component oriented * Part of NET framework