Java Servlet Practice Questions

The following Java Servlet Practice Questions contain the programming problems in Java Servlet Technology. Basically, servlets are Java programs. Further, servlets execute on Java-enabled web servers. For example, we can use the Apache Tomcat server. In fact, servlet technology provides us with a way to create dynamic web applications. Actually, Servlet technology consists of an …

JSP Practice Exercise

The following JSP Practice Exercise contains beginner’s lever programs on Java Server Pages (JSP). Basically, JSP is a technology that we can use to create dynamic web applications. Furthermore, JSP is built over servlet technology. So, it provides us the additional capability such as JSP Standard Tag Library (JSTL). For the purpose of creating the …

Illustrating Dynamic Binding with an Example in c#

In this article on Illustrating Dynamic Binding with an Example in c#, I will explain the concept of dynamic binding in C#. Brief Introduction of Dynamic Binding with an Example in c# Dynamic binding in C# refers to the process of linking method calls to the actual methods at runtime, instead of at compile-time. This …

Methods of Array Class

This article describes Methods of Array Class in C#. Basically, the Array class is contained in the library of the .NET framework and provides functionalities for supporting arrays in C#. In general, the Array class contains methods to create arrays. Moreover, it also provides methods to perform certain operations on arrays. Creating an Array In …

Anonymous Functions in C#

This article describes Anonymous Functions in C# with examples. Basically, anonymous functions are those functions that don’t have any name. Hence, we define the anonymous functions at that place in the code where we need to use them. In fact, C# has a delegate keyword that we can use to create anonymous functions. In order …