How to insert an element in an array in C++

By Yogender Narayan

In this tutorial, we are going to discuss How to insert elements in an array? Firstly there is an introduction to arrays then different ways to declare an array. And finally, we w.... Read More

Java Program to Reverse an Array in place

By Tanisha Saxena

In this tutorial, we will see how to reverse any given array in java programming language without making use of any separate array. Now, it would be very easy to reverse an array i.... Read More

Program to find area of a trapezoid in C++

By Tabassum Tanveer

In this tutorial, we will learn how to calculate or find the area of a trapezoid in C++. A trapezoid is a quadrilateral with two parallel sides and the other two sides which are no.... Read More

Access Specifiers in C++

By Shanigaram Mahesh

In this tutorial, we will learn about the access specifiers through  C++. Why we use access specifiers and what are the types in the access specifiers. Access specifiers Access sp.... Read More

Building a Number Guessing Game in C++

By Vishal Kumar

In this C++ tutorial, we are going to learn how to make a number guessing game in C++. This particular game is called number guessing game in which you have to guess the number and.... Read More

How to Create a Fixed Menu in HTML using CSS

By Nilarjun Das

In this tutorial, you will learn how to keep a menu or a navigation bar fixed at the top/bottom in HTML using CSS. So hope you will enjoy learning how to create a fixed menu in HTM.... Read More

How to merge two dictionary in Python

By Uddeshya Mishra

In this article, we will learn to Merge Dictionaries in Python. Dictionary is a powerful data structure in Python which provides a .update() method. This method updates the current.... Read More

How to detect if a string contains numbers in Python?

By Rahul Khanna

In this tutorial, we will talk about How to detect if a string contains numbers in Python.  Let us review ourselves that what actually strings are in Python language. Strings Str.... Read More