Programming Technique 1 SECJ1013

chapter 3

Reflection

 

My Reflection :-

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.

 

Details

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

Details

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.

Details

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

Reflection

 

My Reflection :-

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.

Details

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.

Details

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).

Details

Chapter 7

Chapter 5

Reflection

My reflection :-

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.

Details

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.

Details

chapter 8