In Python Language:
Question 1: Write a program that prints the numbers from 1 to 100, but for multiples of three print "Bucks" instead of the number and for the multiples of five prints "Fizz". For numbers which are multiples of both three and five print "BucksFizz".
Question 2: Given 3 positive integer lengths to represent the sides of a triangle write a program that will determine the type of triangle: equilateral, isosceles , irregular or impossible.