Assignment 1 Slides Type Casting
Assignment 1 Slides Type Casting
Type Casting
Attention.
Before doing the activities About Type Casting Activities
today, watch the video on the
next side (Video also available Work through the following activities during
Saturday Session in Manzini – April 26, 2025.
in this module page).
You can work alone or in groups of 2 or three
Please watch the video again students as you study and do examples.
after doing all activities here.
However, every student submit his or her own work.
byte -> short -> char -> int -> long ->
}
Try it Yourself ! Write the program in Example 2
and submit it as part of Assignment 1.
Java
Real-Life Example
Type Casting
Here's a real-life example of
type casting where we create a Try it Yourself ! Write the program in Exercise 1
program to calculate the and submit it as part of Assignment 1.
percentage of a user's score in In this activity …
relation to the maximum score
in a game.
Exercise 1 We use type casting to make sure that the
result is a floating-point value, rather
than an integer:
Real-Life Example
// Set the maximum possible score in the game to 500
int maxScore = 500;