Code
Event Handling in C#, Python and C | Example Explained
Events handling is the most important "code construction" enabling the individual parts/modules of a program (application) to communicate among themselves. Do we need such...
Program to Remove All Duplicates Chars from a given String in Python
Problem Statement: You have given a string. You need to remove all the duplicates from the string. The final output string should contain each character only once. The...
Program to Check if the Given Number is Power of 3 (K) | Python, C/C++
Problem statement: Write a Python, C/C++ program to check if the given number is the power of 3 (k- any other integer number). Example: The numbers which are the power of...
[Solved] Find Remainder without using Modulus Operator in Python, C and Java?
The remainder is the value remains after dividing one number by another number. Example 1: Number: 8 Divisor: 3 Reminder: 2 Example 2: Number: 33 Divisor: 4 Reminder:...
Nested Switch Statements in C Programming with Real Life Example
Nested Switch Statements occurs when a switch statement is defined inside another switch statement. The first switch is referred to as an outer switch statement whereas the inside...
61 Interview Coding Questions for Practice and Master Programming
You can not master any of the programming languages without Practice. The common thing that I see among all the expert programmers- they do Practice. Lots of Practice. Practice...
Python yield vs return Explained in Detail with Examples
In the morning, I had a discussion with one of my colleagues and usually, it happens at coffee. And I asked him, "for my project, I need a function that returns series of...
Java Program Basic | Hello World Program Explained for Beginners
Since we are thorough with the basics of Java now, it is time that we create our first Java program. Yes, we’ll create the conventional Hello World program first to see how...
Compilation and Execution of C Program | Hello World Program in C
C is one of the basic languages fo a beginner. It is invented by Dennis Ritchie. In this article, you are going to write your first program. You will be educated with the...