Enter temperature in Celsius:

Enter temperature in Fahrenheit:

Create a variable using a user-defined name

Get the extension of a filename

Difference between a given number and 13, if the number is greater than 13 return double the absolute difference.

compute the sum of the two given integers. If the two values are same, then returns triple their sum.
Enter first number:
Enter second number:

Compute the absolute difference between a specified number and 19. Returns triple their absolute difference if the specified number is greater than 19.
Enter number:

Check two given numbers and return true if one of the number is 50 or if their sum is 50.
Enter first number:
Enter second number:

Check a given integer is within 20 of 100 or 400.
Enter number:

Check from two given integers, if one is positive and one is negative.
Enter first number:
Enter second number:

Create a new string adding "Py" in front of a given string. If the given string begins with "Py" then return the original string.
Enter string:

Remove a character at the specified position of a given string and return the new string.
Enter string:
Enter position of Char to be removed:

Create a new string from a given string changing the position of first and last characters. The string length must be greater than or equal to 1.
Enter string:

Create a new string from a given string with the first character of the given string added at the front and back.
Enter string:

Check if a given positive number is a multiple of 3 or a multiple of 7.
Enter number:

Create a new string from a given string taking the last 3 characters and added at both the front and back. The string length must be 3 or more.
Enter string:

Check if a string starts with 'Java' and false otherwise.
Enter string:

Check if two given integer values are in the range 50..99 (inclusive). Return true if either of them are in the said range.
Enter first num:

Enter second num:


Check if three given integer values are in the range 50..99 (inclusive). Return true if one or more of them are in the said range.
Enter first num:

Enter second num:

Enter third num: No3