Data Types Quiz
Part A: Predict what the variables k and z would equal in the program shown below. Show all floating point results to two decimal places.
/15 Marks
int i, j, k;
double x, y, z;
i = 5;
j = 7;
x = 5.0;
y = 7.0;
/15 Marks
/*
*Created: C. Whittington
*Date: Oct. 29 2003
*Purpose: This is a file used to test student's understanding of
* data types in java. Students are asked what the output
* of the program will be.
*/
import java.awt.*;
import java.awt.event.*;
class DataTypesQuiz
{
public static void main(String args[])
{System.out.println("Starting Data Types...");
boolean bool=true;
char char1='a';
int int1=13;
double double1=4.5;
String str1 = new String ("abcdefg");//System.out.println (bool+(char*5));
System.out.println (bool+"\n"+char1);
System.out.println (int1+"\n"+double1+"\n"+str1);bool = !true;
char1 = 'q';
System.out.println (char1+"\n");
char1++;
char1++;
int1 = int1 + int1 *10;double1 = int1 / 2;
System.out.println ("Changed Values");
System.out.println (bool+"\n"+char1);
str1 = str1 + (++char1);
System.out.println (int1 + double1+"\n"+str1);
System.out.println (int1+"\n"+double1);
System.out.println ("The End.");}
}
©2003 C. Whittington