Monday, December 28, 2015

Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below:














Source Code:
#include <iostream>
using namespace std;
int main()
{
//static receipt design
cout<<"......................................."<<endl;
cout<<"#       DeAlis Creative Solution\3     #"<<endl;
cout<<"#      No 25 Taman Sungguh Indah      #"<<endl;
cout<<"#          56600 Kuala Lumpur         #"<<endl;
cout<<"......................................."<<endl;
cout<<"  Tarikh: 29/12/2015"<<endl;
cout<<"  Nama Cashier: Rogayah"<<endl;
cout<<"\n";
cout<<"......................................."<<endl; cout<<"  Bil Item Price        "<<endl;
cout<<"......................................."<<endl;
cout<<"  1 Pisang Kaki 5.50         "<<endl;
cout<<"  2 Tomato 3.50         "<<endl;
cout<<"......................................."<<endl;
cout<<" JUMLAH 9.00         "<<endl;
cout<<"......................................."<<endl;
cout<<"\n\n\n";
//QUESTION: INCLUDE VARIABLE BASED ON YOUR RECEIPT DESIGN
}

Hint: List all variables and edit a codes based on given receipt



Saturday, October 10, 2015

Ulangkaji DFP3143 Web Development

DIP3A,

Berikut ialah contoh soalan ulangkaji Web Development. Sila buat dan kita akan discuss minggu hadapan sewaktu kelas ulangkaji.
Download HERE

Contoh lain boleh didownload di website / library PTSS

Tuesday, October 6, 2015

Rubric PBT DFP3143 Jun 2015

Dear students,

Download and attach rubric in your report for your problem based task. Submit on Friday 9/10/2015.

Download HERE

Thursday, August 20, 2015

Lab Exercise 2 DFP3143 DIP3A

Dear all,

Download your assessment HERE

Submit your report on Friday, 21/8/2015 before 5pm and your copy of design on Monday, 24/8/2015.

Thanks and Good Luck!


Love;
Pn. Fiza =)

Sunday, January 18, 2015

Wednesday, January 7, 2015

C++ Program: Simple variable declaration and use of arithmetic operation

Hello all,

Please download below code to understand the basic of variables declaration and use of arithmetic operation.

=)

Source Code:

Please download [HERE]

 Output:


Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below: Source Code: #include <iostream> using na...