Articles by Team EasyExamNotes

C++ Versus JAVA

C++ JAVA Platform dependent. Platform independent. Mainly used for system programming. Mainly used for application programming. Support multiple inheritances. Does not support multiple inheritance. Support … Read more

Java virtual machine

The Java Virtual Machine (JVM) is a crucial component of the Java platform. It is an abstract computing machine that provides an execution environment for … Read more

Java statements

In Java, statements are individual instructions or commands that perform a specific action. Each statement typically ends with a semicolon (;) to mark its completion. … Read more

Tokens

In Java programming, tokens are the smallest individual units of a program that are meaningful to the compiler. They represent the various building blocks of … Read more

JAVA environment

In Java, the programming environment consists of several components that are necessary for developing, compiling, and running Java programs. Here are the key components of … Read more

PHP Project

Address Book System A minor project in PHP.Databsae: PHPMyAdmin, Wamp Server Code for Insert data into Database: <html><body><form><table align=”center”><tr><td>Name:</td><td><input type=”text” name=”name”></td></tr><tr><td>Mobile:</td><td><input type=”text” name=”mobile”></td></tr><tr><td>Gender:</td><td><input type=”radio” value=”Female” … Read more

Select statement in SQL

Different ways to use ‘select’ statement in SQL, DBMS MySQL. mysql> select *from student where roll_no<45 span=””>+——–+——–+———+| f_name | s_name | roll_no |+——–+——–+———+| prasan | … Read more

LIKE IN SQL mySQL

There are different ways to use ‘like’ in SQL. Each way of using ‘like’ gives a different result. Which is shown in screenshot below. ‘Like’ … Read more