Advantages of PHP
PHP Tutorial

Advantages of PHP

A PHP application that uses a database to store information (MySql in particular) is always faster than an application built on files. The fact is that databases are written in C ++,

Rekha Setia 
Features of PHP
PHP Tutorial

Features of PHP

Probably PHP’s most powerful and significant aspect is the level of interaction with databases. Building a web application that works with a database is fairly straightforward.

Rekha Setia 
Functions in C
C Programming

Functions in C

The need for C functions When we write programs, sometimes it happens that we have to type any code repeatedly, so to avoid this situation, we create C functions. Creating function reduces the consumption of memory space and we can use that code in the program when needed. With the help of the function, we […]

Rekha Setia 
What is Java
Java Programming

What is Java

JAVA  programming language was developed by Sun Microsystems(an American technology company) in 1991(developed by the team headed by James Gosling),. This language was originally called,  “Green talk”, After that, it was called “Oak”but was renamed(OAK  was already a trademark) “Java” in 1995. JAVA is a computer language to specify textual representation by writing source code, […]

Rekha Setia 
How To Take Input From User In Java
Java Programming

How To Take Input From User In Java

In this tutorial, I am going to show you how to take input from users in java using two different ways. You can follow any method (Scanner or BufferedReader) according to your convenience. To understand how we get input from users in java we first must know of the following two things : System. out – […]

Rekha Setia 
DATA TYPES IN JAVA
Java Programming

 DATA TYPES IN JAVA

Before we talk about data type first we know about variables because data type is used with variables. Without variables the meaning of the data type is nothing, it’s incomplete. Data types are used when you create variables in the program. Each variable is assigned a data type. Variable is the name that is used […]

Rekha Setia