
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
86 Views
In this article we will be discussing the working, syntax and examples of scalbn() function in C++ STL.What is scalbn()?scalbn() function is an inbuilt function in C++ STL, which is defined in the header file. scalbn() function is used to scale significantly using the floating point base exponent.Significand is ... Read More

Sunidhi Bansal
72 Views
In this article we will be discussing the working, syntax and examples of nearbyint() function in C++ STL.What is nearbyint()?nearbyint() function is an inbuilt function in C++ STL, which is defined in header file. nearbyint() function is used to get the round integral value as per the input.The function ... Read More

Sunidhi Bansal
1K+ Views
In this article we will be discussing the working, syntax and examples of norm() function in C++ STL.What is norm()?norm() function is an inbuilt function in C++ STL, which is defined in header file. norm() function is used to get the norm value of a complex number.Norm value of ... Read More

Sunidhi Bansal
294 Views
In this article we will be discussing the working, syntax and examples of valarray::max() function in C++ STL.What is a valarray?std::valarray is a class which is used for representing, modifying the array of values, which supports elements-wise mathematical operations.What is valarray::max()?std::valarray::max() function is an inbuilt function in C++ STL, which ... Read More

Sunidhi Bansal
245 Views
In this article we will be discussing the working, syntax and examples of localtime() function in C++ STL.What is localtime()?localtime() function is an inbuilt function in C++ STL, which is defined in the header file. localtime() is used to convert the given time into the local time.This function uses ... Read More

Sunidhi Bansal
164 Views
In this article we will be discussing the working, syntax and examples of std::exp2() function for complex numbers in C++ STL.What is std::exp2()?std::exp2() function for complex numbers is an inbuilt function in C++ STL, which is defined in or header file. exp2() function is used for computing the ... Read More

Sunidhi Bansal
769 Views
In this article we will be discussing the working, syntax and examples of std::exp() function for complex numbers in C++ STL.What is std::exp()?std::exp() function for complex numbers is an inbuilt function in C++ STL, which is defined in a header file. exp() function for complex numbers is the same ... Read More

Sunidhi Bansal
325 Views
We are given the variable and the task is to find the probability of the variable using an error function available in C++ STL. This function is available in the cmath header file in C++.What is an Error function?Error function in mathematics is also known as Gauss error function which ... Read More

Sunidhi Bansal
1K+ Views
In this article we will be discussing the working, syntax and examples of std::count_if() function in C++ STL.What is std::count_if()?std::count_if() function is an inbuilt function in C++ STL, which is defined in header file. count_if() is used to get the number of elements in a specified range which satisfy ... Read More

Sunidhi Bansal
233 Views
In this article we will be discussing the working, syntax and examples of multiset::equal_range() 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