top of page
Search
The Tech Platform
Apr 19, 2021
C++ Program to Make a Simple Calculator to Add, Subtract, Multiply and Divide Using switch case.
This program takes an arithmetic operator (+, -, *, /) and two operands from an user and performs the operation on those two operands...
The Tech Platform
Apr 17, 2021
How to Find Square Root of a Number in Java?
Here we will see Java program for finding square root using the API method. package test; import java.util.Scanner; /** * * Java...
The Tech Platform
Apr 16, 2021
What are Joins in SQL? With Examples
In this article, we will explore the concept of joins in SQL and provide clear examples to illustrate their usage. What are Joins in SQL?...
The Tech Platform
Apr 14, 2021
Nth Highest Salary Example in MySQL and SQL Server
Write a SQL query to get the nth highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 |...
The Tech Platform
Apr 13, 2021
ALTER Command in SQL
ALTER is not part of classical CRUD operation but it’s one of the important DDL commands. One of the most frequent uses of ALTER command...
The Tech Platform
Apr 12, 2021
C# — Style Guide Cheat Sheet
Writing beautiful, understandable code is just as important as writing a production code. There are many different guides and guidelines...
The Tech Platform
Apr 8, 2021
Write a C Program to Find the factorial of a Number using Recursive Function.
Factorial, in mathematics, the product of all positive integers less than or equal to a given positive integer and denoted by that...
The Tech Platform
Apr 5, 2021
Arrays vs Lists in C#
Arrays and lists are the most used data structures in C# programming language. Both of them store data like integer, string, instances of...
The Tech Platform
Apr 1, 2021
Write a PHP program to print the Alphabet Triangle Pattern.
Some different alphabet triangle patterns using range() function in PHP are shown below. Pattern 1 <?php $alpha = range('A', 'Z');...
The Tech Platform
Mar 29, 2021
Pure functions in C++
Declare a function to be side-effect free. C++ is not a functional programming language. Functions causing side-effects are the norm with...
bottom of page