1.
Write a function that
returns the largest element in a list.
2.
Write a function that
checks whether an element occurs in a list.
3.
Write a function that
tests whether a string is a palindrome.
4.
Given two arrays,
1,2,3,4,5 and 2,3,1,0,5 find which number is not present in the second array.
5.
Find second highest
number in an integer array.
6.
Remove duplicate
elements from array.
7.
Write code to implement
Bubble Sort.
8.
Write a guessing game
where the user has to guess a secret number. After every guess the program
tells the user whether their number was too large or too small. At the end the
number of tries needed should be printed. i counts only as one try if they
input the same number multiple times consecutively.
9.
Write a function that computes the sum of three numbers: using
recursion.
10.
Write a program which
print the table of the given number.