2017년 10월 31일 화요일

[Platform-based Programming: HW5] Due: Nov. 8 (Modified on Oct. 30)

HW5


Please submit your HW to the report box in front of NC Lab, where located at office #319, Building 313 by 7:00 pm (or much earlier is possible).


Don't copy soruce codes available by Googling into your homework!!

You will get ZERO!!

Modularize your source codes; At least 4 functions are required including main()


2017년 10월 20일 금요일

[Computer Networks] Homework 4 (Due: Nov. 17)

HW4

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

No more homew...... 🚫



[Java Lab Programming] Correct typos of programming practice on Oct. 19

private static boolean isPalindrome(String s, int low, int high) {

if (high <= low)
return true;
else if (s.charAt(low) != s.charAt(high))
return false;
else return isPalindrome(s, low + 1, high - 1);
}

2017년 10월 15일 일요일

[Platform-based Programming] Homework 4 (Due: Oct. 31)

HW4

Please submit your HW to the report box in front of NC Lab, where located at office #319, Building 313.
Due Date:by 7:00 pm (or much earlier is possible).


[Probability: Homework 4] Due: Oct. 23

HW4

HW4 Solutions

Please submit your HW to the report box in front of NC Lab, where located at office #319, Building 313.
Due Date:by 7:00 pm (or much earlier is possible).

[1] Type your homework using the MS-Word.
     Otherwise, you will get ZERO point when you submit your handwritten homework!!

[2] Don't copy solutions as itself posted in this page!! Do it for yourself with your idea and solutions posted as here!!



2017년 10월 9일 월요일

[Lecture Note #11: OOP] Java Thread States

Click

[Lecture Note #8: O-O Java] Network Programming Part 1 - Chat

Client

Server

Source


[Lecture Note #7: OOP] Chap 31 - Socket sample codes

Socket sample codes

[OOP - Lab #7-2] Recursion - Basics

Lab #7 - 2 Materials

[OOP - Lab #7] Basic Object Oriented Technique

Lab #7 - Materials

[OOP - Lab #5] Array

Lab #5 Materials

[Lecture Note #9: Computer Networks] How to measure network performance

Performance




[Lecture Note #8: Computer Networks] MPLS

MPLS


[Lecture Note #7: Computer Network] NAT and DNS

NAT

DNS



[Lecture Note #6: Computer Networks] TCP - UDP

TCP





[Lecture Note #5: Computer Networks] Internetworking

Internetworking - Part 1



[Lecture Note #4: Computer Networks] ARP

ARP protocol

Packet Delivery Procedure