Solid Right Angled Triangle - 2
This Program name is Solid Right Angled Triangle - 2. Write a Python program to Solid Right Angled Triangle - 2, it has two test cases
The below link contains Solid Right Angled Triangle - 2 question, explanation and test cases
https://drive.google.com/file/d/1FoDyc8wQxsu918bAHA-Va4WSfPZTSZ9e/view?usp=sharing
We need exact output when the code was run
Right Angled Triangle - 3
This Program name is Right Angled Triangle - 3. Write a Python program to Right Angled Triangle - 3, it has two test cases
The below link contains Leap Year question, explanation and test cases
https://drive.google.com/file/d/1gSyv9i4BdnUeFcZrVWRneMTROebbSYOL/view?usp=sharing
We need exact output when the code was run
Hollow Right Triangle - 2
This Program name is Hollow Right Triangle - 2. Write a Python program to Hollow Right Triangle - 2, it has two test cases
The below link contains Hollow Right Triangle - 2 question, explanation and test cases
https://drive.google.com/file/d/1PZVCzgVyE2aBXnfrJWYXpUtAdeK_TkqD/view?usp=sharing
We need exact output when the code was run
Hollow Right Triangle
This Program name is Hollow Right Triangle. Write a Python program to Hollow Right Triangle, it has two test cases
The below link contains Hollow Right Triangle question, explanation and test cases
https://drive.google.com/file/d/1L2C5_Riggm3d_0ehaWeXsouPKlGyW-hb/view?usp=sharing
We need exact output when the code was run
Perfect Squares in a Range
This Program name is Perfect Squares in a Range. Write a Python program to Perfect Squares in a Range, it has two test cases
The below link contains Perfect Squares in a Range question, explanation and test cases
https://drive.google.com/file/d/1Eop1B9ddIWooAOyPsKrtt-1noUCRCSa4/view?usp=sharing
We need exact output when the code was run
Sum of 1 series
This Program name is Sum of 1 series. Write a Python program to Sum of 1 series, it has two test cases
The below link contains Sum of 1 series question, explanation and test cases
https://drive.google.com/file/d/1M5N-yqq2LYyV05d-ThnD_SQ59nm9b1Vb/view?usp=sharing
We need exact output when the code was run
Write a program to count Vowels and Consonants in string.
Day Name - 2
Given the weekday of the first day of the month, determine the day of the week of the given date in that month.
The first line is a string
The output should be a string.
In the given example,
D = Monday. As the 1st of the day of the month is a Monday, it means the 7th and 14th of the month will be Sundays (A week has 7 days). So the 16th day (N = 16) of the month will be a Tuesday.So, the output should be
Tuesday.
Denominations - 3
Write a program to find the minimum number of notes required for the amount
The first line is a single integer
Given
M = 1543, it can be written as1543 = 3*(500) + 3*(50) + 0*(10) + 1*(3)Then the output should be
500: 3 50: 0 10: 4 1: 3
Denominations - 4
Write a program to find the minimum number of notes required for the amount
The first line is a single integer
Given
M = 2257 Then 2257 can be written as
2000 * 1 + 500 * 0 + 200 * 1 + 50 * 1 + 20 * 0 + 5 * 1 + 2 * 1 + 1 * 0So the output should be
2000:1 500:0 200:1 50:1 20:0 5:1 2:1 1:0.