CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

PowerShell – Understanding the While loops

PowerShell provides loops to execute the sequence of statements repeatedly. These loops executes the block of statements within it, till a given condition is satisfied. Through this article, we go through while loop and do loops; do…while and do…until loops. While loop PowerShell While loop is to execute the statements within it continuously, if the […]

Microsoft Excel – DATE functions

DATE function and related functions are important functions to deal with date-related data in Excel. DATE function This function returns the date by taking individual date components (year, month & day) as its arguments. Using DATE function we can form the date-time code using the individual date components. Syntax: DATE(year, month, day) DATE function is […]

PowerShell – How to use Equality operators?

PowerShell equality operators are used to compare values. These operators compare the values and return either True or False; when the given condition matches. PowerShell provides below equality operators; as these are used for comparison, we can call them Comparison operators. PowerShell Equality operators All these equality operators takes 2 or more operands and compare […]

PowerShell – Bitwise Shift Operators

PowerShell offers bitwise shift operators too. We have discussed about “PowerShell – Bitwise Logical Operators” in our previous article. Through this article, we are going to discuss about bitwise shift operators. Shift left -shl operator PowerShell left shift operator shifts the bits left side. This operator takes two operands and left shifts the bits from […]

Python – Modules – A quick walkthrough

When we write a Python program and save that program into a file, that file we can call it as a Module. A module in Python is nothing but a group of statements and definitions, saved into a file. Each module has a purpose. Each module contains group of definitions or functions and statements, exported […]

PowerShell – Unary operators

Unary operators work on a single operand. PowerShell provides unary operators and through this article, we are going to discuss them. The ++ operator – Post & pre-increment operator The unary operator ‘++’ will increment the value of the operand by 1. It has two forms, post & pre-increment forms. When the unary operator ‘++’ […]

PowerShell – Bitwise Logical Operators

PowerShell provides below list of Bitwise operators and these ONLY works on Integer types. Why only Integer types? Because, these operators works on bits (0s and 1s) and only numeric types can support bitwise operations. Bitwise AND -band operator This operator takes two operands as inputs and apply the bitwise AND operation on each bit […]

PowerShell – Assignment operators

Basic Assignment operator, equal (=) sign is used to assign a value from right side value to it’s left side operand. PowerShell provides more such operators to assign the values from r-value to l-value. We are going to discuss about these operators through this Article. Most important thing you need to remember is, all these […]

PowerShell – Arithemetic Operators

PowerShell provides different types of operators and through this article, we are going to discuss about Arithmetic Operators. Arithmetic Operators are used to compute numerical values. Before stating this article, would like to emphasis on one thing; that is, PowerShell is built on .Net Core; internally it uses .Net Core classes. We need to understand […]

Scroll to top