Skip to content

kishanrajput23/Beginner-Coding-Sheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beginner's Coding Sheet🔥

👉This Coding Sheet is provided by SIDDHARTH SINGH on his YouTube Channel.

image

Here are the set of problems with its respective solutions👇

📌Basics Problems

Problem Statement Python Solution CPP Solution Java Solution
🔸 1. Write a Program to print "Hello, World!" Solution 1 Solution 1 Solution 1
🔸 2. Write a Program to Print Integer Number Entered by User Solution 2 Solution 2 Solution 2
🔸 3. Write a Program to Add Two Integer Numbers Entered by User Solution 3 Solution 3 Solution 3
🔸 4. Write a program where the user is asked to enter two integers (divisor and dividend) and the quotient and the remainder of their division is computed.(Both divisor and dividend should be integers.) Solution 4 Solution 4 Solution 4
🔸 5. Write a Program to Find Size of int, float, double and char in your computer Solution 5 Solution 5 Solution 5
🔸 6. Write a Program to Swap Two Numbers Solution 6 Solution 6 Solution 6
🔸 7. Write a Program to Find ASCII Value of a Character Solution 7 Solution 7 Solution 7
🔸 8. Write a Program to Multiply two decimal Numbers entered by User Solution 8 Solution 8 Solution 8

📌If-Else

Problem Statement Python Solution CPP Solution Java Solution
🔸 1. Write a Program to Check Whether Number is Even or Odd Solution 1 Solution 1 Solution 1
🔸 2. Write a Program to Check Whether a Character is Vowel or Consonant Solution 2 Solution 2 Solution 2
🔸 3. Write a Program to Find Largest Number Among Three Numbers entered by users Solution 3 Solution 3 Solution 3
🔸 4. Write a Program which accepts coefficients of a quadratic equation from the user and displays the roots (both real and complex roots depending upon the discriminant) Solution 4 Solution 4 Solution 4
🔸 5. Write a Program to Check whether a year entered by user is Leap Year or not Solution 5 Solution 5 Solution 5