0% found this document useful (0 votes)
15 views1 page

1st Day Problem

The document outlines a series of programming tasks that include printing 'Hello World!', performing arithmetic operations, checking number properties, and determining grades based on percentage scores. Each task is designed to practice fundamental programming concepts such as input/output, conditionals, and variable manipulation. The tasks range from basic to slightly more complex, suitable for beginners learning to code.

Uploaded by

saifhowlader7243
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

1st Day Problem

The document outlines a series of programming tasks that include printing 'Hello World!', performing arithmetic operations, checking number properties, and determining grades based on percentage scores. Each task is designed to practice fundamental programming concepts such as input/output, conditionals, and variable manipulation. The tasks range from basic to slightly more complex, suitable for beginners learning to code.

Uploaded by

saifhowlader7243
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

1. Write a Program to Print "Hello World!" .

2. Write a Program to find the Sum of two numbers where a = 5 & b = 1.23 .

3. Write a Program to find the Sum of two numbers entered by the user.

4. Write a Program to Swap the values of two variables.

5. Write a Program to find the size of int, float, double, and char.

6. Write a Program to check if the given number is Even or Odd.

7. Write a Program to find the largest number among three numbers.

8. Write a program to check if a number is posi ve, nega ve, or zero.

9. Write a program that checks if a number is divisible by both 3 and 5.

10. Write a program that takes a percentage score as input and outputs the grade:

 90-100: A
 80-89: B
 70-79: C
 60-69: D
 Below 60: F

You might also like