.NET and Java Web Technologies Quiz
Test your knowledge of web technologies including ASP.NET, .NET framework concepts, and ZK Java web framework
Questions
ZK is for presentation layer only ?
- True
- False
Please select all options that are correct for zk framework.
- open-source
- Ajax based
- written in php
- Event driven
- written in java
Which approach is used in zk framework ?
- client centric
- Server Centric
- Data Centric
- Process Centric
Who is the founder of zk ?
- Mark Zuckerberg
- Tom M. Yeh
- Orkut Buyukkokten
- Tom DeMarco
Please select all options that are correct about Event Processing in zk ?
- When an event is fired, it is associated with a desktop
- ZK separates events by their associated desktops
- Events for different desktops are not processed in parallel
- An Event cannot access components belonging to other desktops
What does CLR stand for ?
- Compiler Language Runtime
- Common Language Runtime
- Common Language Running Time
- Compiler Language Running Time
What is JIT ?
- Jam In Time
- CLR
- Just In Time
- .NET Language
What is the intermediate Language in .Net ?
- Java
- C#.Net
- ASP
- MSIL
How many levels of compilation happens in .NET ?
- 2
- 4
- 3
- 1
What is the smallest unit of deployment ?
- Namespace
- Assembly
- Class
- Interface
What is ASP ?
- Active Service Pages
- Artic Server Pages
- Active Server Pages
- Activated Server Pages
If I want to serialize instances of a class what should I use?
- XmlSerializer
- SoapFormatter
- BinaryFormatter
- Any one of the above
How do I use an alias for a namespace?
- using SqlClientAlias = System.Data.SqlClient;
- using System.Data.SqlClient SqlClientAlias;
- using System.Data.SqlClient @SqlClientAlias;
- We can't create alias for a namespace.
Constructors will not be inherited in C#?
- True
- False
How do I start another program from .NET?
- Process.Start
- Application.Start
- Process.Run
- Application.Run
How do I get the rightmost part of a string?
- str.Substring(str.Length);
- str.Substring(str.Length - 1);
- str.LastChar();
- str.RightChar();
Which of the following code will return the account on which ASP.NET is running?
- Account.Username
- User.Name
- Page.Username
- Environment.Username
How can we get Current Page URL in ASP.NET?
- Request.Url.FullURL;
- Request.PageUrl;
- Request.Url.AbsoluteUri;
- Request.Page.URL;