CodeSteps

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

C# – Access Modifiers

Access Modifiers – C# or access specifiers are used to define the scope of the class or its members defined in the class. That means, it restricts to access the classes and their members within the defined scope only; outside the scope, the classes or their’ members cannot be accessed. ‘C#’ provides the following access […]

C# – Graphics – Display an Image

Graphics is the class primarily used to display graphics in .Net based Windows Applications. .Net provides, multiple classes to deal with graphics objects/shapes; pen, brush, rectangle, circle, etc,. In this article, I am going to explain, how to display an image using C# code. I have used Graphics and Image .Net classes in my program […]

Data Science – Overview

In simple terms, Data Science means, we apply Science to Data. What science do we Apply, to the Data? Lets’ look into details: first, we start with what is Data. What is Data? Data is the collection of details; it may be financial details, human genome details, weather details, personal details, internet traffic details, the […]

Python – Simple and Compound Statements

We write code blocks in Python and each code block contains sequence of statements. We classified these statements as simple and compound statements. Python program contains collection of these statements; assignments, expressions, computations, functions, loops etc.,. In this Article, I am going to explain; Simple and Compound statements in Python. Simple Statements The statements which […]

PowerShell – Managing Services

Service is a program that runs in the background; and we can start, stop or pause/resume the service depending on the need or requirement. PowerShell provides commands, to manage the services.  I am going to explain, how to manage the services through this Article “PowerShell – Managing Services”. Display List of Services: Get-Service cmdlet PowerShell […]

Scroll to top