top of page
Search

Write a Program to Check whether the two Strings are Equal or Not in Java
An array is a data structure in java that holds values of the same type with its length specified right from creation time. Think of a...
The Tech Platform
Jan 24, 2022

Arithmetic Operators in C#
Operators are a very useful thing in computing value. While writing a program, you need various types of operators to calculate the...
The Tech Platform
Jan 22, 2022

Hex() function in Python
hex() function is one of the built-in functions in Python3, which is used to convert an integer number into it’s corresponding...
The Tech Platform
Jan 9, 2022

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

The :empty and :blank CSS pseudo selectors
:empty The :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including...
The Tech Platform
Dec 24, 2021

JavaScript One-Liner coding/ Programming
1. How to convert a string from snake_case to camelcase A string in snake_case uses the underscore character to separate each word. Each...
The Tech Platform
Dec 17, 2021

Program to Print Factorial of a Number in Python
Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that number you ask for factorial....
The Tech Platform
Dec 16, 2021

Program to Swap two Variables in Python
The most native approach is to store the value of one variable(say x) in a temporary variable, then assigning the variable x with the...
The Tech Platform
Dec 16, 2021

Program to Reverse a List in Python
This python program allows user to enter the length of a List. Code: NumList = [] Number = int(input("Total Number of List Elements: "))...
The Tech Platform
Dec 14, 2021

How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...
The Tech Platform
Dec 13, 2021
bottom of page