top of page
Search


What is JSON Used for?
In web development and data exchange, JSON (JavaScript Object Notation) has been used as a fundamental and widely adopted data...

The Tech Platform
Jul 26, 2023


How to Find Missing Number in a Sorted Array in Java?
Tips to find the missing number in a sorted array: Find the sum of n number using formula n=n*(n+1)/2 Find the sum of elements present in...

The Tech Platform
May 20, 2022


How to use Arrays in Bash Script
Bash Array – An array is a collection of elements. Unlike in many other programming languages, in bash, an array is not a collection of...

The Tech Platform
Apr 13, 2022


3 Methods to Merge an Array in JavaScript
An array is a data structure representing an ordered collection of indexed items. A common operation performed on multiple arrays is...

The Tech Platform
Dec 28, 2021


Methods to Search through Arrays in JavaScript.
In JavaScript, we often work with data that is stored in Arrays. A common task will be searching the array to find if it contains a value...

The Tech Platform
Dec 24, 2021


Arrays in C/C++
Arrays An array is a collection of similar data items stored at contiguous memory locations and elements can be accessed randomly using...

The Tech Platform
Nov 22, 2021


Looping over Arrays: for loop vs for-in loop vs forEach() loop vs for-of loop
When working with arrays in programming, one common task is iterating over the elements of an array. There are several ways to achieve...

The Tech Platform
Jan 10, 2021
bottom of page