Difference between HTML and HTML5
In this article you will learn about difference between HTML and HTML5. Introduction to Markup Languages The term markup language may not ring the bell for an individual who has never been a part of...
View ArticleC++ STL Set Container – std::set
In this tutorial you will learn about STL Set container in C++ i.e. std::set and all functions applicable on it. Set is a associative container. We know that in associative containers each element is...
View ArticleC++ STL Map Container – std::map
In this tutorial you will learn about STL Map container in C++ i.e., std::map and all functions applicable on it. Map is an associative container. Map satisfies the word “associative”. That means every...
View ArticlePl/SQL Program for Palindrome Number
Here you will get pl/sql program for palindrome number. A number is called palindrome number if its reverse is equal to itself. For example 12321 is palindrome while 123 is not palindrome. Pl/SQL...
View ArticlePL/SQL Program to Swap two Numbers
Here you will get pl/sql program to swap two numbers with and without using temporary variable. Method 1: Using Temporary Variabledeclare a number; b number; temp number; begin a:=5; b:=10;...
View ArticlePL/SQL Program for Armstrong Number
Here you will get pl/sql program for armstrong number. A number is said to be an armstrong number if sum of its digits raised to the power n is equal to number itself, where n is total digits in...
View ArticlePL/SQL Online Compiler – Run Oracle PL/SQL Programs Online
In this tutorial you will learn about pl/sql online compiler that will let you run pl/sql programs online. Few days back I was writing plsql programs to share on this blog. There was no compiler...
View ArticleVigenere Cipher in C and C++
In this tutorial you will learn about vigenere cipher in C and C++ for encryption and decryption. Vigenere Cipher is kind of polyalphabetic substitution method. It is used for encryption of alphabetic...
View ArticleDifference between HTML and HTML5
In this article you will learn about difference between HTML and HTML5. Introduction to Markup Languages The term markup language may not ring the bell for an individual who has never been a part of...
View ArticleC++ STL Set Container – std::set
In this tutorial you will learn about STL Set container in C++ i.e. std::set and all functions applicable on it. Set is a associative container. We know that in associative containers each element is...
View ArticleC++ STL Map Container – std::map
In this tutorial you will learn about STL Map container in C++ i.e., std::map and all functions applicable on it. Map is an associative container. Map satisfies the word “associative”. That means every...
View ArticlePl/SQL Program for Palindrome Number
Here you will get pl/sql program for palindrome number. A number is called palindrome number if its reverse is equal to itself. For example 12321 is palindrome while 123 is not palindrome. Pl/SQL...
View ArticlePL/SQL Program to Swap two Numbers
Here you will get pl/sql program to swap two numbers with and without using temporary variable. Method 1: Using Temporary Variabledeclare a number; b number; temp number; begin a:=5; b:=10;...
View ArticlePL/SQL Program for Armstrong Number
Here you will get pl/sql program for armstrong number. A number is said to be an armstrong number if sum of its digits raised to the power n is equal to number itself, where n is total digits in...
View ArticlePL/SQL Online Compiler – Run Oracle PL/SQL Programs Online
In this tutorial you will learn about pl/sql online compiler that will let you run pl/sql programs online. Few days back I was writing plsql programs to share on this blog. There was no compiler...
View ArticleRail Fence Cipher Program in C and C++[Encryption & Decryption]
Here you will get rail fence cipher program in C and C++ for encryption and decryption. It is a kind of transposition cipher which is also known as zigzag cipher. Below is an example. Here Key = 3. For...
View ArticleFresco Android Tutorial
In this tutorial you will learn how to use fresco android image library. Fresco is an image library created by Facebook developers that can be used to display image from internet or local storage. Many...
View ArticleHow to Get Started with Virtual Reality (VR) Development?
Here, you’ll get to know about Virtual Reality and how you should step by step start developing a VR Application and keep your first foot in the VR Development aura. What is Virtual Reality? The term...
View ArticleConvert Decimal Number to Roman Numeral in C and C++
Here you will get program to convert decimal number to roman numeral in C and C++. How it Works? Divide the given number in the order 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 to find...
View ArticleC++ STL Stack Container Adaptor – std::stack
In this tutorial you will learn about STL stack container adaptor in C++ i.e. std::stack and all functions which it provides. std::stack is a container adaptor. We know that container adaptors are not...
View Article