CodeSteps

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

Microsoft Word 2013 – How to change Capitalization?

Microsoft Word provides a feature that allows us to change the Capitalization of selected Text. It allows you to change the selected text case to lowercase, or uppercase, capitalize each word, etc. Through this article, we are going to discuss how to change Capitalization in Word. Step 1. Open the Word document using Microsoft Word […]

Electron JS – An Introduction

Electron is an Open Source framework used to develop User Interface Applications. It is one of the main GUI frameworks; with web technologies like JavaScript, HTML, and CSS to develop Desktop GUI Applications. Using Electron we can develop cross-platform Applications; which means we can run these applications on Windows, Mac, and Linux Operating Systems. Electron […]

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 ‘++’ […]

Scroll to top