top of page
Search

Introduction to Channels in .NET
What are Channels? Channel is a concept for passing data between producers and consumers. More specifically, a channel has a queue where...
The Tech Platform
Aug 10, 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

C# Classes and Objects
A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the fields and...
The Tech Platform
Aug 10, 2022

Tips for writing Clean C# Code
Clean code is the art of writing the code that humans can understand easily. Writing code is not easy task, but when it comes to writing...
The Tech Platform
Aug 8, 2022

Compiler: Definition, Architecture, Advantages and Disadvantages
The Compiler is a computer program that translate the high-level language (source code) into a computer-readable format known as...
The Tech Platform
Aug 2, 2022

How to Format Response Data in ASP.NET Core
In web development, the transmission of data between a server and a client is a fundamental aspect. Response data, representing the...
The Tech Platform
Aug 2, 2022

Mapped Types in TypeScript
Mapped types allow you to create new types from existing ones by mapping over property types. Each property of the existing type is...
The Tech Platform
Aug 1, 2022

Different ways to get the sum of arrays in JavaScript?
In JavaScript, array is a single variable that is used to store different elements. It is often used when we want to store list of...
The Tech Platform
Jul 29, 2022

map() vs filter() vs reduce() in JavaScript.
Map, reduce, and filter are all array methods in JavaScript. Each one will iterate over an array and perform a transformation or...
The Tech Platform
Jul 28, 2022

Program to make Calculator in Python
Create a simple calculator which can perform basic arithmetic operations like addition, subtraction, multiplication, or division...
The Tech Platform
Jul 28, 2022
bottom of page