Dining Philosophers Problem in C and C++
In this tutorial you will learn about Dining Philosophers Problem in C and C++ with program example. What is Dining Philosophers Problem? There are some Philosophers whose work is just thinking and...
View ArticleAsymptotic Notations
Here you will learn about Asymptotic Analysis and Asymptotic Notations in detail. It is common that we write Algorithm before writing code to any problem. There may exist more than one solution for a...
View ArticleNormalization in DBMS – 1NF, 2NF, 3NF and BCNF
Here you will learn about normalization in dbms with examples. What is Normalization in Database? Most of the projects and websites contain lot of information. They store the data in tables. Since lot...
View ArticleDifference between JSON and XML
Let us understand the difference between JSON and XML web technologies. Here’s a brief overview on JSON vs XML with a complete description and examples as well. XML XML is an abbreviation for...
View ArticleHow to Exit Vim Editor?
In this article you will learn how to exit vim editor with and without saving. What is Vim? Vim is a text editor that is highly cofigurable and customizable. It was written by Bram Moolenaar and was...
View ArticleC++ Standard Template Library (STL) – Introduction
In this tutorial you will learn about what is STL in C++, what it provides and overview of all STL items. STL means Standard Template Library. STL is the most crafted libraries among all other...
View ArticleC++ STL Array Container – std::array
Here you will learn about STL Array Container in C++ i.e. std::array. I Hope you know about C-type arrays (arrays in C language). Since C++ is just extension to C language we can use those. The main...
View ArticleC++ STL Vector Container – std::vector
Here you will learn about C++ STL Vector Container i.e. std::vector and various functions applicable on it. Vector, as we discussed earlier vector is dynamic array that grows in one direction. Also...
View ArticleAndroid PopupWindow Example
Here you will get Android PopupWindow example code. Popup window is a floating view that is displayed on top of an activity. Android provides PopupWindow class for creating a popup window with custom...
View ArticleC++ STL Deque Container – std::deque
Here you will learn about C++ STL Deque container i.e. std::deque and all functions applicable on it. Note: Deque should be pronounced as “deck”. It named because Double Ended Queue (DEQUE). Deques are...
View ArticleHow to Install Atom Text Editor in Ubuntu (Linux)
In this tutorial you will learn to install atom text editor in Ubuntu (Linux). Atom is a free and open-source text and source code editor for macOS, Linux, and Microsoft Windows with support for...
View ArticleDifference between Geek and Nerd
Here you will learn about Difference between Geek and Nerd. It is common for people to think that a geek and a nerd are the same things. In fact, anyone would be forgiven to think so. Most think that...
View ArticleC++ STL List Container – std::list
In this tutorial you will learn about C++ STL list container i.e. std::list and methods which can be applicable on it. List comes under sequence containers. List stores elements in non-contiguous...
View ArticleDifference between Tree and Graph Data Structure
In this tutorial you will learn about the difference between tree and graph. Both trees and graphs are two well known mostly used data structures in algorithms. Tree Data Structure In Computer science,...
View ArticleC++ STL Forward List Container – std::forward_list
In this tutorial you will learn about C++ STL forward list i.e., std::forward_list and operations, methods applicable on it. Forward Lists come under sequence containers. Forward List implements singly...
View Article5 Ways to Improve Your Website Security
Here you will know about some important website security tips. Owning a website is similar in a lot of ways to owning a brick-and-mortar store. It serves to promote and advertise your products and...
View ArticleAndroid Google Analytics Integration Tutorial
This tutorial is about google analytics android integration. Google Analytics will help you to track how many people are using your app, real time users, etc. The tutorial is divided into three parts,...
View ArticleSolve error: lvalue required as left operand of assignment
In this tutorial you will know about one of the most occurred error in C and C++ programming, i.e. lvalue required as left operand of assignment. lvalue means left side value. Particularly it is left...
View ArticleHow to Convert Website to Android App Using Android Studio
In this tutorial you will learn how to convert website to android app using Android Studio. Before reading this tutorial I hope that you already have basic knowledge of Android App Development....
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 Article