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

Suggested Reading Material

The document outlines various programming tasks including finding the largest and smallest numbers, generating patterns using nested loops, and calculating sums of different series. It also includes tasks for determining number properties (perfect, Armstrong, prime), displaying Fibonacci series, and manipulating strings and lists. Additionally, it suggests reading materials for further study in computer science.

Uploaded by

Kajal Singh
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)
8 views1 page

Suggested Reading Material

The document outlines various programming tasks including finding the largest and smallest numbers, generating patterns using nested loops, and calculating sums of different series. It also includes tasks for determining number properties (perfect, Armstrong, prime), displaying Fibonacci series, and manipulating strings and lists. Additionally, it suggests reading materials for further study in computer science.

Uploaded by

Kajal Singh
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

● Input three numbers and display the largest / smallest number.

● Generate the following patterns using nested loops:

Pattern-1 Pattern-2 Pattern-3

* 12345 A
** 1234 AB
*** 123 ABC
**** 12 ABCD
***** 1 ABCDE

● Write a program to input the value of x and n and print the sum of the following series:
⮚ 1 + 𝑥 + 𝑥2 + 𝑥3 + 𝑥4 + ⋯ 𝑥𝑛
⮚ 1 − 𝑥 + 𝑥2 − 𝑥3 + 𝑥4 − ⋯ 𝑥𝑛
𝑥2 𝑥3 𝑥4 𝑥𝑛
⮚ 𝑥+ + + +⋯
2 3 4 𝑛
𝑥2 𝑥3 𝑥4 𝑥𝑛
⮚ 𝑥+ + + +⋯
2! 3! 4! 𝑛!

● Determine whether a number is a perfect number, an Armstrong number or a palindrome.


● Input a number and check if the number is a prime or composite number.
● Display the terms of a Fibonacci series.
● Compute the greatest common divisor and least common multiple of two integers.
● Count and display the number of vowels, consonants, uppercase, lowercase characters in
string.
● Input a string and determine whether it is a palindrome or not; convert the case of characters
in a string.
● Find the largest/smallest number in a list/tuple
● Input a list of numbers and swap elements at the even location with the elements at the odd
location.
● Input a list/tuple of elements, search for a given element in the list/tuple.
● Create a dictionary with the roll number, name and marks of n students in a class and display
the names of students who have marks above 75.

6. Suggested Reading Material

● NCERT Textbook for Computer Science (Class XI)

● Support Material on CBSE website

You might also like