CodeSteps

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

Node.js – Errors – How do we handle errors (Error handling)?

Errors occur when something went wrong, during the Program execution. There are different types of errors and these should be handled properly in the program to avoid abnormal program termination. Node.js provides different ways to handle the errors generated while running the Applications in the Node.js run-time environment. We can handle the errors using try..catch […]

C# – Asynchronous programming – async and await

Modern applications often require handling multiple operations simultaneously to ensure smooth user experiences. Whether you are making API calls, performing file I/O, or executing database queries, synchronous execution can lead to performance bottlenecks and unresponsive applications. Usually, when we run the C# code, each statement executes synchronously; that means, one after another statement, executes sequentially. […]

Windows 7 – How to check what Graphics card installed in the System?

Graphics cards are used to display the output and also can perform additional processing for better performance to release the overload from the CPU (Central Processing Unit). Actually, the GPU (Graphic Processing Unit) on Graphics card will perform the additional processing. Through this article, we are going to discuss finding the ways to figure out, […]

Scroll to top