.NET and Java Web Technologies Quiz

Test your knowledge of web technologies including ASP.NET, .NET framework concepts, and ZK Java web framework

18 Questions Published

Questions

Question 1 True/False

ZK is for presentation layer only ?

  1. True
  2. False
Question 2 Multiple Choice (Multiple Answers)

Please select all options that are correct for zk framework.

  1. open-source
  2. Ajax based
  3. written in php
  4. Event driven
  5. written in java
Question 3 Multiple Choice (Single Answer)

Which approach is used in zk framework ?

  1. client centric
  2. Server Centric
  3. Data Centric
  4. Process Centric
Question 4 Multiple Choice (Single Answer)

Who is the founder of zk ?

  1. Mark Zuckerberg
  2. Tom M. Yeh
  3. Orkut Buyukkokten
  4. Tom DeMarco
Question 5 Multiple Choice (Multiple Answers)

Please select all options that are correct about Event Processing in zk ?

  1. When an event is fired, it is associated with a desktop
  2. ZK separates events by their associated desktops
  3. Events for different desktops are not processed in parallel
  4. An Event cannot access components belonging to other desktops
Question 6 Multiple Choice (Single Answer)

What does CLR stand for ?

  1. Compiler Language Runtime
  2. Common Language Runtime
  3. Common Language Running Time
  4. Compiler Language Running Time
Question 7 Multiple Choice (Single Answer)

What is JIT ?

  1. Jam In Time
  2. CLR
  3. Just In Time
  4. .NET Language
Question 8 Multiple Choice (Single Answer)

What is the intermediate Language in .Net ?

  1. Java
  2. C#.Net
  3. ASP
  4. MSIL
Question 9 Multiple Choice (Multiple Answers)

How many levels of compilation happens in .NET ?

  1. 2
  2. 4
  3. 3
  4. 1
Question 10 Multiple Choice (Single Answer)

What is the smallest unit of deployment ?

  1. Namespace
  2. Assembly
  3. Class
  4. Interface
Question 11 Multiple Choice (Single Answer)

What is ASP ?

  1. Active Service Pages
  2. Artic Server Pages
  3. Active Server Pages
  4. Activated Server Pages
Question 12 Multiple Choice (Single Answer)

If I want to serialize instances of a class what should I use?

  1. XmlSerializer
  2. SoapFormatter
  3. BinaryFormatter
  4. Any one of the above
Question 13 Multiple Choice (Single Answer)

How do I use an alias for a namespace?

  1. using SqlClientAlias = System.Data.SqlClient;
  2. using System.Data.SqlClient SqlClientAlias;
  3. using System.Data.SqlClient @SqlClientAlias;
  4. We can't create alias for a namespace.
Question 14 True/False

Constructors will not be inherited in C#?

  1. True
  2. False
Question 15 Multiple Choice (Single Answer)

How do I start another program from .NET?

  1. Process.Start
  2. Application.Start
  3. Process.Run
  4. Application.Run
Question 16 Multiple Choice (Single Answer)

How do I get the rightmost part of a string?

  1. str.Substring(str.Length);
  2. str.Substring(str.Length - 1);
  3. str.LastChar();
  4. str.RightChar();
Question 17 Multiple Choice (Single Answer)

Which of the following code will return the account on which ASP.NET is running?

  1. Account.Username
  2. User.Name
  3. Page.Username
  4. Environment.Username
Question 18 Multiple Choice (Single Answer)

How can we get Current Page URL in ASP.NET?

  1. Request.Url.FullURL;
  2. Request.PageUrl;
  3. Request.Url.AbsoluteUri;
  4. Request.Page.URL;