Results (
English) 2:
[Copy]Copied!
Chapter 6
PASCAL English ver.
A. Multiple choice
1. Recursive is ...
a) algorithm to reload a function / procedure
b) algorithm to repeat a function / procedure
c) The algorithm for a function call / other procedures
d) Algorithms for calling himself
e) All of the above 2. Callings yourself in a recursive referred to ... a) recurrent b) Basis c) Recursive d) Sequential e) Sekursio 3. Defined circumstances to stop the recursive process is called ... a) recurrent b) Basis c) Recursive d) Sequential e) Sekursio Consider the program below! Program below to question no. 4-6! Program recursive; Uses crt; Var n: integer; Function nFaktorial1 (n: integer) 2: integer; Begin If (n <> 0) then nFaktorial3: = n * nFaktorial (n-1) 4; else nFaktorial : = 1; end; Begin Write ( 'how factorial:'); Readln (n); Writeln (nFaktorial (n) 5); End. 4. In the above program, which is the base is ... a) Function nFaktorial b) (n: integer) c) nFaktorial d) (n-1) e) nFaktorial (n) 5. In the above program, which is recurrent is ... a) Function nFaktorial b) (n: integer) c) nFaktorial d) (n-1) e) nFaktorial (n) 6. If the above program is entered n = 5, then the output of that program is ... a) 5 b) 60 c) 120 d) 240 e) 360 Consider the program below! Program below to question no. 7-9! Program recursive; Uses crt; Type MHS = record name, nim: string; end; Var m: MHS; n: integer; Procedure input (var n: integer) 1; Begin If (n> 0) 2 then begin Write ( 'Enter the name:'); Readln (m.nama); Write ( 'Enter nim:'); Readln (m.nim); n: = n - 13; input (n) 4; end; end; Begin Write ( 'Enter many students:'); Readln (n); input (n); End. 5 7. In the above program, which is the base is ... a) Input (var n: integer) b) (n> 0) c) n: = n - 1 d) input (n) e) end. 8. In the above program, which is recurrent is ... a) Input (var n: integer) b) (n> 0) c) n: = n - 1 d) input (n) e) end. 9. If input n = 5, there will be a loop as much as ... a) 1 time b) 2 times c) 3 times d) 4 times e) 5 times 10. If 'n: = n - 1' is replaced with 'n: = n - 3' and entered n = 5, then there will occur perulang much as ... a) 1 time b) 2 times c) 3 times d) 4 times e) 5 times B. Essay 1. Explain what is meant by recursive! Answer: The method in which the programming instructions contained in a function that calls the function it sendri, or more commonly referred calls itself 2. Explain what is meant by base! Answer: Base is a condition for stopping the running recursive 3. Explain what is meant by recurrent! Answer: recurrent is the current state of a function / procedure calls itself. 4. Mention the advantages of recursive! Answer: • It is easy to do looping with extensive limitations in terms of looping in a large scale. • Can looping the function limitation. 5. Mention shortage of recursive! Answer: • At recursive, it can not run the algorithm nested loop or loop nest. • Normally, makes the function difficult to understand. • Only suitable for certain issues only. • Trace error is difficult. • Requires stack larger, because every time a function is called, the local variables and formal parameters will be placed onto the stack, and at times will cause the stack is not enough anymore (stack Overrun). • the process is rather complicated because there are pemangilan function that repeatedly and calling the data are stacked. C , Journal 1. Create program biographical data with a recursive! Program recursive; Uses crt; Type MHS = record name, nim: string; end; Var m: MHS; n: integer; Procedure input (var n: integer); Begin If (n> 0) then begin Write ( 'Enter the name:'); Readln (m.nama); Write ( 'Enter nim:'); Readln (m.nim); n: = n - 1; input (n); end; end; Begin Write ( 'Enter many students:'); Readln (n); input (n); End. 2. Create a program to find the value of factorial! Program recursive; Uses crt; Var n: integer; Function nFaktorial (n: integer): integer; Begin If (n <> 0) then nFaktorial: = n * nFaktorial (n-1); else nFaktorial: = 1; end; Begin Write ( 'how factorial:'); Readln (n); Writeln (nFaktorial (n)); End.
Being translated, please wait..
