AJAX with JSP Using jQuery Example
Here you will get an example of AJAX with JSP using jQuery. AJAX is used for sending and receiving data from server without reloading the page. We can implement AJAX easily using jQuery. It provides...
View ArticlePerfect Number in C
Here you will get program for perfect number in C. Perfect number is a positive number which is equal to the sum of all its divisors excluding itself. For example: 28 is a perfect number as 1 + 2 + 4 +...
View ArticleAndroid Session Management Using SharedPreferences
Here you will get an example of android session management using SharedPreferences. If you don’t know about SharedPreferences then read my previous tutorial: Android SharedPreferences Example In this...
View ArticleConvert ArrayList to Array in Java
In this tutorial you will learn how to convert ArrayList to Array in Java. Mainly there are two ways to convert ArrayList to array. Using manual way Using toArray() method Below I have share an example...
View ArticleCreate Java SOAP Web Service Using Eclipse
In this tutorial I will teach you the simplest way to create Java SOAP web service using Eclipse IDE. I have created this example using Eclipse Kepler. I am sure it will work with any other Eclipse...
View ArticleHow to Insert Date and Time in MySQL Using Java
In this example I will show you the simplest way to insert date and time in MySQL database using Java. This example is for inserting current date and time. You can parse any date and time to insert....
View ArticleKali Linux Commands List (Cheat Sheet)
Here you will get Kali Linux commands list (cheat sheet). Kali Linux is a Debian-based Linux distribution which was developed for penetration testing and security auditing. It provides various tools...
View ArticleConfigure Apache Tomcat Server in Eclipse IDE
In this tutorial you will learn how to configure Apache Tomcat server in Eclipse IDE. Eclipse is a very popular IDE for developing Java applications. When you will download Eclipse, it doesn’t come...
View ArticleDangling Pointer in C
Here you will learn about dangling reference and dangling pointer in C. In computer programming, memory is allocated for holding data object. After the work is done the memory is deallocated so that...
View ArticleJavaScript Captcha Example
In this tutorial you will get JavaScript captcha example. Captcha is used to determine whether or not the user that is filling and submitting a web form is human. While developing web projects we often...
View ArticleConvert Array to ArrayList in Java
In this tutorial you will learn how to convert array to arraylist in Java. There are mainly two ways to convert a Java array to arraylist. Using Arrays.asList() method Using Collections.addAll() method...
View ArticleJSP Login and Logout System Example Using Session
In this tutorial you will learn how to make JSP login and logout system using session. I have used MySQL as a database in this example. This system has following files. index.jsp: It contains a login...
View ArticleHow to Remove Duplicate Elements from ArrayList in Java
In this tutorial you will learn how to remove duplicate elements from arraylist in Java. We can remove repeated elements in arraylist by two ways. Using HashSet – Do not maintain the insertion order....
View ArticledbForge Studio for SQL Server – Ultimate SQL Server Manager Tool from Devart
dbForge Studio for SQL Server is an integrated environment for managing, administering, accessing, configuring, and developing SQL Server. The tool consists of various graphical utilities and script...
View ArticleTop 7 Reasons Why Node.js Is So Popular
To put it simple, Node.js outshines other web applications by replacing websockets with revolutionary push technology. You would ask, what is so unique about it? Well, we finally have cutting-edge web...
View ArticleOnline Quiz System Project in JSP (Java)
Here you will get the online quiz system project in JSP (Java). Few days back my college organized a tech fest. There was a coding competition event in that fest. The first round was an online test...
View ArticleHow to Backup or Restore MySql Database Using SQLyog
This tutorial will guide you how to backup or restore mysql database using sqlyog. It is really important to create regular backups of database on which you are working. It will keep the database safe...
View ArticleJava SQLite Tutorial
In this tutorial you will learn about Java SQLite. SQLite is lightweight, zero configuration, serverless SQL database library. In this tutorial I will teach you how to use SQLite database with Java....
View ArticleFactorial of Large Number in Java
It is not possible to store factorial for large number like 50 into inbuilt data types like integer or long. Because factorial of 50 has almost 60 digits. Imagine how we can store it in int or long. We...
View ArticleApplications of Stack
Here you will learn about applications of stack. Stack is an abstract data type and a data structure that follows LIFO (last in first out) strategy. It means the element added last will be removed...
View Article