· This Assignment must be submitted on Blackboard (WORD format only) via the allocated folder. · Email submission will not be accepted. · You are advised to make your work clear and well-presented, ma

· This Assignment must be submitted on Blackboard (WORD format only) via the allocated folder. · Email submission will not be accepted. · You are advised to make your work clear and well-presented, ma 1

College of Computing and Informatics

Assignment 1

Deadline: Saturday 05/10/2019 @23:59

[Total Mark for this Assignment is 5]

Computer Programming I

CS140



Student Details:

Name: ###


CRN: ###

ID: ###


Question One

Marks: 3

Learning Outcome(s):

LO4: Develop a program based on specification using programming language elements including syntax, data types, conditional statement, control structures, procedures and arrays.

Create a java program for Student profile with the following requirements.

  1. Each Student has: two variables id, and name.

  2. A Student can be initialization with two constructers:

  • Constructer without parameters, that set the id to zero and the name to an empty string.

  • Constructer with tow parameters to initialize the variables id and name by a specific value.

  1. Add a set method for each variable that change them to a specific value.

  2. Add a get method for each variable which return its value.


To test the program, create a class StudentTest with the main method.

In the main method:

  1. Create two empty Student profiles S1 and S2.

  2. Print the S1 and S2 information.

  3. Create a new student profile S3, specify the student id and name.

  4. Change S3 id and name.

  5. Print the id and name of S3.

Answer:

Question Two

Marks 1

Learning Outcome(s):

Learning Outcome(s):

LO1: Explain the basic principles of programming, concept of language. Universal constructs of programming languages.

For each of the code fragment or declarations in the first column, please state whether the code fragment is correct or incorrect. In case it is incorrect, please provide the correct code in the appropriate cell.

Code fragment

Correct or Incorrect ?

If incorrect, rewrite the correct code

char x=A



int z = 20,000;



double weight = “65”;



public class Count

{

public Count()

{

// body--filled in here

}

// body--filled in here

}




long 1student=123456;



boolean static = true;



Import java.String.Rectangle



public int void deposit(double amount)

{ . . . }



Question Three

Marks 1

Learning Outcome(s):

LO2: Design algorithms using pseudo-code, flowcharts, and structured charts.

A. Write an algorithm in pseudocode to convert temperature from Fahrenheit to Celsius?

Answer:

B. Give an example for compile-time and run-time errors?

Answer: