top of page
Search

Program to Square a Number in Python
In this, we will learn 3 different ways to find the Square root of a number in Python Using Exponent Using math.sqrt() Using math.pow()...
The Tech Platform
Nov 25, 2022

Program to find a word in JavaScript
This article will show you the steps to find a word from a given string in JavaScript using search_word Code: function search_word(text,...
The Tech Platform
Nov 22, 2022

Create PDF file with Python
PDF stands for Portable Document Format and uses .pdf extension. It is used to present and exchange documents reliably, independent of...
The Tech Platform
Nov 14, 2022

Image Scraping with Python
In this article, we will learn how to scrape images from any website using Python and the BeautifulSoup library. What is Image Scraping?...
The Tech Platform
Oct 26, 2022

Write a Program to convert degree into radian using C++
What is Radian? The radian is the unit of angle in the International System of Units and is the standard unit of angular measure used in...
The Tech Platform
Oct 18, 2022

What are different types of Loops in Python?
Programming languages provide various control structures that allow for more complicated execution paths. A loop statement allows us to...
The Tech Platform
Oct 14, 2022

Program to check if the String is Empty or not in JavaScript
There are a number of reasons why you might need to check if a string is empty or not. One of the most important reasons is when you're...
The Tech Platform
Sep 8, 2022

One-Liner code in JavaScript
JavaScript syntax and built-in methods allows you to cut down a lot of unnecessary lines in your code and write short, easily readable...
The Tech Platform
Sep 1, 2022

Program to Count the Number of Vowels in String in Python
Program to Count the Number of vowels we’re going to check how many vowels are present in a given String . There are five vowels– a, e,...
The Tech Platform
Aug 11, 2022

Coding : Principles, Types and Concepts
Coding is a list of step-by-step instructions that get computers to do what you want them to do. Coding makes it possible for us to...
The Tech Platform
Aug 10, 2022
bottom of page