π Open to Work π
Looking for opportunities as a Software Developer | Full-Stack | Frontend | Backend Developer.
Excited to contribute, learn & build impactful products!
Letβs connect π€
#opentowork#hiring#SoftwareDeveloper#TechJobs
Below is my Resumeπ
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print a hollow square star pattern with diagonals.
Input :
Enter number of rows: 5
Output :
*****
** **
* * *
** **
*****
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print a hollow square star(*) pattern series of N rows.
Input :
n=5
Output :
*****
* *
* *
* *
*****
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print a square star(*) pattern series of N rows.
Input:
n= 5
Output:
*****
*****
*****
*****
*****
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print all strong numbers between 1 to n where n is the input given by the user.
Input
n=1000
Output
1, 2, 145
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to input a number from the user and check whether the given number is a strong number or not.
Input:
n= 145
Output:
145 is STRONG NUMBER
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to find all Perfect numbers between 1 to n where n is the input given by the user.
Input:
n=100
Output:
Perfect numbers between 1 to 100: 6, 28
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to input a number and check whether the number is a Perfect number or not.
Input :
Input a number: 6
Output :
6 is PERFECT NUMBER
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print all Armstrong numbers between 1 to n where n is the input given by the user.
Input:
n= 1000
Output:
1, 2, 3, 4, 5, 6, 7, 8, 9, 370, 371, 407
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to input a number from the user and check whether the given number is an Armstrong number or not.
Input
Enter the number: 371
Output
371 is armstrong number
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to input two numbers from the user and find HCF ( also called as GCD (Greatest Common Divisor)).
Input:-
num1: 12
num2: 30
Output:-
GCD is 6
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to input a number from user and find Prime factors of the given number.
Input:
num = 10
Output:
Prime factors of 10: 2, 5
#100DaysOfCode#CodingJourney#dream#letsconnect
Control Flow Question:-
Write a program to print all Prime numbers between 1 to n.
Input:
end = 20
Output:
Prime numbers between 1-20: 2, 3, 5, 7, 13, 17, 19