Draw .Net framework architecture.
[3 marks]Write a short note on Namespaces.
[4 marks]Fill in the blanks for getting desired output: Desired O/P: 0 1 1 2 3 class Program { static void Main(string[] args) {` fibo( 0, 1, ____ ); } ______ void fibo(int n1, int n2, int cnt) { if (cnt == 0) { Console._____________; } else { Console.Write(" " + _______ ); fibo( _______, _________ , ______ ); } } }
[5 marks]Write a C# program to generate divide by zero exception and also handle this exception.
[3 marks]Explain any two validation controls of ASP.NET with example.
[4 marks]Design Windows Form application with one Button, two Textbox and three RadioButton. User can enter string in both the TextBox, RadioButton shows any three string operations. When button is clicked, based on selection of RadioButton, appropriate string operation is to be done on strings entered by user and answer should be prompted in MessageBox.
[7 marks]Design stand-alone Text editor with basic functionalities like File open, save and change font of selected text.
[7 marks]Briefly explain reflection API with an example.
[3 marks]Explain the concept of master page in ASP.NET with example.
[4 marks]Demonstrate the use of following controls: 1. Tooltip 2. MenuStrip 3. ColorDialog
[7 marks]Give the significance of CheckBox and GroupBox.
[3 marks]Demonstrate the use of ArrayList and SortedList in C#.1
[4 marks]What is Cookies and Session? How to create Cookies and Session? Explain with its syntax and write ASP.NET program to illustrate the concept of Cookies and Session.
[7 marks]Explain DLL Hell problem with solution.
[3 marks]Implement Change password functionality using C#.
[4 marks]Design ASP.NET application (Draw rough UI of webform with required controls. Write GridView Design code and C# code only) with following functionalities: 1. Admin can add Staff details (Sid, Name, Department). 2. Admin can Edit, Update, Delete Staff information (Name, Department) from GridView (Use CommandField). Department must be entered using DropDownList
[7 marks]What is View State? Explain with example.
[3 marks]Implement functionality for Login (EnrollmentNo, Password) using C#.
[4 marks]Design ASP.NET application (Draw rough UI of webform with required controls. Write GridView Design code and C# code only) with following functionalities: 1. Staff can add Book details (Bid, BName, BAuthor) 2. Staff can Delete Book information from GridView (Use RowCommand event).
[7 marks]Write a short note on WPF.
[3 marks]Demonstrate the use of Repeater control.
[4 marks]Create an ASP.NET web service to check that entered number is even or odd. Also write the code to consume it.
[7 marks]Write a short note on WCF.
[3 marks]Demonstrate the use of DataList control.
[4 marks]Create an ASP.NET web service to find factorial of given number. Also write the code to consume it.
[7 marks]