Solve Simple Programming Problems

In order to get better at coding, the key is to Solve Simple Programming Problems. Although you can choose your favorite programming language for coding, C and C++ are still the most popular languages among students. The following list provides some basic programming problems that you can try to practice in any language. Simple Programming …

Data Binding Using BulletedList Control

ASP.NET provides several server-side controls that allow data binding. Earlier I have discussed the basics of Data Binding in ASP.NET and demonstrated it using DropDownList Control. In this article, I will explain Data Binding Using BulletedList Control which is one of the List Control available in ASP.NET. Before proceeding with data binding using BulletedList Control, let us first discuss some important …

Long Short Term Memory – An Artificial Recurrent Neural Network Architecture

In this post, I will explain an Artificial Neural (ANN) Network Architecture known as Long Short Term Memory (LSTM). Basically, it is a type of Recurrent Neural Network (RNN). Comparing Different Types of Artificial Neural Networks (ANNs) Before discussing LSTM, let us first understand the difference between a traditional Artificial Neural Network (ANN), and a Recurrent Neural …

Examples of AdRotator Control in ASP.NET

Today I will explain how to include advertisements in a web application by providing Examples of AdRotator Control in ASP.NET. To begin with, the AdRotator control displays an advertisement banner on a web page of a website. For this purpose, ASP.NET provides a class known asAdRotator in the namespace System.Web.UI.WebControls. Hoe Does AdRotator Control Displays Advertisements In order …

Examples of Validation Controls in ASP.NET

Basically, validation is one of the most significant tasks in creating a web application. This article will provide several examples of Validation Controls in ASP.NET. Validation Controls in ASP.NET In fact, ASP.NET provides following six types of validation controls that you can use to validate the data of a Web Form. RequiredFieldValidator CompareValidator RangeValidator RegularExpressionValidator CustomValidator ValidationSummary Required Field …

Python Project Ideas for Undergraduate Students

Python is a versatile programming language that students love to work with. Accordingly, it will remain one of the most popular languages in the coming years. Hence, when you start learning python, it is helpful to develop some projects. It will enable you to develop a practical approach to learning the language. Therefore, here we list some of the Python Project …

Understanding JSON Web Tokens

In this post on Understanding JSON Web Tokens, I will explain the concept of JWT. Basically, JWT or JSON Web Token is a way of securely transferring information between parties. The transfer of information takes place as JSON objects rather than plain text. Since this information is digitally signed, it can be verified also. Hence, the information …