or

5 Computer -- Programming II

1) Introduction2) Notes on approaches in problem solving (top down design and bottom up design)3) Phases on Programming (problem identification, derive steps for solution (algorithm, flowchart), coding, translation, debugging, executive and testing, documentation) 

1) Introduction

2) Notes on approaches in problem solving (top down design and bottom up design)

3) Phases on Programming (problem identification, derive steps for solution (algorithm, flowchart), coding, translation, debugging, executive and testing, documentation) 


More questions on Programming II

Differentiate between structure and union.

Structures in C is a user-defined data type available in C that allows to combining of data items of different kinds. Structures are used to represent a record. 

Defining a structure: To define a structure, you must use the struct statement. The struct statement defines a new data type, with more than or equal to one member. The format of the struct statement is as follows:

struct [structure name] { member definition; member definition; ... member definition;...
Close Open App