Dear Kuroi,
Here is the slide for unit 2 & unit 3.
http://www.ziddu.com/download/20014674/UNIT2_3.rar.html
http://www.ziddu.com/download/20014675/UNIT3_Jul.rar.html
all the best..
WIRELES DEVICES SLIDE 2 & 3
WIRELESS DEVICES NOTES
Dear Kuroi,
Please download your notes (all 9 chapter) from this link:
http://www.ziddu.com/download/20014650/THEORY.rar.html
Thank You
C PRO : PRACTICAL ASSESSMENT 1 TOP SCORER
CONGRATULATION TO MR:
1. USMAN
2. HAFIZ
3. MOHAMMAD RIDZUAN MOHAYUDIN
4. NURAFDZAL SYAZWAN
FOR YOUR EXCELLENT PERFORMANCE IN OUR 1ST ASSESSMENT !!!!
KEEP IT UP!!!!
C PRO SLIDE UNIT 3
Dear Asahi,
Please download the slide for unit 3 via this link:
http://www.ziddu.com/download/19988692/UNIT3CPRO.rar.html
Please try all the exercises and examples.
Selamat Berbuka Puasa & Selamat Menunaikan solat Terawikh
C PRO ASSIGNMENT 1
http://www.ziddu.com/download/19972916/ASGMT1_C_PRO.rar.html
C PRO EXERCISE 2 student performance
Here is list of student with coding nearly close to the correct answer:
1. Mohd Firdaus
2. Hafiz Yusof
3. Hasnan
4. Ridzuan Mohayudin
Congratulations!
C PRO EXERCISE 2.. 17/07/2012
Assalamualaikum,
This is the correction i've made to hafiz coding.
//Writer: Hafiz Yusof
#include <stdio.h>
int main()
{
int voltage=20;
int current=6;
int resistance,remainder;
resistance=voltage/current;
remainder=voltage%current;
printf("the resistance value is %d\n",resistance);
printf("the remainder value is %d\n",remainder);
return 0;
}
comment:
overall is ok..
but for the resistance value, it will be perfect if the answer is in floating number.
for example 20 divide by 6 suppose the answer is 3.3333.
in your coding you put it as int which make the answer is 3.
good luck!