Interns Road Map - Checked
Interns Road Map - Checked
• Variables:
• Variant 1: Declare and initialize variables of different data types (String,
Int, Float) and print their values.
• Variant 2: Perform arithmetic operations on integer and float variables
and print the results.
• Variant 3: Create a program that takes user input for name, age, and
GPA and displays them.
Variant 4: Create a program that swaps the values of two variables of
different data types (e.g., int and float). Variant 5: Implement a
program that calculates the area of a rectangle using length and width
as user inputs. Variant 6: Develop a program that converts temperature
from Celsius to Fahrenheit and vice versa using user input.
• Arrays:
• Variant 1: Declare an array of integers, initialize it with values, and print
each element.
• Variant 2: Write a program to find the sum of all elements in an array.
Variant 3: Create an array of strings containing names of cities and
search for a specific city entered by the user.
• Variant 4: Write a program to find the largest and smallest elements in
an array of integers.
• Variant 5: Implement a program that calculates the average of all
elements in an array of floats.
• Variant 1: Define and call a simple unit function that prints a message.
• Variant 2: Create a program that handles exceptions using Kotlin's try,
catch, and finally blocks.
• Variant 3: Use the with function to perform a series of operations on an
object without repeating its name.
• Variant 4: Create a program that demonstrates the usage of extension
functions to add new functionality to existing classes.
• Variant 5: Develop a program that applies a lambda function to each
element of a list and returns the modified list.
Intermediate Level: