top of page
Search
The Tech Platform
Jul 7, 2022
What is Mobile App Development? Languages for Android App / iOS App Development
Mobile application development is the set of processes and procedures involved in writing software for small, wireless computing devices,...
The Tech Platform
Jul 4, 2022
Programming Languages: Types of Programming Language.
A programming language is any set of rules that converts strings, or graphical program elements in the case of visual programming...
The Tech Platform
Jun 10, 2022
The Basics of Coding and Programming You Should Know
Your computer’s operating system, your phone, this website: they have one thing in common. They all run on a set of instructions to...
The Tech Platform
May 24, 2022
How to Learn new Programming Language faster
There are some steps you want to take to accelerate the learning process and increase your fluency in the programming language you are...
The Tech Platform
Jan 28, 2022
Top Programming Languages used by Blockchain Developers
A blockchain is a distributed database that is shared among the nodes of a computer network. As a database, a blockchain stores...
The Tech Platform
Jan 25, 2022
Top 5 Programming Languages for Cyber Security
Cyber security is the application of technologies, processes and controls to protect systems, networks, programs, devices and data from...
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 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 22, 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...
bottom of page