Flexible Deterministic Packet Marking (FDPM) Java Project
This Java project depicts IP Traceback System called Flexible Deterministic Packet Marking (FDPM) that provides a defense mechanism to find out the real sources of attacking packets that traverse...
View ArticleC Interview Questions and Answers
Here are 50+ commonly asked C interview questions and answers which will definitely help you out to crack one of the toughest interviews. 1. What is the difference between sprintf() and printf()...
View ArticleC++ Interview Questions and Answers
Here are 50+ commonly asked C++ interview questions and answers which will definitely help you out to crack one of the toughest interviews. 1. What is Object Oriented Programming Approach? Object...
View ArticleHow to Import Existing Project in Eclipse or MyEclipse
In this tutorial I have explained the step by step procedure to import existing project in Eclispe or MyEclipse. I have shown an example of importing web project in MyEclipse, the same will work for...
View ArticleHTML Interview Questions and Answers
Here are 50+ commonly asked HTML interview questions and answers which will definitely help you in toughest interviews. 1. Explain Semantic HTML? Semantic HTML is a Style of Programming. It is...
View ArticleCore Java Interview Questions and Answers
Here are 50+ commonly asked core Java interview questions and answers which will definitely help you out to crack one of the toughest interviews. 1. What is JVM? JVM stands for Java Virtual Machine and...
View ArticleHow to Find a Rewarding Job that Leverages Your SQL Skills
In 1990 Bill Gates made one of his more memorable keynote speeches at the COMDEX trade show, where he shared a vision of a world in which Microsoft would provide information at your fingertips. Thanks...
View ArticleAndroid Load Image from URL (Internet) Example
If you are developing a live android application then you will surely need to load image from URL or internet and set it into ImageView. You will find various methods to do this, but all those methods...
View ArticleAndroid Hello World Example – Build First Android App
Hello friends, in this tutorial I will teach you how to build first android app with the help of android hello world example. I hope that before reading this tutorial you have already installed Android...
View ArticleSerialization in Java with Example
Serialization in Java is the process of converting an object into bytes stream to save it in file. Or we can say that, serialization is used to persist (save) the state of an object. The process of...
View ArticleHow to Change MySQL root Password in Windows
We may forget MySQL root password when we use it after long time. It is a very common problem among programmers. Few days back I also faced the same problem and luckily I found its solution by...
View ArticleVB.Net Interview Questions and Answers
Here are 45+ frequently asked VB.Net interview questions and answers which will definitely help you out to crack one of the toughest interviews. 1. What is .NET Framework? It is a platform independent...
View ArticleJava Program to Find Current Date and Time
We can find current date and time in Java in two ways. The first way is to use Date class and second way is to use Calendar class. Below I have shared Java program to find current date and time. First...
View ArticleIOS Interview Questions and Answers
Here are 40+ commonly asked IOS interview questions and answers which will definitely help you out in interviews. 1. Enlist the Latest IOS Development Patform? The recent iOS Development platforms are...
View ArticleAndroid Text to Speech Example
In this tutorial you will learn about android text to speech example. Android provides a class TextToSpeech that helps in converting any text into speech or voice. What I am doing in this example is, I...
View ArticleProgram for Pascal Triangle in C and C++
Here I have shared simple program for pascal triangle in C and C++. Basically Pascal’s triangle is a triangular array of binomial coefficients. An example for how pascal triangle is generated is...
View ArticleBasic Overview of Android Application
In this tutorial I will give you a basic overview and explain fundamentals related to android application. Activity An Activity is a screen or window that interacts with the user. Activity is...
View ArticleAndroid Activity Lifecycle
In this tutorial you will learn about android activity lifecycle. I have already told you in previous tutorial that an activity is a screen or window that interacts with user. It holds all the UI...
View ArticleAndroid Splash Screen Example
In this tutorial you will get android splash screen example. Splash screen is a simple screen or activity used to display some progress when application is launched. Some developers use splash screen...
View ArticleFactorial of Large Number in C and C++
Here you will get program to find factorial of large number in C and C++. Factorial of big numbers contain so many digits. For example factorial of 100 has almost 158 digits. So there is no data type...
View Article