MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

Size: px
Start display at page:

Download "MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR"

Transcription

1 STUDENT IDENTIFICATION NO MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR FIRST TRIMESTER FINAL EXAMINATION, 2013 SESSION PSD2133 INTRODUCTION TO PROGRAMMING 1 DSEW-E-F-1/13, DMTW-E-F-1/12 24 SEPTEMBER p.m 5.00 p.m (3 Hours) INSTRUCTION TO STUDENT 1. This Examination paper has TWENTY THREE (23) printed pages. 2. This question paper consists of FOUR (4) sections. Section A : Answer ALL questions. Section B : Answer ALL questions. Section C : Answer ALL questions. Section D : Answer ONE (1) questions ONLY. 3. Please write all your answers in the Answer Booklet provided.

2 SECTION A : OBJECTIVE QUESTIONS (20 MARKS) BAHAGIAN A : SOALAN OBJEKTIF (20 MARKAH) INSTRUCTION : Answer ALL questions. ARAHAN : Jawab SEMUA soalan. 1. Which of the following reasons are BEST to explain why we should produce good program? Antara sebab-sebab berikut manakah yang TERBAIK untuk menjelaskan mengapa kita perlu menghasilkan program yang baik? I. To make sure that the program is easy to understand Untuk memastikan program adalah mudah untuk difahami. II. It is easy for the programmer to do enhancement or maintenance Memudahkan pengaturcara untuk melakukan peningkatan atau penyenggaraan. III. To make sure that the program is running efficiently on any platform, Untuk memastikan bahawa program berjalan dengan cekap pada mana-mana platform. IV. To make sure that the program is not penetrated by the hackers. Untuk memastikan bahawa program itu tidak ditembusi oleh penggodam. A. I and II B. I, II and III C. I, II, III and IV D. None of the above SFCS Page 2 of 23

3 2. is a sequence of a finite number of steps arranged in a specific logical order which, when executed, produces the solution for a problem. adalah satu urutan langkah yang disusun dalam susunan logik yang tertentu, apabila dilaksanakan, menghasilkan penyelesaian bagi masalah. A. algorithm B. pseudocode C. flowchart D. program 3. The following diagram is a. Gambarajah yang berikut adalah. Begin Enter a number result = number + 2 Display the result End A. pseudocode B. flowchart C. data flow diagram D. algorithm. SFCS Page 3 of 23

4 4. Which of the following identifiers are VALID? Manakah antara berikut merupakan pengecam yang SAH? I. 100days II. III. IV. mysalaryinrm statename SalaryRM A. I and II B. II and III C. I, II and III D. All of the above 5. Given the following declarations of variable first and second as follow: Diberikan pengisytiharan bagi pembolehubah first dan second seperti berikut: int first = 20; int second = 23; second = second % first 5; The value of variables first and second after the above statement executed respectively are: Nilai bagi pembolehubah first dan second selepas pernyataan di atas dilaksanakan adalah: A. 20 and 23 B. 15 and -2 C. 20 and -2 D. 20 and 8 SFCS Page 4 of 23

5 6. Which of the following is NOT a reserved word in C? Manakah antara berikut BUKAN merupakan perkataan simpanan dalam C? A. int B. char C. tree D. double 7. What is the value of variable x after the following statement execute? Apakah nilai bagi pembolehubah x selepas pernyataan dibawah dilaksanakan? double n = 6.5, x; int m = 12; x = m % 5 + n; A. 8.5 B C. 8.9 D Suppose that age and day are int variables. Which of the following is a valid input statement? Andaikan bahawa age dan day adalah pembolehubah int. Antara berikut yang manakah adalah pernyataan input yang sah? A. scanf(age,day); B. scanf( %d%d, age, day); C. scanf( %d%d,&age,&day); D. printf( %d%d, age, day); SFCS Page 5 of 23

6 9. Given the following variables declaration and initialization: Diberikan pengisytiharan pembolehubah dan pengawalan berikut: int i = 3; int j = 13; int k = 30; int test = 0; What is the value of the following condition? Apakah nilai bagi keadaan di bawah? ( i!= j ) && ( ( ( i > 5) (j < 10)) && test ) A. 0 B. 1 C. 2 D. invalid expression 10. By using the variable declarations below, which of the following Boolean expressions is FALSE? Dengan menggunakan pengisytiharan pembolehubah di bawah, yang mana satu ungkapan Boolean berikut adalah SALAH? int y = 2, x = - 4, z = 300, w = 2; A. y > x &&!( y >= z ) B. z > 100 z < w C. (y * x + 100) < z D. (y == w && z > x)! (x < 10) SFCS Page 6 of 23

7 11. By default, C statements are executed, from top to bottom, in the order they appear in the program. What is this default control structure called? Secara umumnya, pernyataan C dilaksanakan dari atas ke bawah mengikut susunan yang terdapat didalam program. Apakah struktur kawalan awam ini dipanggil? A. conditional B. function call / return C. repetitive D. sequential 12. What is the output of the following C program segment? Apakah hasil paparan bagi segmen program C berikut? int x=5; int y=8; if(y == 8) if(x == 5) printf("testing l\n"); else { printf("testing 2\n"); printf("testing 3\n"); } printf("testing 4\n"); A. Testing 1 B. Testing 1 Testing 4 C. Testing 2 Testing 3 D. Testing 4 SFCS Page 7 of 23

8 13. What is the output for the following program segment? Apakah hasil paparan bagi program segmen yang berikut? int num = 24; if ( num % 2 == 0 ) printf( TWO ); if ( num % 3 == 0 ) printf( THREE ); if ( num % 4 == 0 ) printf( FOUR ); A. TWOTHREEFOUR B. FOUR C. THREE D. TWO 14. What is wrong with this for loop? Apakah yang salah bagi gegelung di bawah? for (int k = 2, k <=12, k++) A. the increment should always be ++k B. the variable must always be the letter i when using a for loop C. there should be a semicolon at the end of the statement D. the commas should be semicolons SFCS Page 8 of 23

9 15. How many times will the following loop be executed? Berapa kali gelung berikut akan dilaksanakan? int x = 3; int a = 12; while ( x <= a) { x += 4; a++; } A. 0 B. 2 C. 3 D The function prototype for function Example() is as given below: Prototaip fungsi bagi fungsi Example() adalah seperti yang diberikan di bawah: void Example (int x,int y,float z); Which of the following function call is VALID? Manakah antara panggilan fungsi berikut adalah SAH? A. Example(int x,int y,float z) ; B. Example( x, y, z) ; C. A = Example(int x,int y,float z); D. A = Example(x, y, z); SFCS Page 9 of 23

10 17. What is the return type of the following function prototype: Apakah jenis pulangan prototaip fungsi berikut: int function (char a, float v, double t); A. char B. int C. float D. double 18. Which of the following function prototypes with two integer parameters can be used for a void function named CalculateBalance? Manakah antara berikut prototaip fungsi dengan dua parameter integer yang boleh digunakan bagi fungsi void bernama CalculateBalance? A. void CalculateBalance (int); B. int CalculateBalance (void); C. void CalculateBalance (int, int); D. int CalculateBalance (int, int); 19. The items listed in the function header are called. Perkara yang disenaraikan dalam pengepala fungsi dipanggil. A. actual parameters B. formal parameters C. reference parameters D. value parameters SFCS Page 10 of 23

11 20. Which of the following can happen when the program has a logic error? Antara berikut yang manakah boleh berlaku apabila program ini mempunyai ralat logik? I. Compile and run normally. II. Compile incorrectly. III. Give incorrect output. IV. The program execution will crash. A. II only B. I and III C. I and IV D. II and IV SFCS Page 11 of 23

12 SECTION B : TRUE OR FALSE QUESTIONS (10 MARKS) BAHAGIAN B : SOALAN BETUL ATAU SALAH (10 MARKAH) INSTRUCTION : Answer ALL questions. ARAHAN : Jawab SEMUA soalan. 1. float and double variables are exactly the same. Those two variable declarations can be used interchangeably. float dan pembolehubah double adalah sama. Kedua-dua pengisytiharan pembolehubah boleh digunakan silih berganti. 2. Comments are instructions that cause some action to be implemented. Komen adalah arahan yang menyebabkan beberapa tindakan akan dilaksanakan. 3. A conditional expression is a question that will evaluate to either true or false. Ungkapan bersyarat adalah soalan yang akan menilai sama ada benar ataupun salah. 4. Function printf always begins printing at the beginning of a new line. Fungsi printf sentiasa memulakan cetakan pada permulaan baris yang baru. 5. The expression (x > y && a < b) is true if either x > y is true or a < b is true. Ungkapan (x > y && a < b) adalah benar jika sama ada x > y benar atau a < b adalah benar. SFCS Page 12 of 23

13 Please indicate whether the following logic equation is true or false if the value of a = 5, b = 10 and c = 15 included in the following equation: Sila nyatakan persamaan logik berikut sama ada benar atau salah jika nilai a = 5, b = 10, dan c = 15 dimasukkan ke dalam persamaan berikut: 6. c == a + b!c < a!= 7 && b <= 10 c >= 6 8.!(b <= 12) && a % 2 == 0 9.!(a > 5 c < a + b) 10.!a > 5 c < a + b SFCS Page 13 of 23

14 SECTION C : STRUCTURE QUESTIONS (50 MARKS) BAHAGIAN C : SOALAN STRUKTUR (50 MARKAH) INSTRUCTION : Answer ALL questions. ARAHAN : Jawab SEMUA soalan. Question / Soalan 1 a) Bagi setiap pengecam berikut, nyatakan sama ada ianya sah atau tidak sah? For each of the following identifiers, state whether they are legal or illegal? i. Last Minute ii. Int iii. _booksales iv. 3rdBirthday v. _Guest3 (5 marks / markah) b) Evaluate each the following C expression based on the following declarations: Nilaikan setiap ungkapan C berikut berdasarkan pengisytiharan berikut: const double pie = 3.142; int num = 3, m = 5; i. 3 * pie + num / m ii. 4 * num % m + pie iii. 1 - (num / 2) * 3 (3 marks / markah) SFCS Page 14 of 23

15 Question / Soalan 2 Fill in the blanks in each of the following: Isikan tempat kosong bagi setiap yang berikut: flowchart counter sentinel semicolon break void return main compound if..else counter-controlled pseudocode 1. Every C program begins execution at the function. Setiap program C mula dilaksanakan pada fungsi. 2. Every statement ends with a. Setiap pernyataan berakhir dengan. 3. is a graphical representation of an algorithm. adalah paparan grafik mengenai algoritma. 4. Several statements grouped together in braces ({ and }) are called a(n) statement. Beberapa pernyataan yang dikumpulkan bersama dalam pendakap ({ dan }) dipanggil pernyataan. 5. The selection statement is used to execute one action when a condition is true and another action when that condition is false. Pernyataan pilihan digunakan untuk melaksanakan satu tindakan apabila keadaan adalah benar dan tindakan lain apabila keadaan itu adalah palsu. 6. Repetition of a set of instructions a specific number of times are called repetition. Pengulangan set arahan tertentu beberapa kali dipanggil ulangan. SFCS Page 15 of 23

16 7. When it s not known in advance how many times a set of statements will be repeated, a value can be used to terminate the repetition. Apabila tidak diketahui terlebih dahulu berapa kali satu set penyataan akan berulang, satu nilai boleh digunakan untuk menamatkan pengulangan itu. 8. In counter-controlled repetition, a is used to count the number of times a group of instructions should be repeated. Dalam pengulangan kaunter terkawal, satu digunakan untuk mengira bilangan kali kumpulan arahan perlu diulangi. 9. Keyword is used in a function header to indicate that a function does not return a value or to indicate that a function contains no parameters. Kata kunci digunakan dalam pengepala fungsi untuk menunjukkan bahawa fungsi tidak memulangkan nilai atau untuk menunjukkan bahawa fungsi tidak mengandungi parameter. 10. The statement in a called function is used to pass the value of an expression back to the calling function. Pernyataan pada fungsi panggilan digunakan untuk menghantar nilai ungkapan kembali kepada fungsi yang memanggil. (10 marks / markah) SFCS Page 16 of 23

17 Question / Soalan 3 a) List and define the first THREE (3) steps in the Software Development Method (SDM). Senarai dan terangkan THREE (3) langkah pertama dalam Kaedah Pembangunan Perisian (SDM). (3 marks / markah) b) List THREE (3) rules of naming an identifier and give ONE (1) example for each. Senaraikan TIGA (3) kaedah-kaedah penamaan pengecam dan berikan SATU (1) contoh bagi setiap satu. (3 marks / markah) SFCS Page 17 of 23

18 Question / Soalan 4 a) Air Pollution Index (API) is used to determine the level of air pollution. The relationship between API and air pollution level is shown in the following table. Indeks Pencemaran Udara (API) digunakan untuk menentukan tahap pencemaran udara. Hubungan antara API dan tahap pencemaran udara ditunjukkan dalam jadual berikut. API range Level 0-50 Good Moderate Unhealthy Very Unhealthy >300 Hazardous Draw the flowchart that accepts the API value and determines the air pollution level from the table above. Lukiskan carta aliran yang menerima nilai API dan kenalpasti tahap pencemaran udara dari jadual di atas. (10 marks / markah) SFCS Page 18 of 23

19 Question / Soalan 4 a) List THREE (3) elements to control a looping structure. Senaraikan TIGA (3) elemen untuk mengawal struktur gelung. (3 marks / markah) b) Given the following program: Diberikan aturcara berikut: #include <stdio.h> int main() { int data = 0, sum = 0; while(data!= -1) { sum = sum + data; scanf("%d", &data); } printf("sum = %d \n", sum); return 0; } What is the output if the user enters the following data? Please show your tracing. Apakah output jika pengguna memasukkan data berikut? Sila tunjukkan kerja surihan anda (3 marks / markah) SFCS Page 19 of 23

20 Question / Soalan 5 a) List TWO (2) types function. Senaraikan DUA (2) jenis fungsi (4 marks / markah) b) Write the function definition for function boxvolume ( ) that receives the length, width and height of a box through its parameters. This function then calculates and returns the volume of box using the formula: Tulis satu definisi fungsi bagi fungsi boxvolume( )yang menerima length, width and height sebuah kotak sebagai parameter. Fungsi ini akan mengira dan memulangkan isipadu sebuah kotak menggunakan formula: volume = length x width x height (6 marks / markah) SFCS Page 20 of 23

21 SECTION D : APPLICATION QUESTIONS (20 MARKS) BAHAGIAN D : SOALAN APLIKASI (20 MARKAH) INSTRUCTION : Answer ONE (1) question only. ARAHAN : Jawab ONE (1) soalan sahaja. Question / Soalan 1 Write a complete C program that will ask an input from user and display different text depending on the selected option. If wrong option is selected, an error message will be shown. The options and text to be displayed are as follows. Tulis sebuah aturcara C lengkap yang akan meminta pengguna memasukkan input dan memaparkan teks yang berbeza bergantung pada pilihan yang dipilih. Jika pilihan yang salah dipilih, mesej ralat akan dipaparkan. Pilihan dan teks yang akan dipaparkan adalah seperti berikut. Options Text to output A: Killing Paper Please help me Madam!! B: Above expectation Got extra marks? C: Can Pass Hope to maintain my CGPA 3.0 D: Confident I love programming E: Peanut Very Easy I am ready for my IT career... Can open business already... Other inputs Wrong input... (20 marks / markah) SFCS Page 21 of 23

22 Question / Soalan 2 Suppose that temperature is an int variable representing the temperature of an oven. Write a sequence of multiple if/else statements that output the phrases below based on temperature input from user. Andaikan bahawa suhu adalah pembolehubah int mewakili suhu oven. Tulis satu turutan beberapa pernyataan if/else yang akan memaparkan frasa di bawah berdasarkan kepada suhu yang dimasukkan oleh pengguna. Value of temperature / Nilai Suhu Not over 200 Over 200 but not over 350 Over 350 but not over 425 Over 425 but not over 500 Over 500 Phrase to print / Frasa untuk dipaparkan Too cold to cook Oven is preheating Put in the apple pie Time to cook pizza Call the fire department (20 marks / markah) SFCS Page 22 of 23

23 Soalan / Question 3 The prices of all shoes at Pay More Shoe Store have a basic price RM50 per pair. There is an extra charge of RM10 per pair if the shoes size over size 10. Women s shoes are also marked up an additional 20%. Using this information, write C code needed to calculate and print shoe prices. Harga bagi semua kasut di Pay More Shoe Store mempunyai harga asas RM 50 sepasang. Harga tambahan RM10 sepasang akan dikenakan jika saiz melebihi saiz 10. Kasut wanita juga dinaikkan sebanyak 20%. Menggunakan maklumat tersebut, tuliskan aturcara C yang perlu untuk mengira dan mencetak harga kasut-kasut tersebut. // variable declaration char customer_gender = F ; float shoe_size; float shoe_price = 50.00; // prompt user for shoe purchase information // calculate final price for all sizes/types of shoes // print out final price (20 marks / markah) End of Page. SFCS Page 23 of 23

INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan. SECTION B: 70 MARKS BAHAGIAN B: 70 MARKAH INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan. QUESTION

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi TWO (2) soalan berstruktur. Jawab

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR FIRST SEMESTER EXAMINATION, 2013 SESSION DMGW-E-F 3/12, DMGA-E-F 3/12, DMGQ-E-F 3/12, DMGS-E-F 3/12 ITC2093 OFFICE AUTOMATION ROZITA BINTI YAAKOB,

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR STUDENT IDENTIFICATION NO MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR THIRD, FOURTH, EIGHTH TRIMESTER FINAL EXAMINATION, 2013 SESSION MMD2193 MULTIMEDIA AUTHORING I DMTW-E-F-2/12, DMTW-E-F-1/12,

More information

UNIVERSITI MALAYSIA PERLIS. DNT 126 Basic Computer Programming [Asas Pengaturcaraan Komputer]

UNIVERSITI MALAYSIA PERLIS. DNT 126 Basic Computer Programming [Asas Pengaturcaraan Komputer] UNIVERSITI MALAYSIA PERLIS Peperiksaan Semester Kedua Sidang Akademik 2015/2016 March 2016 DNT 126 Basic Computer Programming [Asas Pengaturcaraan Komputer] Masa: 3 jam Please make sure that this question

More information

Pengenalan Sistem Maklumat Dalam Pendidikan

Pengenalan Sistem Maklumat Dalam Pendidikan Pengenalan Sistem Maklumat Dalam Pendidikan 1 RELATIONSHIP & QUERY DALAM MICROSOFT ACCESS Kandungan Definisi Relationship (Hubungan) Jenis Relationship Membina Relationship Definisi Query dan Fungsi Query

More information

UNIVERSITI SAINS MALAYSIA

UNIVERSITI SAINS MALAYSIA UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2004/2005 Oktober 2004 CPT103/CPM211- Struktur Data & Paradigma Pengaturcaraan Masa : 2 jam ARAHAN KEPADA CALON : Sila pastikan bahawa

More information

UNIVERSITI SAINS MALAYSIA. Peperiksaan Semester Pertama Sidang Akademik 2003/2004. September/Oktober 2003

UNIVERSITI SAINS MALAYSIA. Peperiksaan Semester Pertama Sidang Akademik 2003/2004. September/Oktober 2003 UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2003/2004 September/Oktober 2003 EEE 348E - PENGANTAR REKABENTUK LITAR BERSEPADU Masa: 3jam ARAHAN KEPADA CALON: Sila pastikan bahawa

More information

UNIVERSITI SAINS MALAYSIA. CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan]

UNIVERSITI SAINS MALAYSIA. CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2014/2015 Academic Session June 2015 CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab SEMUA

More information

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating.

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating. PART A BAHAGIAN A Answer ALL questions. Jawab SEMUA soalan. Question Soalan a) Briefly explain the concept of Clock Gating. [Terangkan secara ringkas konsep Selakan Denyut.] [2 Marks/Markah] b) Define

More information

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains]

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2009/2010 Academic Session April/May 2010 MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] Duration : 3 hours

More information

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Kursus Semasa Cuti Panjang Sidang Akademik 2001/2002 April 2002 CPT101 Prinsip-Prinsip Pengaturcaraan Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa kertas

More information

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1 COMBINING TABLES CAATs ASAS ACL / 1 OBJEKTIF MODUL Mempelajari kaedah menggabung dan menghubungkan dua atau lebih table bagi mencapai objektif Audit. Mempelajari kaedah menggunakan maklumat yang sedia

More information

EEE 428 SISTEM KOMPUTER

EEE 428 SISTEM KOMPUTER UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2007/2008 Oktober/November 2007 EEE 428 SISTEM KOMPUTER Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa kertas peperiksaan

More information

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik MICROSOFT EXCEL Membina Hamparan Elektronik Fungsi Hamparan Elektronik Microsoft Excel 2010 Kandungan Penggunaan Asas Excel Memformat Sel, Lembaran dan Buku Kerja (Work Book) Penggunaan Asas Excel Fail

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 50 MARKS BAHAGIAN B : 50 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web]

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] Duration : 2 hours

More information

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains]

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] UNIVERSITI SAINS MALAYSIA First Semester Examination 2009/2010 Academic Session November 2009 MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] Duration : 3 hours

More information

UNIVERSITI SAINS MALAYSIA. CPT344 Computer Vision & Image Processing [Penglihatan Komputer & Pemprosesan Imej]

UNIVERSITI SAINS MALAYSIA. CPT344 Computer Vision & Image Processing [Penglihatan Komputer & Pemprosesan Imej] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CPT344 Computer Vision & Image Processing [Penglihatan Komputer & Pemprosesan Imej] Duration :

More information

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan. Conference Manager Roles Guide - PENGGUNA MANUAL Login. Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

More information

MAT181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains]

MAT181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] UNIVERSITI SAINS MALAYSIA Second Semester Examination 016/017 Academic Session June 017 MAT181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] Duration : 3 hours [Masa :

More information

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 PENILAIAN & KULIAH Kuliah Tugasan Ujian Teori Ujian Amali Isi kandungan 4.8 Menunjukkan asas pengiraan o Subnet Mask o

More information

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. SECTION A: 60 MARKS BAHAGIAN A: 60 MARKAH INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan berstruktur. Jawab

More information

Lab 4 : Sorting Techniques

Lab 4 : Sorting Techniques Lab 4 : Sorting Techniques Objectives Write source codes for the implementation of simple sort algorithms : Bubble Sort, Insertion Sort and Selection Sort. [Tulis aturcara dengan melaksanakan isihan mudah

More information

EEE 348 PENGANTAR REKABENTUK LITAR BERSEPADU

EEE 348 PENGANTAR REKABENTUK LITAR BERSEPADU UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2007/2008 Oktober/November 2007 EEE 348 PENGANTAR REKABENTUK LITAR BERSEPADU Masa : 3 Jam Sila pastikan kertas peperiksaan ini mengandungi

More information

INSTRUCTION: This section consists of TEN (10) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TEN (10) structured questions. Answer ALL questions. SECTION B : 30 MARKS BAHAGIAN B : 30 MARKAH INSTRUCTION: This section consists of TEN (10) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi SEPULUH (10) soalan berstruktur.

More information

UNIVERSITI SAINS MALAYSIA. CPT211-CPM313 Programming Language Concepts & Paradigm [Konsep & Paradigma Bahasa Pengaturcaraan]

UNIVERSITI SAINS MALAYSIA. CPT211-CPM313 Programming Language Concepts & Paradigm [Konsep & Paradigma Bahasa Pengaturcaraan] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2015/2016 Academic Session June 2016 CPT211-CPM313 Programming Language Concepts & Paradigm [Konsep & Paradigma Bahasa Pengaturcaraan] Duration : 2

More information

INSTRUCTION: This section consists of TWO (2) short answer and structured essay questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) short answer and structured essay questions. Answer ALL questions. SECTION B : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) short answer and structured essay questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan

More information

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. SECTION B: 60 MARKS BAHAGIAN B: 60 MARKAH INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan berstruktur. Jawab

More information

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE Edit summary Edit tajuk Ke kanan Ke atas/bawah NOTA: Klik untuk sembunyikan isi kandungan. Klik untuk padam/menghapus isi

More information

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. QUESTION 1

More information

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa

More information

MSS 318 Discrete Mathematics [Matematik Diskret]

MSS 318 Discrete Mathematics [Matematik Diskret] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2009/2010 Academic Session April/May 2010 MSS 318 Discrete Mathematics [Matematik Diskret] Duration : 3 hours [Masa : 3 jam] Please check that this

More information

TEKNOLOGI, GADJET & KEIBUBAPAAN

TEKNOLOGI, GADJET & KEIBUBAPAAN TEKNOLOGI, GADJET & KEIBUBAPAAN Kandungan YouTube Google Chrome Android Device Manager Google Keep Call recorder KeePassDroid K9 protection TeamViewer Zulkifli Alang Mahat A. YouTube 1. Klik apps youtube

More information

INSTRUCTION: This section consists of TWO (2)short answers and TWO (2) structured essays. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2)short answers and TWO (2) structured essays. Answer ALL questions. SECTION B : 70 MARKS BAHAGIAN B :70 MARKAH INSTRUCTION: This section consists of TWO (2)short answers and TWO (2) structured essays. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA(2) soalan

More information

...a- JEE ELEKTRONIK DIGIT II. UNlVERSlTl SAINS MALAYSIA. Peperiksaan Semester Kedua Sidang Akademik FebruarVMac 2003.

...a- JEE ELEKTRONIK DIGIT II. UNlVERSlTl SAINS MALAYSIA. Peperiksaan Semester Kedua Sidang Akademik FebruarVMac 2003. UNlVERSlTl SAINS MALAYSIA Peperiksaan Semester Kedua Sidang Akademik 200212003 FebruarVMac 2003 JEE 230 - ELEKTRONIK DIGIT II Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa kertas peperiksaan ini

More information

UNIVERSITI SAINS MALAYSIA. CPT111 Principles of Programming [Prinsip Pengaturcaraan]

UNIVERSITI SAINS MALAYSIA. CPT111 Principles of Programming [Prinsip Pengaturcaraan] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CPT111 Principles of Programming [Prinsip Pengaturcaraan] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

LAB 5: WORKING WITH DATA

LAB 5: WORKING WITH DATA LAB : WORKING WITH DATA OBJECTIVES FOR STUDENTS. Identify the difference between integer and floating-point numbers. [Mengenal pasti perbezaan di antara nombor integer dan titik terapung.]. Write arithmetic

More information

MAT 181 Programming for Scientific Applications [Pengaturcaraan untuk Penggunaan Sains]

MAT 181 Programming for Scientific Applications [Pengaturcaraan untuk Penggunaan Sains] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2015/2016 Academic Session June 2016 MAT 181 Programming for Scientific Applications [Pengaturcaraan untuk Penggunaan Sains] Duration 3 hours [Masa

More information

UNIVERSITI SAINS MALAYSIA. CPT113 Programming Methodology & Data Structures [Metodologi Pengaturcaraan & Struktur Data]

UNIVERSITI SAINS MALAYSIA. CPT113 Programming Methodology & Data Structures [Metodologi Pengaturcaraan & Struktur Data] UNIVERSITI SAINS MALAYSIA First Semester Examination 2016/2017 Academic Session December 2016 / January 2017 CPT113 Programming Methodology & Data Structures [Metodologi Pengaturcaraan & Struktur Data]

More information

UNIVERSITI SAINS MALAYSIA. CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih]

UNIVERSITI SAINS MALAYSIA. CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih] UNIVERSITI SAINS MALAYSIA First Semester Examination 2011/2012 Academic Session January 2012 CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih] Duration :

More information

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer]

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CST131 Computer Organisation [Organisasi Komputer] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

CPT211/CPM313 Programming Language Concepts & Paradigms [Konsep & Paradigma Bahasa Pengaturcaraan]

CPT211/CPM313 Programming Language Concepts & Paradigms [Konsep & Paradigma Bahasa Pengaturcaraan] Second Semester Examination 2016/2017 Academic Session June 2017 CPT211/CPM313 Programming Language Concepts & Paradigms [Konsep & Paradigma Bahasa Pengaturcaraan] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma]

CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma] Second Semester Examination 2016/2017 Academic Session June 2017 CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS TO CANDIDATE: [ARAHAN

More information

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. QUESTION 1

More information

INSTRUCTION: This section consists of TWO (2)structured questions.answer ALL questions.

INSTRUCTION: This section consists of TWO (2)structured questions.answer ALL questions. SECTION A :50 MARKS BAHAGIAN A :50 MARKAH INSTRUCTION: This section consists of TWO (2)structured questions.answer ALL questions. ARAHAN : Bahagian ini mengandungi DUA (2) soalan struktur. Jawab SEMUA

More information

PANDUAN PENGGUNA (PENSYARAH)

PANDUAN PENGGUNA (PENSYARAH) Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENSYARAH) Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa itu CRMS?... 2 CRMS Feature Summary... 3 CRMS LOGIN...

More information

UNIVERSITI SAINS MALAYSIA. CST232 Operating Systems [Sistem Pengendalian]

UNIVERSITI SAINS MALAYSIA. CST232 Operating Systems [Sistem Pengendalian] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CST232 Operating Systems [Sistem Pengendalian] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

UNIVERSITI SAINS MALAYSIA. CPT103/ CPM211 Struktur Data & Paradigma Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT103/ CPM211 Struktur Data & Paradigma Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Kursus Semasa Cuti Panjang Sidang Akademik 2001/2002 April 2002 CPT103/ CPM211 Struktur Data & Paradigma Pengaturcaraan Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan

More information

Panduan Pengguna Autodesk Education Community

Panduan Pengguna Autodesk Education Community Panduan Pengguna Autodesk Education Community ISI KANDUNGAN 1. Mendaftar Akaun Autodesk Education bagi Pelajar, Kakitangan dan Institusi Akademik...1 2. Muat Turun Perisian dan Lesen Autodesk Education

More information

UNIVERSITI SAINS MALAYSIA. CPT103/CPM211 Struktur Data & Paradigma Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT103/CPM211 Struktur Data & Paradigma Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2001/2002 September 2001 CPT103/CPM211 Struktur Data & Paradigma Pengaturcaraan Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa

More information

UNIVERSITI SAINS MALAYSIA. CCS522 Advanced Data Communication & Computer Networks [Rangkaian Komputer & Komunikasi Data Lanjutan]

UNIVERSITI SAINS MALAYSIA. CCS522 Advanced Data Communication & Computer Networks [Rangkaian Komputer & Komunikasi Data Lanjutan] UNIVERSITI SAINS MALAYSIA First Semester Examination 2015/2016 Academic Session December 2015/January 2016 CCS522 Advanced Data Communication & Computer Networks [Rangkaian Komputer & Komunikasi Data Lanjutan]

More information

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains]

MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] UNIVERSITI SAINS MALAYSIA First Semester Examination 2015/2016 Academic Session December 2015/January 2016 MAT 181 Programming For Scientific Applications [Pengaturcaraan Untuk Penggunaan Sains] Duration

More information

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer]

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer] UNIVERSITI SAINS MALAYSIA First Semester Examination 2016/2017 Academic Session December 2016 / January 2017 CST131 Computer Organisation [Organisasi Komputer] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan]

CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] Second Semester Examination 2016/2017 Academic Session June 2017 CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS TO CANDIDATE: [ARAHAN KEPADA

More information

UNIVERSITI SAINS MALAYSIA. CCS522 Advanced Data Communication and Computer Networks [Rangkaian Komputer dan Komunikasi Data Lanjutan]

UNIVERSITI SAINS MALAYSIA. CCS522 Advanced Data Communication and Computer Networks [Rangkaian Komputer dan Komunikasi Data Lanjutan] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CCS522 Advanced Data Communication and Computer Networks [Rangkaian Komputer dan Komunikasi Data

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

Persekitaran Pengaturcaraan Arduino

Persekitaran Pengaturcaraan Arduino Persekitaran Pengaturcaraan Arduino 1 2.4.5 Membuat kepada 2.4-6 Membina litar eletronik kawalan berfungsi Mikropengawal seperti Arduino ataupun Maker Uno dapat mengawal litar elektrik yang bersambung

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 50 MARKS BAHAGIAN B : 50 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2003/2004 September/Oktober 2003 CPT101 Prinsip-Prinsip Pengaturcaraan Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa kertas

More information

Semasa buku ini ditulis XAMPP mengandungi empat versi:

Semasa buku ini ditulis XAMPP mengandungi empat versi: Lab 1 PEMASANGAN PELAYAN WEB XAMPP 1.0 Pengenalan Di dalam topik ini kita akan menggunakan pelayan web yang berasaskan sumber terbuka XAMPP Windows 1.8.0. Kenapa Pelayan Web Xampp digunakan kerana bukannya

More information

KOLEJ MULTIMEDIA JALAN GURNEY KIRI KUALA LUMPUR

KOLEJ MULTIMEDIA JALAN GURNEY KIRI KUALA LUMPUR KOLEJ MULTIMEDIA JALAN GURNEY KIRI 54100 KUALA LUMPUR SECOND SEMESTER EXAMINATION, 2010/ 2011 SESSION PSD 2143 INTRODUCTION TO PROGRAMMING II NOR QUSIAH ABDUL RAZAK / ZAKRI MD SALLEH / AZNANI DAUD INSTRUCTION

More information

Panduan Menggunakan Autoresponder FreeAutobot.com

Panduan Menggunakan Autoresponder FreeAutobot.com Panduan Menggunakan Autoresponder FreeAutobot.com Dengan memperolehi e-book ini, anda mempunyai kebenaran untuk memberi secara percuma kepada pelanggan anda atau tawarkan sebagai bonus kepada pembelian

More information

UNIVERSITI SAINS MALAYSIA. CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid]

UNIVERSITI SAINS MALAYSIA. CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid] Duration : 2 hours [Masa :

More information

EEE348 INTRODUCTION TO INTEGRATED CIRCUIT DESIGN (PENGANTAR REKABENTUK LITAR BERSEPADU)

EEE348 INTRODUCTION TO INTEGRATED CIRCUIT DESIGN (PENGANTAR REKABENTUK LITAR BERSEPADU) Second Semester Examination 2017/2018 Academic Session May/June 2018 INTRODUCTION TO INTEGRATED CIRCUIT DESIGN (PENGANTAR REKABENTUK LITAR BERSEPADU) Duration : 3 hours (Masa : 3 jam) Please ensure that

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR FIRST SEMESTER EXAMINATION, 2012 SESSION DTEA-E-F-1/12,DIAA-E-F-1/12,DMGA-E-F-1/12, DMGQ-E-F-1/12, DMKQ-E-F-1/12, DTEQ-E-F-1/12, DMGS-E-F-1/12, DTES-E-F-1/12,

More information

UNIVERSITI MALAYSIA SARAWAK KOTA SAMARAHAN SARAWAK

UNIVERSITI MALAYSIA SARAWAK KOTA SAMARAHAN SARAWAK UNIVERSITI MALAYSIA SARAWAK 94300 KOTA SAMARAHAN SARAWAK FAKULTI SAINS KOMPUTER & TEKNOLOGI MAKLUMAT (Faculty of Computer Science & Information Technology) Diploma in Multimedia Technology EIGHT & TEN

More information

UNIVERSITI SAINS MALAYSIA. CPT103 Struktur Data & Paradigma Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT103 Struktur Data & Paradigma Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Kursus Semasa Cuti Panjang Sidang Akademik 2002/2003 April 2003 CPT103 Struktur Data & Paradigma Pengaturcaraan Masa : 3 jam ARAHAN KEPADA CALON: Sila pastikan bahawa

More information

Modul Asas JavaServer Pages

Modul Asas JavaServer Pages Modul Asas JavaServer Pages Kursus ini dikendalikan oleh: Dr Fatimah Sidi Jabatan Sains Komputer Fakulti Sains Komputer dan Teknologi Maklumat Kandungan Modul 1.0 Pengenalan... 2 2.0 Objektif... 2 3.0

More information

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet] UNIVERSITI SAINS MALAYSIA First Semester Examination 2016/2017 Academic Session December 2016 / January 2017 CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

More information

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan

UNIVERSITI SAINS MALAYSIA. CPT101 Prinsip-Prinsip Pengaturcaraan UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2004/2005 Oktober 2004 CPT101 Prinsip-Prinsip Pengaturcaraan Masa : 2 jam ARAHAN KEPADA CALON: Sila pastikan bahawa kertas peperiksaan

More information

Panduan Guru Maker UNO/ Arduino

Panduan Guru Maker UNO/ Arduino Panduan Guru Maker UNO/ Arduino Ditulis khas berdasarkan dokumen standard kandungan prestasi subjek Reka Bentuk Teknologi Tingkatan Dua PENDAHULUAN ISI KANDUNGAN ISI KANDUNGAN CADANGAN PENGAGIHAN MASA

More information

UNIVERSITI SAINS MALAYSIA. CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih]

UNIVERSITI SAINS MALAYSIA. CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih] UNIVERSITI SAINS MALAYSIA First Semester Examination 2015/2016 Academic Session December 2015/January 2016 CST331 Principles of Parallel & Distributed Programming [Prinsip Pengaturcaraan Selari & Teragih]

More information

UNIVERSITI MALAYSIA PERLIS. EKT 120 Pengaturcaraan Komputer [Computer Programming]

UNIVERSITI MALAYSIA PERLIS. EKT 120 Pengaturcaraan Komputer [Computer Programming] UNIVERSITI MALAYSIA PERLIS Peperiksaan Semester Pertama Sidang Akademik 2015/2016 Januari 2016 EKT 120 Pengaturcaraan Komputer [Computer Programming] Masa : 3 jam Duration : 3 hours Please make sure that

More information

UNIVERSITI SAINS MALAYSIA. CMT422 Multimedia Information Systems & Management [Sistem & Pengurusan Maklumat Multimedia]

UNIVERSITI SAINS MALAYSIA. CMT422 Multimedia Information Systems & Management [Sistem & Pengurusan Maklumat Multimedia] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2014/2015 Academic Session June 2015 CMT422 Multimedia Information Systems & Management [Sistem & Pengurusan Maklumat Multimedia] Duration : 2 hours

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR FIRST SEMESTER EXAMINATION, 2011 SESSION DMTW-E-F-2/11 ITC2053-OPERATING SYSTEM AISYA SALIMAH CHE ABDUL RAHIM 22 NOVEMBER 2011 9.00 AM 11.30 AM (2

More information

MSS 317 Coding Theory [Teori Pengekodan]

MSS 317 Coding Theory [Teori Pengekodan] ` UNIVERSITI SAINS MALAYSIA First Semester Examination 01/01 Academic Session January 01 MSS 17 Coding Theory [Teori Pengekodan] Duration : hours [Masa : jam] Please check that this examination paper consists

More information

[40 marks] [40 marks] Answer all questions. Jawab semua soalan.

[40 marks] [40 marks] Answer all questions. Jawab semua soalan. SULIT 05/ [40 marks] [40 marks] Answer all questions. Jawab semua soalan.. State the digit value of 4 in the number 74 59. Nyatakan nilai digit bagi 4 dalam nombor 74 59. [ mark ] [ markah ]. Diagram shows

More information

Manual Pengguna. PCN Online Service Fulfillment System

Manual Pengguna. PCN Online Service Fulfillment System System 1 Subjek Muka Surat 1) CARTA ALIR SISTEM 2 2) PERMOHONAN OLEH AGENSI 3 3) PENGESAHAN PERMOHONAN OLEH MAMPU 8 4) LAMPIRAN 13 2 Carta alir sistem 3 PERMOHONAN OLEH AGENSI 4 Membuat permohonan baru

More information

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: UNIT SUPPLY CHAIN MANAGEMENT (SCM) JABATAN SOURCING CONTROLLER

More information

UNIVERSITI SAINS MALAYSIA. CCS521 Advanced Distributed Systems Concepts and Design [Konsep dan Reka Bentuk Sistem Teragih Maju]

UNIVERSITI SAINS MALAYSIA. CCS521 Advanced Distributed Systems Concepts and Design [Konsep dan Reka Bentuk Sistem Teragih Maju] UNIVERSITI SAINS MALAYSIA First Semester Examination 2011/2012 Academic Session January 2012 CCS521 Advanced Distributed Systems Concepts and Design [Konsep dan Reka Bentuk Sistem Teragih Maju] Duration

More information

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer]

UNIVERSITI SAINS MALAYSIA. CST131 Computer Organisation [Organisasi Komputer] UNIVERSITI SAINS MALAYSIA First Semester Examination 2015/2016 Academic Session December 2015/January 2016 CST131 Computer Organisation [Organisasi Komputer] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

UNIVERSITI SAINS MALAYSIA. CCS513 Computer Vision and Image Analysis [Penglihatan Komputer dan Analisis Imej]

UNIVERSITI SAINS MALAYSIA. CCS513 Computer Vision and Image Analysis [Penglihatan Komputer dan Analisis Imej] UNIVERSITI SAINS MALAYSIA First Semester Examination 204/205 Academic Session December 204/January 205 CCS53 Computer Vision and Image Analysis [Penglihatan Komputer dan Analisis Ime] Duration : 2 hours

More information

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. SECTION B : 60 MARKS BAHAGIAN B : 60 MARKAH INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan berstruktur. Jawab

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR FOURTH & FIFTH SEMESTER EXAMINATION, 2011 SESSION DMBW-E-F-3/10, DMBW-E-F-2/10, DMBW-E-F-1/10, DMTW-E-F-2/10, DMTW-E-F-1/10, DMTQ-E-F-1/10 ISD2023

More information

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI M2U MANUAL PENGGUNA USER MANUAL M2UNHJ 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI KANDUNGAN (TABLE OF CONTENTS) BIL PERKARA HALAMAN 1 TERMA DAN

More information

UNIVERSITI SAINS MALAYSIA. CST231/CSM331 Data Communications & Networks [Komunikasi Data & Rangkaian]

UNIVERSITI SAINS MALAYSIA. CST231/CSM331 Data Communications & Networks [Komunikasi Data & Rangkaian] UNIVERSITI SAINS MALAYSIA First Semester Examination 2015/2016 Academic Session December 2015/January 2016 CST231/CSM331 Data Communications & Networks [Komunikasi Data & Rangkaian] Duration : 2 hours

More information

ISOGEOMETRIC ANALYSIS OF PLANE STRESS STRUCTURE CHUM ZHI XIAN

ISOGEOMETRIC ANALYSIS OF PLANE STRESS STRUCTURE CHUM ZHI XIAN ISOGEOMETRIC ANALYSIS OF PLANE STRESS STRUCTURE CHUM ZHI XIAN A project report submitted in partial fulfilment of the requirements for the award of the degree of Master of Engineering (Civil-Structure)

More information

TS2963 : Pangkalan Data. Nota Makmal. Makmal 4

TS2963 : Pangkalan Data. Nota Makmal. Makmal 4 TS2963 : Pangkalan Data Nota Makmal Makmal 4 1. Mencari Maklumat Dalam Pangkalan Data Salah satu kelebihan sistem pangkalan data berbandingkan cara penyimpanan maklumat lain (seperti fail teks atau direktori)

More information

Visitor Management System

Visitor Management System WWW.VALLINME.COM Visitor Management System Ver 1.0 Mohd Noor Azam 18-03-2015 [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the

More information

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. SECTION B : 60 MARKS BAHAGIAN B : 60 MARKAH INSTRUCTION: This section consists of FOUR (4) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan berstruktur. Jawab

More information

Bahagian A. Jawab semua soalan. Tulis jawapan anda di ruang yang disediakan pada Helaian Jawapan. Setiap jawapan diperuntukkan satu markah.

Bahagian A. Jawab semua soalan. Tulis jawapan anda di ruang yang disediakan pada Helaian Jawapan. Setiap jawapan diperuntukkan satu markah. Section A Bahagian A [36 marks] [36 markah] Answer all questions. Write your answers in the spaces provided in the Answer Sheet. Each answer carries one mark. Jawab semua soalan. Tulis jawapan anda di

More information

UNIVERSITI SAINS MALAYSIA. CMT224/CMM221 Multimedia Systems [Sistem Multimedia]

UNIVERSITI SAINS MALAYSIA. CMT224/CMM221 Multimedia Systems [Sistem Multimedia] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2015/2016 Academic Session June 2016 CMT224/CMM221 Multimedia Systems [Sistem Multimedia] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS TO CANDIDATE:

More information

UNIVERSITI SAINS MALAYSIA. CIT502 Pengaturcaraan dan Kejuruteraan Perisian Berorientasi Objek

UNIVERSITI SAINS MALAYSIA. CIT502 Pengaturcaraan dan Kejuruteraan Perisian Berorientasi Objek UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2002/2003 September 2002 CIT502 Pengaturcaraan dan Kejuruteraan Perisian Berorientasi Objek Masa : 3 jam ARAHAN KEPADA CALON: Sila

More information

Analysis SPM of year 2007, 2008, 2009, 2010, 2011, 2012, 2013 (Section B & C)

Analysis SPM of year 2007, 2008, 2009, 2010, 2011, 2012, 2013 (Section B & C) Analysis SPM of year 2007, 2008, 2009, 2010, 2011, 2012, 2013 (Section B & C) Analysis SPM of year 2007, 2008, 2009, 2010, 2011, 2012 & 2013 (Section B) 2007 2008 2009 2010 2011 2012 2013 26. ICT & Society

More information

UNIVERSITI SAINS MALAYSIA. CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma]

UNIVERSITI SAINS MALAYSIA. CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2015/2016 Academic Session June 2016 CPT212 Design & Analysis of Algorithms [Reka Bentuk & Analisis Algoritma] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information