Chapter 3PASCAL English ver.A. Multiple choice1. Function is …a) Sekum translation - Chapter 3PASCAL English ver.A. Multiple choice1. Function is …a) Sekum English how to say

Chapter 3PASCAL English ver.A. Mult

Chapter 3
PASCAL English ver.
A. Multiple choice
1. Function is …
a) Sekumpulan algoritma yang dapat menja
b) Transformasi akibat pemetaan suatu nilai ke nilai lain
c) Sekumpulan algoritma yang hanya diberi nama
d) Sekumpulan algoritma yang tidak dapat digunakan
e) Semua salah

2. Procedure is …
a) Sekumpulan algoritma yang diberi nama dan dapat dipanggil untuk mengerjakan sesuatu dari instruksi
b) Sekumpulan algoritma yang hanya diberi nama
c) Sekumpulan algoritma yang diberi nama dan dapat dipanggil untuk menghentikan suatu intruksi
d) Sekumpulan algoritma yang tidak dapat digunakan
e) Semua salah

3. Local variable is …
a) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur saja
b) Variabel yang dapat digunakan baik dalam program utama maupun pada fungsi / prosedur
c) Variabel yang hanya dapat digunakan dalam program utama
d) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur lain
e) Semua salah

4. Global variable is …
a) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur saja
b) Variabel yang dapat digunakan baik dalam program utama maupun pada fungsi / prosedur
c) Variabel yang hanya dapat digunakan dalam program utama
d) Variabel yang hanya dapat digunakan untuk algoritma pada fungsi / prosedur lain
e) Semua salah

5. The Parameter that provided while calling function or procedure, that is …
a) Parameter faktual
b) Parameter normal
c) Parameter formal
d) Parameter aktual
e) Parameter global

6. The Parameter that placed in header within function / procedure, that is …
a) Parameter faktual
b) Parameter normal
c) Parameter formal
d) Parameter aktual
e) Parameter global

Program below, for the question no.7-10!
Program coba;
Var
x,y1 : integer;
function tambah2 (a,b:integer)3 : integer;
begin
tambah := a + b;
end;
Begin
Write(‘Masukkan angka pertama : ’); readln(x);
Write(‘Masukkan angka kedua : ’); readln(y);
Write(tambah(x,y)4);
Readln;
End.
7. Algorithm text that underscore in number 1, that is...
a) Parameter aktual
b) Parameter faktual
c) Variabel lokal
d) Varabel global
e) Nama fungsi

8. Algorithm text that underscore in number 2 that is ...
a) Parameter aktual
b) Parameter faktual
c) Variabel lokal
d) Variabel global
e) Nama fungsi

9. Algorithm text that underscore in number 3 that is ...
a) Parameter aktual
b) Parameter faktual
c) Variabel lokal
d) Variabel global
e) Nama fungsi

10. Algorithm text that underscore in number 4 that is ...
a) Parameter aktual
b) Parameter faktual
c) Variabel lokal
d) Varabel global
e) Nama fungsi

B. Essay
1. Describe the definition of function!
Jawaban :
Fungsi merupakan program yang memberikan/mengembalikan (return) sebuah nilai dari tipe tertentu



2. Describe the definition of procedure!
Jawaban :
Sekumpulan algoritma yang diberi nama dan dapat dipanggil untuk mengerjakan sesuatu dari instruksi

3. Mention and describe various parameters!
Jawaban :
• Parameter input; merupakan parameter yang hanya dapat digunakan sebagai input fungsi / prosedur
• Parameteroutput; merupakan parameter yang hanya dapat digunakan sebagai output fungsi / prosedur
• Parameter input/output; merupakan parameter yang dapat digunakan sebagai input dan output fungsi / prosedur

4. Sebutkan dan jelaskan perbedaan antara fungsi dan prosedur!
Jawaban :
• Pendeklarasian prosedur diawali dengan ‘Procedure’. Sedangkan pendeklarasian fungsi diawali dengan ‘Function’.
• Output dari prosedur berada di dalam prosedur itu sendiri. Sedangkan output dari fungsi berada pada program utama.
• Prosedur tidak mengembalikan nilai ke program utama, sehingga pemanggilan prosedur dapat dilakukan dengan hanya menulis nama prosedur tersebut. Sedangkan fungsi akan mengembalikan nilai ke program, sehingga tipe data dari fungsi tersebut harus ada.

5. Describe the definition of :
a) Local Variabel
b) Global Variabel
c) Actual Parameter
d) Formal Parameter

Jawaban :
a) Local Variabel ; variabel yang hanya dapat digunakan pada fungsi / prosedur saja
b) Global Variabel ; variabel yang dapat digunakan pada program utama maupun pada fungsi / prosedur
c) Actual Parameter ; parameter yang disertakan saat pemanggilan fungsi / prosedur
d) Formal Parameter ; parameter yang diletakkan pada header fungsi / prosedur

C. Journal
1. Make a biodata program using procedure!
Contoh
Nama : Ganool
NIM : 100023456
Umur : 35

program cobaprosedur;
uses crt;
var
nama,nim,umur : string;

procedure biodata;
begin
clrscr;
writeln('Biodata');
writeln;
writeln('Nama : ',nama);
writeln('NIM : ',nim);
writeln('Umur : ',umur);
writeln;
end;

begin
clrscr;
writeln('Masukkan Biodata');
writeln;
write('Nama : '); readln(nama);
write('NIM : '); readln(nim);
write('Umur : '); readln(umur);
biodata;
readln;
end.




2. Make a biodata program using function!
Contoh
Nama : Ganool
NIM : 100023456
0/5000
From: -
To: -
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..
Results (English) 2:[Copy]
Copied!
Chapter 3
PASCAL English ver.
A. Multiple choice
1. Function is ...
a) A set of algorithms that can easel
b) Transformation due to mapping a value to another value
c) A set of algorithms that only named
d) A set of algorithms that can not be used
e) All one second. Procedure is ... a) A set of algorithms that are named and can be called upon to do nothing of the instruction b) A set of algorithms that only named c) A set of algorithms that are named and can be called upon to stop an instruction d) A set of algorithms that can not be used e) all one third. Local variable is ... a) Variables that can only be used for the algorithm on the function / procedure A b) variable that can be used in both the main program and the function / procedure c) The variables can only be used in the main program d) The variables can only be used to the algorithm in the function / other procedures e) All wrong 4. Global variable is ... a) Variables that can only be used for the algorithm on the function / procedure A b) variable that can be used in both the main program and the function / procedure c) The variables can only be used in the main program d) The variables can only be used to the algorithm in the function / other procedures e) All wrong 5. Provided that the parameters while calling a function or procedure, that is ... a) factual Parameter b) normal parameters c) formal parameter d) the actual parameter e) global parameter 6. The parameters that placed in the header within functions / procedures, that is ... a) factual Parameter b) normal parameters c) formal parameter d) the actual parameter e) global parameter Program below, for the question no.7-10! Program error; Var x, y1: integer; function tambah2 (a, b: integer) 3: integer; begin added: = a + b; end; Begin Write ( 'Enter the first number:'); Readln (x); Write ( 'Enter the second number:'); Readln (y); Write (add (x, y) 4); Readln; End. 7. Algorithm text that underscore in number 1, that is ... a) the actual parameter b) Parameter factual c) The local variable d) global Varabel e) Major functions 8. Algorithm text that underscore in number 2 that is ... a) the actual parameter b) Parameter factual c) The local variable d) Global Variables e) Major functions 9. Algorithm text that underscore in number 3 that is ... a) the actual parameter b) Parameter factual c) The local variable d) Global Variables e) Name of function 10. Algorithm text that underscore in number 4 that is ... a) the actual parameter b) Parameter factual c) The local variable d) global Varabel e) Name function B. Essay 1. Describe the definition of function? Answer: Function is a program that provides / restore (return) a value of a specific type 2. Describe the definition of procedure? Answer: A set of algorithms that are named and can be called upon to do nothing of the instruction 3. Mention and describe various parameters! Answer: • The input parameters; is a parameter that can only be used as an input function / procedure • Parameteroutput; is a parameter that can only be used as output function / procedure • Parameter input / output; a parameter that can be used as input and output functions / procedures 4. Identify and explain the difference between functions and procedures? Answer: • The declaration procedure begins with 'Procedure'. While the function declaration begins with 'Function'. • Output of procedures are within the procedure itself. While the output of the functions that are in the main program. • The procedure does not return a value to the main program, so that the calling procedure can be performed with only 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 Variables b) Global Variables c) Actual Parameter d) Formal Parameter Answer: a) Local Variables; variables that can only be used on the function / procedure only b) Global Variables; variables that can be used in the main program and the function / procedure c) Actual Parameter; parameter is included when the calling function / procedure d) Formal Parameter; parameters are placed in the header of the function / procedure C. Journal 1. Make a bio program using procedure! Example Name: Ganool NIM: 100023456 Age: 35 program cobaprosedur; uses crt; var name, nim, age: string; procedure biographical data; begin clrscr; writeln ( 'Biography'); writeln; writeln ( ' name: ', name); writeln (' NIM: 'nim); writeln (' age: ', age); writeln; end; begin clrscr; writeln (' Enter Biography '); writeln; write (' name: ' ); Readln (name); write ( 'NIM:'); Readln (nim); write ( 'Age:'); Readln (age); bio; Readln; end. 2. Make a bio program using function! Example Name: Ganool NIM: 100023456

























































































































































Being translated, please wait..
 
Other languages
The translation tool support: Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese, Chinese Traditional, Corsican, Croatian, Czech, Danish, Detect language, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Odia (Oriya), Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scots Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Tatar, Telugu, Thai, Turkish, Turkmen, Ukrainian, Urdu, Uyghur, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu, Language translation.

Copyright ©2024 I Love Translation. All reserved.

E-mail: