19. Using XSLT, how would you extract the value of a specific attribute from an element in an XML document? The components necessary for the above mentioned operation are as …
May 2016
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
XML Interview Questions and Answers for Freshers and Experience Part-3
by Sby S13. The XML elements cannot be empty. Is it true? No, it is not true. 14. Describe the role that XSL can play while dynamically generating HTML pages from a …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
XML Interview Questions and Answers for Freshers and Experience Part-2
by Sby S7. Which namespaces in .NET are used for XML? The System.xml.dll is the real physical file, which contains the XML implementation. Some of the other namespaces that allow .NET to …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
XML Interview Questions and Answers for Freshers and Experience Part-1
by Sby S1. What is Extensible Markup Language (XML). XML is a simple and flexible markup language in the text format. Nowadays, it is widely used to exchange a large variety of …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Language Integrated Query (LINQ) Interview Questions and Answers for Freshers and Experience Part-4
by Sby S19. What are lambda expressions in LINQ? A lambda expression is a function without a name that calculates and returns a single value. All lambda expressions use the lambda operator …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Language Integrated Query (LINQ) Interview Questions and Answers for Freshers and Experience Part-3
by Sby S13. Which interface implements the standard query operators in LINQ? The standard query operators implement the IEnumerable<T> or the IQueryable<T> interface in C# and theIEnumerable(Of T) or the IQueryable(Of T) …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Language Integrated Query (LINQ) Interview Questions and Answers for Freshers and Experience Part-2
by Sby S7. What is PLINQ? PLINQ stands for Parallel Language Integrated Query. It is the parallel implementation of LINQ, in which a query can be executed by using multiple processors. PLINQ …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Language Integrated Query (LINQ) Interview Questions and Answers for Freshers and Experience Part-1
by Sby S1. What is Language Integrated Query (LINQ)? LINQ is a programming model that is the composition of general-purpose standard query operators that allow you to work with data, regardless of …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Windows Controls Interview Questions and Answers for Freshers and Experience Part-6
by Sby S31. How can you attach a horizontal scroll bar with the ListBox control? You need to set the the MultiColumn property of the ListBox control to True to attach a …
- .NETInterview Questions and AnswersTechnical Interview Questions and Answers
.Net Windows Controls Interview Questions and Answers for Freshers and Experience Part-5
by Sby S25. How do you retrieve the customized properties of a .NET application from the XML .config file? Initialize an instance of the AppSettingsReader class. Call the GetValue() method of theAppSettingsReader …