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

MakeCodeEasy Scholarship Test Patterns

The document outlines a scholarship test for MakeCodeEasy, consisting of six programming tasks. These tasks include printing various patterns, checking for prime numbers, summing digits, counting even digits, and generating a sequence of prime numbers. Each task requires the implementation of specific algorithms and outputs based on user input.

Uploaded by

Snigdho Mondal
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)
4 views1 page

MakeCodeEasy Scholarship Test Patterns

The document outlines a scholarship test for MakeCodeEasy, consisting of six programming tasks. These tasks include printing various patterns, checking for prime numbers, summing digits, counting even digits, and generating a sequence of prime numbers. Each task requires the implementation of specific algorithms and outputs based on user input.

Uploaded by

Snigdho Mondal
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

MakeCodeEasy

Scholarship Test

1.​ Print the following pattern upto N-lines.


1
12
123
1234
12345

2.​ Enter a number and check whether it is a prime number or not.


3.​ Enter a number and print the sum of its digits.
4.​ Print the following pattern upto N-lines.
*
**
***​
****
*****
5.​ Enter a number & count the number of even digits in it.
6.​ Print the following pattern upto N-lines.
2
2 3
2 3 5
2 3 5 7
2 3 5 7 11

You might also like