Java basic stuffs 🥷

Date : 07-April-2025Java Basic things:In Java only two types of symbols cam end the block of code or puttig end to the statement.One is -> ; anothher one is -> { }These are the two types of way ...
0 Read More

React Fundamentals

React Basics You Should Know Let's begin with understanding how to create elements in React using the React.createElement method.As we can see in the example below, the element nested is esse...
0 Read More

How to Fix #VALUE! Excel Error?

How to Fix #VALUE! Excel Error?
What is #VALUE! Error in ExcelThe #VALUE! is also the most commonly occuring Excel Error. This issue occurs when an user provide the wrong type of input data while using Excel Functions or Excel Formu...
0 Read More

How to Use Excel DAYS Function?

How to Use Excel DAYS Function?
Excel DAYS Function Example DAYS Function: A Brief DAYS function in Excel is used to calculate the number of days between two dates. If you have a start date in cell A1 and an end date in cell...
0 Read More

Classes and Objects in Java

Lets discuss about class and object.Class: A class is a blueprint or template from which objects are created. Class is Not a Real-World Entity. Class Does Not Occupy Memory...
0 Read More

R Programming basics

R Programming basics
Quick notes on R Datatypestypeof(x) or class(x)– both returns the data type of variable. however, typeof(x) is tend to be more specific ⛶x<-23.5 print(class(x)) >>>Numeric pr...
0 Read More

Funtion in Python

A functions is a named block of code that does something when you call it. Think of it like mini-program inside your main program. Why use functioning? To avoid repeating the same code To org...
0 Read More