2019년 10월 22일 화요일

[Platform-based Programming] JavaFX Installation Guide

1. Install e(fx)clipse using the install new software menu under the eclispe help menu
(Please refer to the following screen shot.
Just click the image to to get enlarged image)





















2. Run the following codes to check out your installation

import javafx.application.*;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;

public class MyJavaFx extends Application{
@Override
public void start(Stage primaryStage) throws Exception {
Button btOK = new Button("OK");
Scene scene = new Scene(btOK, 200, 500);
primaryStage.setTitle("MyJavaFX");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
Application.launch(args);
}
}

You can see the following Java GUI application
(Please refer to the following screen shot)





















2019년 10월 21일 월요일

[Computer Networks] Topics covered by the midterm exam

The midterm exam will cover topics discussed on the first day of classes through Oct. 17.


Keep up with your study~



2019년 10월 20일 일요일

[Platform-based Programming] Topics covered by the midterm exam

Questions on the midterm exam can potentially cover topics that we've covered in the class so far including polymorphism, inheritance,  abstract, and interface discussed on Oct. 17.

First, analyze and practice the source codes discussed in the class.
Second, modify or change them with your creative ideas to check out what happens to them.
(For example, type cast between base and derived classes)

Keep up with your study!!



2019년 10월 18일 금요일

[Probability Midterm Exam] Topics covered by the midterm exam

The midterm exam will cover pp. 11 through pp.95 in the textbook.
Questions on the midterm exam can potentially cover examples in the class discussions)

Keep up with your study~

(교재 예제와 홀수 번호 연습 문제를 풀어 봅니다. 답은 교재 Appendix B에 있습니다.)


2019년 10월 14일 월요일

[Probability] You cannot use a calculator while you are taking the midterm exam!!

Do not use your smart devices, including a calculator!!


[Midterm exam] Midterm exam on Oct. 29 (Tuesday)

Midterm exams (Written exams)  will be conducted on October 28.
They will be taken at the same classroom during the same class hour.

[Notice]

1. Topics and review lists for the coming up midterm exam will be posted next week!!

2. Platform-based program exam will be a kind of a written exam. (It's not a lab programming test)


2019년 10월 9일 수요일

[Platform HW4] Modified on Oct. 10 (Due: Oct. 24)

HW4 (points 20)

[Notice]
- In your homework solution, you must describe the class hierarchy.
- Use polymorphism and super() or super.???() methods, and static variables  in your programming.

- Type your homework using the MS-Word. (Otherwise, you will get ZERO points)


Please submit your HW to the report box in front of NC Lab, where located at office #318,자연대연구실험동 (c-26).Due Date:by 7:00 pm (or much earlier is possible). 






[Homework# 3] Due: Oct. 17

Homework# 3 (10 points per each sub-problem: HW#3-1, HW#3-2, HW#3-3, HW#3-4)

Type your homework using the MS-Word or HWP in English. (워드 프로세서를 이용하여 영어로 작성하시오)

Please submit your HW to the report box in front of NC Lab, where located at office #318,자연대연구실험동 (c-26).Due Date:by 7:00 pm (or much earlier is possible).