AAA Logo – A Logo Design Software
Creating a Logo can be a hectic task, mostly people prefer professional help to create a brand logo, but what if there is an application available that easies the process of logo-making? There are...
View ArticleZero Bounce – Best Email Validation System
An Email Validation System basically revolves around Email Security; with the increase in E-Marketing culture a rise fraud spams and Toxic Domains are experienced. These may directly affect the...
View ArticleMovavi Screen Capture for Mac – A Simple Solution to Record Videos
Being able to record videos from your Mac’s screen is a lot more beneficial than you might realize. Often people tend to assume that screen recording is only ever used to create video guides and...
View ArticleAndroid Navigation Drawer Tutorial
In this tutorial you will learn about android navigation drawer. There are so little possibilities when it comes to choosing the main menu of an android application. If we start enlisting, we have...
View ArticleC++ STL Queue Container Adaptor – std::queue
In this tutorial you will learn about STL queue container in C++ or std::queue and all functions which it provides. std::queue is a container adaptor. Since queue is a container adaptor, this class...
View ArticleC++ STL Priority Queue – std::priority_queue
In this tutorial you will learn about STL priority queue in C++ i.e std::priority_queue and all functions applicable on it. std:: priority_queue is a container adaptor. This is almost same as queue...
View ArticlePL/SQL Program to Find Greatest of Three Numbers
Here you will get plsql program to find greatest of three numbers.declare a number:=10; b number:=12; c number:=5; begin dbms_output.put_line('a='||a||' b='||b||' c='||c); if a>b AND a>c then...
View ArticlePL/SQL Program to Print Patterns
Here you will get plsql programs to print patterns of stars, numbers and alphabets. Pattern 1:* ** *** **** *****declare n number:=5; i number; j number; begin for i in 1..n loop for j in 1..i loop...
View ArticleSQL Server Tuning for Faster Queries
Your SQL Server Compact is capable of lightening-fast performance and stunningly efficient service even while handling huge work loads. But without regular SQL sever performance tuning, you can’t...
View ArticleC++ STL Multiset Container – std::multiset
In this tutorial you will learn about STL Multiset container in C++ i.e. std::multiset and all functions applicable on it. Multiset is an associative container. Same like set this also follows some...
View ArticleC++ STL Multimap Container – std::multimap
In this tutorial you will learn about stl multimap i.e., std::multimap and all functions applicable on it with some example code. In previous articles we already learned about std::map container. It is...
View ArticleHow to Recover Deleted Files After USB Drive Corrupt
Nowadays losing data is a common phenomenon! Imagine you’ve invested all your time in preparing an important presentation for your office and in the morning you’re not able to find the same. Here,...
View ArticleC++ STL Unordered Set – std::unordered_set
In this tutorial you will learn about stl unordered set container in c++ and various functions applicable on it. Unordered Set comes under unordered containers. As we discussed in introduction to stl...
View ArticleBinary Search in C
Here you will get program for binary search in C. Binary search algorithm can be applied on a sorted array to search an element. Search begins with comparing middle element of array to target element....
View ArticlePython Binary Search
Here you will learn about python binary search with program and algorithm. In linear search, we have to check each node/element. Because of this, time complexity increases. To reduce this time...
View ArticleC++ Tokens – Keywords, Constants, Identifiers, Strings, Operators & Special...
Here you will learn about C++ tokens, keywords, constants, identifiers, strings, operators and special symbols. What are Tokens? In simple words, we can say that tokens are the smallest component...
View ArticleC++ STL Unordered Map – std::unordered_map
In this tutorial you will learn about stl unordered map container i.e. std::unordered_map and all functions applicable on it. By its name we can say that it comes under Associative containers with...
View ArticlePython Selection Sort
Here you’ll learn about python selection sort algorithm with program example. Selection sort is one of the easiest sorting algorithm out there. In Selection sort, to sort an unsorted array, all we have...
View ArticleIntroduction to Machine Learning (ML)
Here you will get introduction to machine learning. Hello there. Many of you must be aware of this term but some might be wondering what the heck is this? Another technical jargon only? Let’s make this...
View ArticleC++ Variables
In this section we will be studying the concepts of variables in C++ programming language. We hope you guys must have heard about variables in C or somewhere else. Though it is not a very complex topic...
View Article