
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
Arnab Chakraborty has Published 4293 Articles

Arnab Chakraborty
14K+ Views
Dictionaries aren’t present in C++, but it has a similar structure called map. Each entry of a map has a couple of values in it, which are key and mapped values. The key value is used for indexing each entry, whereas the mapped values are the values that are associated ... Read More

Arnab Chakraborty
742 Views
A map is a data structure in C++ and can be found in the STL class std::map. It is similar to the dictionaries that we see in Python. Each entry in a map object has a pair of values, one of which is the key value and the other is ... Read More

Arnab Chakraborty
12K+ Views
Designing patterns using special characters like stars (asterisks) is one of the most common types of programs to understand looping concepts. There are plenty of other star pattern programs which are very common in nature. The star pyramid is fairly simple but much more effective to understand looping statements and ... Read More

Arnab Chakraborty
1K+ Views
Understanding looping ideas is made simpler by printing a star design. Asterisks are used in a variety of star patterns to form complete or hollow triangles or diamond forms. In this post, we will show how to create a center-aligned descending triangle in C++. The following table will contain the ... Read More

Arnab Chakraborty
638 Views
When learning programming, displaying a star pattern makes looping concepts easier to get. The star patterns are various designs that use asterisks to create hard or hollow triangles or diamond forms. This article will demonstrate a C++ implementation for an upward triangle that is center-aligned. The following table will contain ... Read More

Arnab Chakraborty
856 Views
When learning programming, displaying a star pattern makes looping concepts easier to comprehend. The star patterns are various designs that use asterisks to create hard or hollow triangles or diamond forms. This article will demonstrate a C++ right-aligned mirrored upper triangle pattern. The following table will contain the logic we ... Read More

Arnab Chakraborty
2K+ Views
The purpose of an array is to provide access to the same type of data across several memory locations via base addresses and indexes. In a wide variety of applications, arrays are used to store data for a wide range of reasons. The array must efficiently handle adding, removing, and ... Read More

Arnab Chakraborty
693 Views
Asterisks "*" are used in star patterns to represent various shapes, such as right-angled triangles or other triangular and diamond shapes. Star patterns are the names for these forms. This tutorial will demonstrate how to use C++ to display the upper left triangle star pattern. Here, we accept as an ... Read More

Arnab Chakraborty
1K+ Views
Star patterns are interesting problems to display different shapes like right-angled triangles or other triangular and diamond shapes using asterisks ‘*’. These shapes are called star patterns. In this article, we will see how to display the left triangle start pattern in C++. Here we take the number of lines ... Read More

Arnab Chakraborty
5K+ Views
The purpose of an array is to store a similar type of data in a series of the memory places that can be accessed using base addresses and indexes. We use arrays to hold data for a variety of purposes in many different applications. Finding minimum and maximum elements are ... Read More