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 …
Example of Label and Textbox Control in ASP.NET
This article discusses an Example of Label and Textbox Control in ASP.NET. Basically, Label and textBox are two basic Web Form controls that we use quite frequently in a web application. While the Label control displays static text, the TextBox control allows us to enter the data. In particular, each web control possesses some properties, …
Visualize Regression Models with Seaborn
In this article, I will explain how to Visualize Regression Models with Seaborn. To begin with, let us first understand Regression Models. Regression Models In order to find the relationship between two variables, we create a regression model. Basically, regression analysis or regression modeling is a predictive modeling technique where we have an independent variable …
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 …
One Dimensional and Two Dimensuonal Indexers in C#
One Dimensional and Two Dimensional Indexers in C# Further Reading Selection Sort in C# Insertion Sort in C# Bubble Sort in C# How to Create Instance Variables and Class Variables in Python Comparing Rows of Two Tables with ADO.NET Example of Label and Textbox Control in ASP.NET One Dimensional and Two Dimensuonal Indexers in C# …
Parameter and ParameterCollection in ADO.NET
In this article, I will discuss Parameter and ParameterCollection in ADO.NET. Basically, ADO.NET supports both parameterized as well as non-parameterized queries. While non-parameterized query follows the following syntax, In this case, we use a literal directly in the query. However, a parameterized query uses the parameter name in place of the literal. In fact, a …
Private and Static Constructors in C#
This article describes Private and Static Constructors in C#. In general, a class has all of its constructors declared as public. While declaring the constructors of a class as public ensures that we can create its objects, sometimes we don’t require it. In other words, if we need to create a class in such a …
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 …