top of page
Search
The Tech Platform
Mar 3, 2021
The latest features of CSS
CSS is growing in scope and power with each passing year. It’s a great time to be a web developer, but it can be challenging to stay...
The Tech Platform
Mar 2, 2021
Python Decorators Explained
If you’ve spent even a little bit of time using common Python frameworks, such as Flask, you’ve undoubtedly seen decorators in use. These...
The Tech Platform
Feb 24, 2021
How to use the wait() and notify() methods in Java?
When should you use the wait() and notify method in Java is one of the many popular questions about the wait and notify methods from Java...
The Tech Platform
Feb 22, 2021
Program for 3 Different ways to calculate factorial in C#
Factorial of a number is obtained from the result of multiplying a series of descending natural numbers. This C# Program generates...
The Tech Platform
Feb 22, 2021
Program to Remove Duplicate characters from String in C#
The string may have two or more same characters in it but we want it to have only one. So let’s look at an example to understand it...
The Tech Platform
Feb 12, 2021
What are three dots (...Spread Syntax) in Javascript?
JavaScript is a versatile programming language that constantly evolves to offer new features and enhancements. One such addition in...
The Tech Platform
Feb 2, 2021
What is Variable and Method Hiding in Java?
If you are not careful in Java, you may inadvertently hide the methods and variables of the superclass. It is important to understand...
The Tech Platform
Feb 2, 2021
Difference between Abstraction and Encapsulation in Java
Java is an object-oriented programming language and it follows OOPs concepts. The OOPs concepts include classes, objects, polymorphism,...
The Tech Platform
Feb 1, 2021
Difference between a List and ArrayList Reference Variable in Java
Someone who is just starting with Java programming language often has doubt about how we are storing an ArrayList object in List...
The Tech Platform
Feb 1, 2021
java.util.Stream to Array and ArrayList in Java 8
It's relatively easy to convert a Stream to an array in Java 8 by using the toArray() method of java.util.Stream class. By using this...
bottom of page