top of page
Search
The Tech Platform
Dec 10, 2021
Write a Python Program to Print the Fibonacci Series of a Given Number
A Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8.... The first two terms are 0 and 1. All other terms are obtained by...
The Tech Platform
Dec 10, 2021
Write a program to Find the Sum of the list in Python
See the flowchart below to understand how the code will work. Code: ListSum = [] #crate a empty list in Python #takes input for number...
The Tech Platform
Nov 30, 2021
Program to Shuffle or Arrange Random Array in JavaScript
Below is the Flow chart which explains how array is shuffles or arranged in JavaScript. Code: function shuffle(arra1) { var ctr =...
The Tech Platform
Nov 30, 2021
Write a C++ Program to check whether Given Number is Negative or Positive
Code: #include <iostream> using namespace std; int main() { cout << " ** Program to Check that given number is positive or negative**...
The Tech Platform
Nov 28, 2021
Write a program to print Floyd's Triangle in C++.
Floyd's Triangle Floyd's triangle is a right-angled triangular array of natural numbers. It is defined by filling the rows of the...
The Tech Platform
Nov 23, 2021
CSS Grid Layout Properties with Examples
Grid The CSS Grid Layout Module offers a grid-based layout system, with rows and columns, making it easier to design web pages without...
The Tech Platform
Nov 22, 2021
How to print size of array parameter in C++?
Example: #include <iostream> using namespace std; void findSize(int arr[]) { cout << sizeof(arr) << endl; } int main() { int a[10];...
The Tech Platform
Nov 15, 2021
Introduction to String Concatenation in C++
String Concatenation is the process of joining character strings end-to-end. For example, the concatenation of "snow" and "ball" is...
The Tech Platform
Nov 9, 2021
CSS Position Property
CSS is how we determine the layout and design of a webpage. The CSS position is how we position each element in a document. This property...
The Tech Platform
Oct 21, 2021
Django vs Nodejs : Comparison of two amazing backend frameworks
Django Django is a high-level Python web framework that enables rapid development of secure and maintainable websites. Built by...
bottom of page