
Search In
CompareValidator control is used to compare the value of one control with the value of another control or a constant value. The comparison operation can be any of the following.
Equal
GreaterThan
GreaterThanEqual
LessThan
LessThanEqual
NotEqual
Dat
LITERAL IN JAVA
A literal is a value that may be
assigned to a primitive or string
variable or passed as an argument to
a method call.
Literals can be any thing like
number, text or other information
who represents a value.
Literals are used with a
Ruby provides us the facility of Modules. Modules is to ruby as package is to java and namespace is to c#.
We use a module to keep similar kind of classes together, and promote code Re-usability, i.e If a set of code is to be used in multiple classe
To Implement two stacks in an array
#include<iostream>
#include<stdlib.h>
using namespace std;
class twoStacks
{
int *a;
int size;
int top1, top2; //top of two stacks
public:
twoStacks(int n) // constructor
{
A pointer is a variable which is used to store the address as a value of another variable. Pointers are helpful with program's efficiency and allow us to handle unlimited amounts of data.
The following operations are performed with point
In this example, we'll see how to configure Maven to run a project on tomcat withing eclipse. It is sometimes too hard to manage the Maven project with the commands. Each time we code the project in IDE like eclipse and go to the terminal/cmd to
Promises are logics that are executed after any function is completed. In AngularJS, promises are provided by the in-built $q service. It executes asynchronous functions by registering them with the promise object.
Deferred helps to con
While retriving or inserting data into the database we use SqlClasses.
But we can also create dynamic data or dynamic table if we want.
For doing that we need to use the classes:
DataTable : Table where rows and column are stored.
A storage class defines the scope (visibility) and the life time of the variable in the program or in the class.
There are following storage classes:
auto
register
static
extern
The auto Storage Class
It is the defau
Constants refer to the fixed values that can not be changed throughout the entire program.
Constants can be of any data type and is divided into Integer Numerals, Floating-Point Numerals, Characters, Strings and Boolean Values.
Integer lite
