
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sunidhi Bansal has Published 1085 Articles

Sunidhi Bansal
855 Views
In this article we will be discussing the working, syntax and examples of map::erase() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination on key value and mapped value in a specific order. In a ... Read More

Sunidhi Bansal
769 Views
In this article we will be discussing the working, syntax and examples of map::emplace() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

Sunidhi Bansal
180 Views
In this article we will be discussing the working, syntax and examples of map::emplace_hint() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

Sunidhi Bansal
103 Views
In this article we will be discussing the working, syntax and examples of std::is_reference template in C++ STL.is_reference is a template which comes under header file. This template is used to check whether the given type T is a reference type or not.This template is a combination of is_rvalue ... Read More

Sunidhi Bansal
86 Views
In this article we will be discussing the working, syntax and examples of std::is_polymorphic template in C++ STL.is_polymorphic is a template that comes under the header file in C++. This template is used to check whether the class is a polymorphic class or not and return the result either ... Read More

Sunidhi Bansal
169 Views
In this article we will be discussing the working, syntax and examples of multiset::emplace_hint() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a specific order.In ... Read More

Sunidhi Bansal
182 Views
In this article we will be discussing the working, syntax and examples of std::is_trivial template in C++ STL.is_trivial is a template which comes under header file. This template is used to check whether the given type T is a trivial class or notWhat is a trivial class type in ... Read More

Sunidhi Bansal
205 Views
In this article we will be discussing the working, syntax and examples of std::is_scalar template in C++ STL.is_scalar is a template which comes under header file. This template is used to check whether the given type T is a scalar type or notThis template is a combination of is_arithmetic, ... Read More

Sunidhi Bansal
162 Views
In this article we will be discussing the working, syntax and examples of multiset::empty() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same as a set, in a specific order.In ... Read More

Sunidhi Bansal
860 Views
In this article we will be discussing the working, syntax and examples of multiset::count() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a specific order.In ... Read More