Results (
English) 1:
[Copy]Copied!
Chapter 3PASCAL English ver.A. Multiple choice1. Function is …a) Sekumpulan algoritma yang dapat menjab) Transformasi akibat pemetaan suatu nilai ke nilai lainc) Sekumpulan algoritma yang hanya diberi namad) Sekumpulan algoritma yang tidak dapat digunakane) Semua salah2. Procedure is …a) Sekumpulan algoritma yang diberi nama dan dapat dipanggil untuk mengerjakan sesuatu dari instruksib) Sekumpulan algoritma yang hanya diberi namac) Sekumpulan algoritma yang diberi nama dan dapat dipanggil untuk menghentikan suatu intruksid) Sekumpulan algoritma yang tidak dapat digunakane) Semua salah3. Local variable is …a) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur sajab) Variabel yang dapat digunakan baik dalam program utama maupun pada fungsi / prosedurc) Variabel yang hanya dapat digunakan dalam program utamad) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur laine) Semua salah4. Global variable is …a) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur sajab) Variabel yang dapat digunakan baik dalam program utama maupun pada fungsi / prosedurc) Variabel yang hanya dapat digunakan dalam program utamad) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur laine) Semua salah5. The Parameter that provided while calling function or procedure, that is …a) Parameter faktualb) Parameter normalformal Parameter c)d) actual Parametere) global Parameters6. The Parameters that placed in the header within function/procedure, that is ...a factual Parameter)b normal Parameters)formal Parameter c)d) actual Parametere) global ParametersThe program below, for the question No. 7-10!Program try;Varx, y1: integer;function tambah2 (a, b:integer) 3: integer;begin Add a: = a + b;end; BeginWrite (' Please enter first number '); readln (x);Write (' enter the second figure: '); readln (y);Write (Add (x, y) 4);Readln;End.7. text Algorithm that underscore in number 1, that is ...a) actual Parameterb) factual Parametersc local Variables)d) Varabel globale) function name8. text Algorithm that underscore in number 2 that is ...a) actual Parameterb) factual Parametersc local Variables)d) global variablese) function name9. Algorithm text that underscore in number 3 that is ...a) actual Parameterb) factual Parametersc local Variables)d) global variablese) function name10. text Algorithm that underscore in number 4 that is ...a) actual Parameterb) factual Parametersc local Variables)d) Varabel globale) function nameB. Essay1. Describe the definition of function!Answer:The function is a program that give/return (return) value of a particular type2. Describe the definition of procedure!Answer:A set of algorithms that are named and can be called upon to work on something of an instruction3. Mention and describe various parameters!Answer:• Input parameters; It is the only parameter that can be used as input function/procedure• Parameteroutput; is a parameter that can be used only as an output function/procedure• Input/output Parameters; is a parameter that can be used as input and output functions/procedures4. Please list and describe the difference between functions and procedures!Answer:• A declaration procedure starts with a ' Procedure '. While a declaration of a function begins with ' Function '.• The Output of the procedure are in the procedure itself. While the output of the function is in the main program.• The procedure does not return a value to the main program, so the calling procedure can be done by simply writing the name of the procedure. While the function will return the value to the program, so that the data type of the function must exist.5. Describe the definition of:a Local Variable) b) Global Variables c) Actual Parameters Formal Parameter d) Answer:a Local Variable); a variable can only be used on functions/procedures courseb) Global Variables; variables that can be used in the main program or function/procedurec the Actual Parameters); parameters supplied when calling the function/procedureFormal Parameter d); the parameter is placed in the header of the function/procedureC. Journal1. Make a BIOS programs using procedure!ExampleName: GanoolNIM: 100023456Age: 35program cobaprosedur;uses crt;var name, nim, age: string;procedure entry; begin clrscr; begin WriteLn (' Bio '); printf; begin WriteLn (' Name ', name); begin WriteLn (' NIM ', nim); begin WriteLn (' Age ', age); printf; end;begin clrscr; printf ("enter your bio-data '); printf; write (' Name '); readln (name); write (' NIM: '); readln (nim); write (': '); readln (aged); background information; readln;end.2. Make a BIOS program using function!Example Name: GanoolNIM: 100023456
Being translated, please wait..