Notes
-
Download 01- Programming Problem-Solving (Stud) v2.pdf
01- Programming Problem-Solving (Stud) v2.pdf Details
- Monday, 30 December 2019 [1.8MB] -
Download 02-Elementary Programming v2.pdf
02-Elementary Programming v2.pdf Details
- Monday, 30 December 2019 [1.1MB] -
Download 03 - Control Structures (Stud) v1.pdf
03 - Control Structures (Stud) v1.pdf Details
- Monday, 30 December 2019 [1.1MB] -
Download 04 - Functions.pdf
04 - Functions.pdf Details
- Monday, 30 December 2019 [4.5MB] -
Download 05 - Array.pdf
05 - Array.pdf Details
- Monday, 30 December 2019 [1.4MB] -
Download 06 - Input and Output (Stud).pdf
06 - Input and Output (Stud).pdf Details
- Monday, 30 December 2019 [1.5MB] -
Download 07 - Pointers-Update.pdf
07 - Pointers-Update.pdf Details
- Monday, 30 December 2019 [5.2MB] -
Download 08 - Structured Data.pdf
08 - Structured Data.pdf Details
- Monday, 30 December 2019 [5.2MB]
chapter 3
CHAPTER 1
PROGRAMMING PROBLEM SOLVING
I learned to develop pseudocode and flow charts to solve problems. In the other way, I also can trace the pseudo code and flow chart in order to determine the contents of variables and the output. I know the shape of input, output, process from flow charts.
CHAPTER 2
CHAPTER 2
ELEMENTARY PROGRAMMING
This topic allow me to use the simple data types , lecturer also give a lot of exercise to write arithmetic expression in c++. Next, i’ve learned to write simple programs that assign values to variables ,process the values and display the results. Variables represent storage location in computer’s memory and literal are constant variables
CHAPTER 3
CHAPTER 3
CONTROL STRUCTURE
Chapter 3 covered the relational operator and the associativity of the operator and its operands, Boolean operators and the precedence of operators. In this C++ program also has the conditional operations such as if else statement, switch statement. Next, I learned counter and event controlled loops and loop control structure.
chapter 6
What is this subject about ?
This subject will teach and equips us with fundamental knowledge, theories and techniques required as preparation for the future. We students use the programming language C++ during the study. The task are mostly to come up with ideas and develop a program to solve some simple to moderate problem using programming.
chapter 4
CHAPTER 4
CHAPTER 4
FUNCTION
In this chapter, there are predefined library functions and user- defined function. I learned to convert mathematical formula into C++ statement using predefined function. In user-defined functions it has passing data by value (passing by value) and passing data by reference (passing by references). Lastly, functions can results through a function’s arguments.
CHAPTER 5
CHAPTER 5
ARRAY
In this chapter, it has one dimensional array and two dimensional array. Two dimensional array is for collection data that has many row and many column. Next this chapter relate the use of array in function to solve the problems.
CHAPTER 6
CHAPTER 6
INPUT & OUTPUT
This chapter is the most interesting for me! Because we can insert the data from the text (from notepad also can) to the C++ program to do some alteration and display back into two condition( Display normally at C++ program and Display at notepad or text file).
Chapter 7
Go to homepage
Second Assignment
Third Assignment
-
Download assignment group 3.cpp.1
assignment group 3.cpp.1 Details
- Tuesday, 07 January 2020 [2.3KB] -
Download assignment group 3.exe.1
assignment group 3.exe.1 Details
- Tuesday, 07 January 2020 [1.8MB] -
Download input1.txt.1
input1.txt.1 Details
- Tuesday, 07 January 2020 [964 B] -
Download output3.txt.1
output3.txt.1 Details
- Tuesday, 07 January 2020 [2KB]
Chapter 5
CHAPTER 7
CHAPTER 7
POINTERS
This topic I studied on how to identify the relationship between array and pointers. Pointer is the address of data in computer memory. Next, I learned to work with pointer and functions.
CHAPTER 8
CHAPTER 8
STRUCTURED DATA
Structured data is implement abstract data type using structure mechanism. I practiced the used of array of structure and pointers to structure. I worked with structure as function argument and return a structure from function. I also learned the use of enumerated data-type and union data-type.