• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/19

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

19 Cards in this Set

  • Front
  • Back

Breaking up

تقسيم

Modular programming

برمجه معياريه

Modular programming تعريف

breaking a program upinto smaller, manageable functions or modules

Function:تعريف

collection of statements to perform atask

Motivation

دافع او حافز

Improve maintainability of programs

تحسين صيانه برامج

Simplifies the process of writing programs

يبسط عمليه كتابه برامج

• Motivation for modular programming: ما هي

١ Improves maintainability of programs


٢ Simplifies the process of writing programs

Divided

يقسم

Separate

منفصل

Function call تعريف

statement causes a function to execute

Execute

تنفيز

Function definition تعريف

statements that makeup a function

Definition includes يشمل بقا

return type


Name


Body


Parameter list

Parameter

معلمات

Return type

data type of the value that functionreturns to the part of the program that called it

Name function

name of the function. Function names followsame rules as variables

Parameter list function

:variables containing values passed tothe function

Body function

: statements that perform the function's task,enclosed in { }