Java Servlets

Definition Servlets are Java programs that run on the Java-enabled web server or application server. They are used to handle the request obtained from the web server, process the request, produce the response, then send a response back to the web server.  A servlet is a class of Java programming language, used Read more…

Loading

Operators in Java

Type of Operators Java provides various types of operators(very much similar to C programming) that can be used to perform different operations on variables and values. These are:- Arithmetic Operators They are divided into two categories – Binary Arithmetic Operators and Unary Arithmetic Operators. Binary Arithmetic Operators – Binary operators Read more…

Loading

Operators in C

Introduction of Operators in C Operators in C are the term used to describe the action to be taken between two data operands. Operators in C allow us to perform different kinds of operations on operands. An operand is a sub-expression/value on which an operator acts. Definition Operators in C An Operator Read more…

Loading

Circular Linked List Example

Single Circular Linked List Example: A data structure program using C to create a Single Circular Linked List with user-defined nodes to store records with at least two attributes of student and then display all the stored records. Example: A data structure program using C to Insert a new node into a Single Circular Read more…

Loading

Sorting Example

Example : A Sorting algorithm and an Example/program in C to show Bubble Sort. Example : A Sorting algorithm and an Example/program in C to show Insertion Sort. Example : A Sorting algorithm and an Example/program in C to show Selection Sort. Example : A Sorting algorithm and an Example/program in C Read more…

Loading

Searching Example

Example : A Searching Example/program in C to show the Linear/Sequential Search using Array. [Searching in the Array]. Example: A computer program in C to show the Linear/Sequential Search using Linked List. [Searching in the Linked List]. Example: Algorithm for Linear Search. The linear search algorithm, also known as sequential search, Read more…

Loading

Queue Examples

Simple/Normal Queue Examples            Example : Data structure program using a Queue in C in an Array Form to create a simple or normal queue having 10 nodes and display its contents. Example : Data structure program using a Queue in C in a Linked List Read more…

Loading