• Largest of 3 numbers
• Sum of digits of a number
• Reverse of a number
• Palindrome number
• Armstrong number
• Fibonacci Series upto nth term
• Factorial of a number
• Factors of a number
• Prime Number
• Perfect Square
• Function call by value
• Function call by reference
⭐ ARRAYS / SLICES ⭐
• Defining arrays
• Defining slices
• Replace element in slice
• Sum of all elements in slice (Passing slices to functions)
• Largest and smallest element in slice
• 2nd Largest element in slice
• Reverse a slice
• Sorting a slice
• Frequency of elements in slice
⭐ STRINGS ⭐
• Defining strings and basic string case manipulation
• Counting the number of vowels
• Printing string in reverse
• Check if a given string is palindrome
• Count the sum of numbers in a string
• Check if 2 strings are anagram or not
⭐ PATTERNS ⭐
• Square pattern -
* * * *
* * * *
* * * *
* * * *
• Hollow Square pattern -
* * * *
* *
* *
* * * *