Test: Java Fundamentals Midterm Exam
Test: Java Fundamentals Midterm Exam
Review your answers, feedback, and question scores below. An asterisk (*) indicates a
correct answer.
Section 2
(Answer all questions in this section)
True (*)
False
Correct
Correct
True (*)
False
True
False (*)
Correct
6. Which of the following is not a type of event listener in Alice? Mark for Review
(1) Points
Scene Activation/Time
Cursor (*)
Keyboard
Mouse
Position/Orientation
Correct
8. In Alice, we can avoid object collision using what? Mark for Review
(1) Points
Slowing movements down.
False (*)
False
Correct
11. From your Alice lessons, a flowchart could be created in a software program, or
documented in a journal. True or false? Mark for Review
(1) Points
True (*)
False
Correct
12. In Alice, objects inherit the characteristics of their: Mark for Review
(1) Points
Code
Project
Class (*)
Program
Class
Procedure (*)
Direction (*)
Amount (*)
False
Correct
15. From your Alice lessons, animations should be tested by the programmer before
they are considered complete. True or false? Mark for Review
(1) Points
True (*)
False
Correct
16. Java programs can be simple programs that run from the command line, or they can have
complex graphical user interfaces. True or false? Mark for Review
(1) Points
True (*)
False
Correct
17. If you need to repeat a group of Java statements many times, which Java
construct should you use? Mark for Review
(1) Points (Choose all correct answers)
repeat...until
if
// (*)
>
Correct
20. In Java, which symbol is used to assign one value to another? Mark for
Review
(1) Points
<
>
= (*)
//
Correct
21. Which of the following programming instructions commands the fish to continuously
move forward a random speed between 0.5 and 1.0 meters, minus 0.25 meters, until it
collides with the shark? Mark for Review
(1) Points
(*)
Correct
22. A variable is a named location inside the computer's memory; once there, the
information can be retrieved and changed. True or false? Mark for Review
(1) Points
True (*)
False
Correct
Section 3 (Answer all questions in this section) 23. In Greenfoot,
constructors can be used to create new instances of objects. True or false? Mark for
Review
(1) Points
True (*)
False
False
Correct
25. In Greenfoot, actor constructors can be used to create images or values and
assign them to the variables. True or false? Mark for Review
(1) Points
True (*)
False
Correct
Section 3 (Answer all questions in this section) 26. In Greenfoot, which method
checks if a key on the keyboard has been pressed? Mark for Review
(1) Points
keyPress method
keyUp method
keyClick method
Comma missing
Correct
28. In Greenfoot, in which programming task are the objects identified? Mark
for Review
(1) Points
Define the problem.
Correct
30. Use your Greenfoot knowldege: Abstraction occurs in many different ways in
programming. True or false? Mark for Review
(1) Points
True (*)
False
Correct
Section 3 (Answer all questions in this section) 31. In Greenfoot, instances inherit
the characteristics of the subclass they belong to, but not the superclass. True or false?
Mark for Review
(1) Points
True
False (*)
False
Correct
33. From the Greenfoot IDE, where are inherited methods located? Mark for
Review
(1) Points
In the computer network
False
Correct
35. From your Greenfoot lessons, a comparison operator returns what value when a
number meets its requirement? Mark for Review
(1) Points
0
VOID
1 (*)
NULL
False (*)
Classes (*)
Scenarios
Objects (*)
False (*)
Correct
41. From your Greenfoot lessons, which of the following logic operators represents "and"?
Mark for Review
(1) Points
&
&& (*)
False (*)
Set image...
Inspect
Remove
Correct
45. From your Greenfoot lessons, in an if-statement, the programming statements
written in curly brackets are executed simultaneously. True or false? Mark for Review
(1) Points
True
False (*)
Correct
46. From your Greenfoot lessons, if the condition in an if-statement is true, the first code
segment is executed. True or false? Mark for Review
(1) Points
True (*)
False
Correct
48. When designing a game in Greenfoot, it helps to define the actions that will take
place in a textual storyboard. True or false? Mark for Review
(1) Points
True (*)
False
Correct
49. In Greenfoot, a way to have all subclasses of a superclass inherit a method is by
adding the method to the superclass. True or false? Mark for Review
(1) Points
True (*)
False
Instance method
World method
Code method
Section 2
1. Which of the following is not a type of event listener in Alice? Mark for Review
(1) Points
Keyboard
Mouse
Position/Orientation
(1) Points
Recent
My Projects
3. In Alice, you can access the Java on the side option through which menu option?
Mark for Review
(1) Points
Project
Run
Edit
4. From your Alice lessons, variables are fixed and cannot be changed. True or false?
Mark for Review
(1) Points
True
5. You have a Class representing Cat. A cat can meow, purr, catch mice, and so on. When you
create a new cat, what is it called? Mark for Review
(1) Points
A subprogram
A submethod
A subclass
Section 2
6. Which of the following statements about methods is false? Mark for Review
(1) Points
Methods whose return type is not void are required to include a return statement
specifying what to return.
The order in which methods are listed within the class is not important.
Java does not permit nesting one method definition within another method's definition.
7. In Alice, the use of conditional control structures allows what two types of loops?
Mark for Review
(1) Points
together
infinite
switch
8. From your Alice lessons, where on an object do an object's axes intersect? Mark for
Review
(1) Points
(1) Points
All of the procedures display in alphabetical order in the Procedures tab.
10. What type of Alice listener object is required to target a mouse-click on any object in the
scene, allowing the user to drag that object around the scene when the animation is running?
Mark for Review
(1) Points
Section 2
11. In Alice, which of the following arguments could be replaced with a random number?
Mark for Review
(1) Points
Direction
12. Alice uses built-in math operators. They are: Mark for Review
(1) Points
Add
Subtract
Multiply
Divide
13. In Alice, which of the following programming statements moves the butterfly forward,
double the distance to the tree? Mark for Review
(1) Points
14. In Alice, which function is used to move an object directly to the center point of another
object? Mark for Review
(1) Points
getDuration
getDepth
getObject
15. When you disable a programming instruction, it is still executed when you run the Alice
animation. True or false? Mark for Review
(1) Points
True
Section 2
(1) Points
17. In Alice, the procedures' arguments allow the programmer to adjust the object, motion,
distance amount, and time duration. True or false? Mark for Review
(1) Points
False
18. In Alice, a walking motion for a bipedal object can be achieved without the Do Together
control statement. True or false? Mark for Review
(1) Points
True
19. In Alice, what are the forms of a scenario? Mark for Review
(1) Points
(Choose all correct answers)
20. In Alice, when a new procedure is declared, all subclasses of the superclass will inherit the
procedure. True or false? Mark for Review
(1) Points
False
Section 2
21. Procedural abstraction may need to be implemented if an object in Alice needs to perform
an action, but there isn't an inherited procedure that accomplishes that action. True or false? Mark
for Review
(1) Points
False
22. The list below describes variables. All are correct except which one? Mark for Review
(1) Points
A place in memory where data of a specific type can be stored for later retrieval and use.
(1) Points
int
double
long
boolean
24. Alice 3 will periodically remind you to save your project. True or false? Mark for Review
(1) Points
True
Section 3
25. In Greenfoot, which of the following methods return the world that the instance lives
in? Mark for Review
(1) Points
getXY()
getRotation()
Section 3
(1) Points
True
27. In Greenfoot you can only access the methods of the current class? Mark for Review
(1) Points
True
28. In the Greenfoot IDE, what does the AND operator (&&) do? Mark for Review
(1) Points
Compares two boolean values, and returns a boolean value which is true if and only if one
of its operands are true.
Compares two boolean values, and returns a boolean value which is true if and only if both
of its operands are true. (*)
Compares two boolean values and returns a boolean value which is true if either one of the
operands is true.
Compares two boolean variables or expressions and returns a result that is true if either of
its operands are true.
29. In Greenfoot, which of the following statements could prevent an infinite loop from
occurring? Mark for Review
(1) Points
I = 100 + i
i = i + 1 (*)
i = i
i=1
30. In Greenfoot, a local variable is declared at the beginning of a class. True or false?
Mark for Review
(1) Points
True
Section 3
31. In Greenfoot, what types of values cannot be stored in a local variable? Mark for
Review
(1) Points
Integers
Objects
32. Which of the following type of audience should you ask to play your Greenfoot game during
the testing phase? Mark for Review
(1) Points
Testing
Programmer
Primary
33. In object oriented programming, programmers analyze a problem and create objects to
solve the problem. True or false? Mark for Review
(1) Points
True (*)
False
34. Which one of the following can be used to detect when 2 actors collide? Mark for
Review
(1) Points
isCollision()
hasCollided()
isContact()
35. In Greenfoot, a way to have all subclasses of a superclass inherit a method is by adding the
method to the superclass. True or false? Mark for Review
(1) Points
False
Section 3
36. What type of parameter does the Greenfoot playSound method expect? Mark for
Review
(1) Points
37. Greenfoot has tools to record sound. True or false? Mark for Review
(1) Points
False
38. Which of the following answers have the correct syntax for declaring a class variable in
Greenfoot? Mark for Review
(1) Points
39. In Greenfoot, which method is used to add a new instance to a scenario when the world is
initialized? Mark for Review
(1) Points
addClass
addWorld
addInstance
40. Constructors are called automatically when a new intance of a class is created? True or
false? Mark for Review
(1) Points
False
41. In Greenfoot, the instance has a source code editor. True or false? Mark for Review
(1) Points
True
42. In Greenfoot, the move method expects what type of information in its parameters? Mark
for Review
(1) Points
43. Using the Greenfoot IDE, only five instances can be added to a scenario. True or false?
Mark for Review
(1) Points
True
44. In Greenfoot, the body of the method is located in between which of the following
characters? Mark for Review
(1) Points
Asterisks **
Parnetheses ( )
45. In Greenfoot, a subclass is a specialization of a superclass. True or false? Mark for
Review
(1) Points
Section 3
46. In Greenfoot, the Run button repeatedly executes all of the programming statements in the
class's act method in sequential order until the pause button is clicked. True or false? Mark for
Review
(1) Points
False
47. From your Greenfoot lessons, what can methods belong to? Mark for Review
(1) Points
Galleries
Scenarios
48. In Greenfoot, the origin of the world coordinate system (0,0) starts in the center of the
world. True or false? Mark for Review
(1) Points
True
49. The first step to executing an if-else statement is to:____________. Mark for Review
(1) Points
Execute the else statement
50. An if-else statement executes its first code block if a condition is true, and its second code
block if a condition is false, but not both. True or false? Mark for Review
(1) Points
False
1 comment:
1.
It’s not that I’m horny all the time. Hey, i am looking for an online sexual partner ;)
Click on my boobs if you are interested (. )( .)
Reply
Paling Dilihat
Section 1 Quiz (Answer all questions in this section) 1. A specialized type of
software, which controls an...
Section 10 Quiz (Answer all questions in this section) 1. A multiple-row operator
expects how many values? Mark ...
Section 6 Quiz (Answer all questions in this section) 1. Examine the following
Entity and decide which rule of No...
Section 5 Quiz (Answer all questions in this section) 1. CASE and DECODE
evaluate expressions in a similar...
Section 3 Quiz (Answer all questions in this section) 1. What are the three
properties that every relationsh...
Section 4 Quiz (Answer all questions in this section) 1. A business rule such as "All
accounts must be paid in...
Blog archive
► 2019 (5)
► 2018 (1)
▼ 2017 (50)
o ► December (2)
o ► November (3)
o ► September (1)
o ► July (7)
o ▼ February (21)
Final Exam Java Fundamental
Final Exam Database Design Oracle
Midterm Exam Database Design Oracle
Section 9 Quiz Database Design Oracle
Section 8 Quiz Database Design Oracle
Section 7 Quiz Database Design Oracle
Section 6 Quiz Database Design Oracle
Section 5 Quiz Database Design Oracle
Section 4 Quiz Database Design Oracle
Section 3 Quiz Database Design Oracle
Section 2 Quiz Database Design Oracle
Section 1 Quiz Database Design Oracle
Final Exam Database Programming With SQL
Midterm Exam Database Programming With SQL
Midtem Exam Oracle Java Fundamental
Section 18 Quiz Database Programming With SQL
Section 17 Quiz Database Programming With SQL
Section 16 Quiz Database Programming With SQL
Section 15 Quiz Database Programming With SQL
Section 14 Quiz Database Programming With SQL
Section 13 Quiz Database Programming With SQL
o ► January (16)
► 2016 (7)
► 2015 (6)
► 2013 (3)
► 2012 (4)
► 2010 (1)
Label Pilihan
oracle (39) database (29) quiz (27) programming (25) sql (18) Database programming with SQL (17)
java (17) database design (11) design (10) section 3 (8) fundamental (7) java Fundamental (5) exam
(4) section 2 (4) Final (3) final exam (3) midterm (3) midterm exam (3) section 4 (3) section 5 (3)
section 6 (3) section 7 (3) cara (2) daftar (2) dasar (2) desimal (2) jaringan (2) java dasar (2) membuat
(2) microsoft (2) motor (2) netbeans (2) otomatis (2) pemrograman (2) perhitungan (2) section 1 (2)
section 8 (2) section 9 (2) word (2) Anime manga (1) Biner (1) Futsal (1) Gunung (1) Heksadesimal (1)
Kucing berak (1) Kucing kawin (1) Leuwi hejo (1) Mencari Kerja (1) Now you see me 2 (1) Oktal (1)
Percobaan pada kacang hijau (1) String (1) XXI (1) ace (1) address (1) akibat rokok (1) android to
laptop (1) ascii (1) assertion (1) bilangan (1) blok (1) bogor (1) botak (1) broadcast (1) buang (1)
bukan perokok (1) cara membuat daftar tabel otomatis (1) cara menanam kacang hijau (1) cara
screen mirroring (1) cileungsi (1) class (1) class ip address (1) collection (1) commuter line (1) daftar
gambar otomatis (1) daftar isi (1) daftar isi otomatis (1) daftar tabel otomatis (1) dasadarma (1)
dasadarma pramuka (1) decimal (1) deni (1) dewi sartika (1) ditipu (1) download pokemon go (1)
exception (1) fair play (1) gambar (1) generics (1) go (1) gorengan (1) gym (1) halaman parkir (1) hello
world (1) hexadecimal (1) host (1) huruf (1) hutan bakau (1) hutan manggrove (1) hutan pinus (1)
input (1) ip (1) ip address (1) ip address khusus (1) isi (1) jalan jalan (1) jalan kaki (1) kacang hijau (1)
kafe mantan (1) kaskus (1) kedai (1) kedai mantan (1) kelas (1) keluarga (1) kendaraan (1) kereta (1)
khusus (1) kompetisi futsal (1) komputer (1) kongkow (1) kopi (1) kopi hitam (1) kranji (1) krl (1)
kucing Beranak (1) kucing anggora (1) kucing melly (1) kucing ngentot (1) kucing ngewe (1) layar (1)
lowongan Kerja (1) makan (1) makanan sisa (1) mantan (1) masjid (1) mencetak (1) metmall (1)
metropolotan mall (1) microsoft word (1) miskin (1) mobil (1) ms (1) ms word (1) muara angke (1)
multicast (1) nongkrong (1) nonton bioskop (1) numerik (1) octal (1) omelete (1) online (1) output (1)
pancar (1) panitia negur (1) pantai indah kapuk (1) pecinta kopi (1) penggalang (1) perokok (1) petani
(1) pik (1) pokeball (1) pokemon (1) pokemon go (1) pokestop (1) pramuka (1) processing (1)
program sederhana (1) qu (1) range (1) range ip address (1) review pokemon go (1) rf (1) rising force
(1) rokok (1) saykoji (1) screen miroring (1) section 10 (1) section 12 (1) section 13 (1) section 14 (1)
section 15 (1) section 16 (1) section 17 (1) section 18 (1) sholat jumat (1) sia sia (1) sisa (1) skripsi (1)
sltp (1) smp (1) stasiun (1) subnet (1) subnet mask (1) tabel (1) table (1) tenda (1) theme song (1)
tilang polisi (1) top (1) top kopi (1) trisatya (1) trisatya pramuka (1) turnamen futsal (1) wasit (1)
wasit salah (1) yayasan buda tzu chi (1)
Formulir Kontak
Name
Email *
Message *
About Me
Deni Ace
youtube.com/c/deniace
Komentar
Report abuse
Section 2 Quiz (Answer all questions in this section) 1. An Entity Relationship
model is independent of the hardw...
Section 1 Quiz (Answer all questions in this section) 1. A specialized type of
software, which controls an...
Home
Membuat daftar isi otomatis dengan file yang berbeda pada Microsoft Word
Ini adalah tutorial membuat daftar isi otomatis pada Ms Word. Biasanya kan harus 1 file, ini
dengan file yang berbeda, misal bab 1 beda fi...
FollowersKomentar
Anak IT
Home
Programing
o
o
o
o
o
o
o
o
Komputer
o
o
o
o
o
o
o
o
Tecknology
Smartphone
Tips & Trik
Tutorial
Info
Home
Programing
o
o
o
o
o
o
o
o
Komputer
o
o
o
o
o
o
o
o
Tecknology
Smartphone
Tips & Trik
Tutorial
Info
Kunci Jawaban Quiz Oracle Academy - Artikel ini bersisi tentang Kumpulan Kunci Jawaban Quiz
Oracle Academy secara lengkap, kamu hanya mencari soal mana yang kamu ingin cari jawabannya
secara lengkap. Kunci Jawaban Quiz Oracle Academy ini di hasilkan dari pretest langsung di Oracle
Academy. di bagikan guna untuk berbagi kepada teman-teman yang penasaran apa Kunci Jawaban
Quiz Oracle Academy dari soal-soal tertentu yang teman-teman tidak menemukan jawabannya.
All objects in Alice have three dimensional coordinates on which axes? (Choose all correct answers)
Answer : x,y,and z
Answer : getDepth
From your Alice lessons, which programming instruction represents the following movement: A
turtle moves forward half the distance to the flower.
Before you can begin to develop the animation storyboard, what must be defined? Mark for
Review
Answer : Class
From your Alice lessons, which of the following is a tool to show the logic of an animation? Answer
: Flowchart
From your Alice lessons, what does the Count control statement do?
In Alice, control statements are dragged into the Code editor. True or false?
Answer : True
Which of the following is a reason why you might disable programming statements in your Alice
code?
Answer : To help isolate portions of code during testing
Debugging and testing is the process of running the animation one time, and adjusting the control
statements, procedures, and arguments.
Answer : False
Answer : True
Answer : Move
In Alice, the procedures' arguments allow the programmer to adjust the object, motion, distance
amount, and time duration. True or false?
Answer : True
Consider the following: You want to use the BufferedReader and InputStreamReader classes to get
user input from the command line. Which one of the following import statements must you use?
The list below displays valid primitive types in Java, except which one?
Answer : String
Answer : Event listeners trigger the correct responses, Math expressions calculate as expected,
From your Alice lessons, if you examined a science process that had many steps, which of the
following is a way that you could apply functional decomposition to this process?
An event is any action initiated by the user that is designed to influence the program?s execution
during play.
Answer : True
When creating an event based on a keypress which event handler would you use?
Answer : Keyboard
A variable is a named location inside the computer's memory; once there, the information can be
retrieved and changed. True or false?
Answer : True
From your Alice lessons, variables are fixed and cannot be changed. True or false?
Answer : False
In Alice, the If control structure can process one true and one false response. True or false?
Answer : True
Which of the following IF control structures command the blue tang fish to roll and simultaneously
move down if it collides with a shark, or move forward if it does not collide with a shark?
Answer : C
Answer : Do Together
In Alice, a computer program requires functions to tell it how to perform the procedure. True or
false?
Answer : False
Manually manipulating an Alice object with your cursor is a way to precisely position an object. True
or false?
Answer : False
Answer : False
Before you can begin to develop the animation storyboard, what must be defined?
Answer : Flowchart
Which Alice execution task corresponds with the following storyboard statement? Cat turns to face
mouse
From your Alice lessons, which control statement executes instructions simultaneously?
Answer : Do together
From your Alice lessons, built-in functions provide precise property details for the following areas:
From your Alice lessons, which programming instruction represents the following movement: A
turtle moves forward half the distance to the flower.
The comments you enter in Alice should describe the sequence of actions that take place in the code
segment. True or false?
Answer : True
Which of the following is a reason why you might disable programming statements in your Alice
code?
Answer : False
Answer : Move
In Alice, a computer program requires functions to tell it how to perform the procedure. True or
false?
Answer : False
Answer : Do together
Programming comments do not affect the functionality of your Alice animation. True or false?
Answer : True
What is the first step to entering comments in an Alice program?
Answer : Drag and drop the comments tile above a code segment.
In Alice the Functions tab will display the pre-defined functions for the selected instance. True or
false?
Answer : True
In Alice, what function would you use to get a wholenumber from the user?
Answer : getIntegerFromUser
In Alice, there is no way of reordering the function list in the function tab. True or false?
Answer : False
Defining the scenario, and the Alice animation to represent the scenario, is the first step to
programming your animation. True or false?
Answer : True
In Alice, declaring a new procedure to shorten code and make it easier to read is a procedural
abstraction technique. True or false?
Answer : True
Before you can begin to develop the animation storyboard, what must be defined?
Answer : True
Answer : True
From your Alice lessons, which programming instruction represents the following movement: A cat
moves forward double (or twice) the distance to the tree.
In Alice, where you would you get access to the specific joints of an object that are not available
through the object drop down menu?
Answer : False
Which Alice execution task corresponds with the following storyboard statement?
In Alice, the computer specifies the low and high range values for the range of numbers from which
to pull a randomized number. True or false?
Answer : False
Debugging and testing is the process of running the animation one time, and adjusting the control
statements, procedures, and arguments.
Answer : False
In Alice the Functions tab will display the pre-defined functions for the selected instance. True or
false?
Answer : True
In Alice, the procedures' arguments allow the programmer to adjust the object, motion, distance
amount, and time duration. True or false?
Answer : True
Which of the following actions would require a control statement to control animation timing?
Define the value of the variable LapCount based on the following math calculation: LapCount + 10 =
15
Answer : 5
Answer : Function
In Alice, what are the forms of a scenario?
From your Alice lessons, animations should be tested by the programmer before they are considered
complete. True or false?
Answer : True
From your Alice lessons, when testing your animation, you should test that comments were added
below each sequence of instructions in the code. True or false?
Answer : False
Answer : False
In Alice, what tab would you choose to start a new animation with a pre-populated world?
Answer : Starters
A data type defines the type of procedures a variable can store. True or false? Mark for Review
Answer : False
If a value has been assigned to (is stored in) a variable, that value will be overwritten when another
value is assigned to the variable using the assignment "=" operator. True or false?
Answer : True
In Alice, the use of conditional control structures allows what two types of loops?
Answer : conditional
Answer : do while
Answer : =
Answer : k is 5
When you want specific code to be executed only if certain conditions are met, what type of Java
construct would you use?
Answer : if
If you need to repeat a group of Java statements many times, which Java construct should you use?
Answer : False
You want an event to happen when an object collides with another object, which category of event
handler would you choose?
Answer : Position/Orientation
Answer : Function
The initializer of a variable with a TextString value type could be (select all that apply):
Answer : "Greetings"
Answer : "Howdy"
Answer : "4"
Which of the following WHILE control structures commands the fish to move forward repeatedly 0.5
meters at a time, but stop if it collides with the shark?
Answer :
In Alice, we use the WHILE control statement to implement the conditional loop. True or false?
Answer : True
In Alice, which of the following programming statements moves the butterfly forward, double the
distance to the tree?
Answer : 3*3=9
From your Alice lessons, a textual storyboard provides a detailed, ordered list of the actions each
object performs in each scene of the animation. True or false?
Answer : True
From your Alice lessons, when testing your animation, you should test that comments were added
below each sequence of instructions in the code. True or false?
Answer : False
What can be used as a guideline to ensure your Alice animation fulfills animation principles?
An event is any action initiated by the user that is designed to influence the program?s execution
during play.
Answer : True
In Alice, what tab would you choose to start a new animation with a pre-populated world?
Answer : Starters
Answer : $
If a value has been assigned to (is stored in) a variable, that value will be overwritten when another
value is assigned to the variable using the assignment "=" operator. True or false?
Answer : True
Answer : False
The list below contains method descriptions. All are correct except which one?
Define the value of the variable LapCount based on the following math calculation: LapCount + 10 =
15
Answer : 5
The initializer of a variable with a TextString value type could be (select all that apply):
Answer : "Greetings"
Answer : "Howdy"
Answer : “4"
The list below contains method descriptions. All are correct except which one?
Answer : 5
The initializer of a variable with a TextString value type could be (select all that apply):
Answer : "Greetings"
Answer : "Howdy"
Answer : "4"
The Alice If control structure requires the false statement to be populated. True or false?
Answer : False
To access the Alice Code editor from the Scene editor, which button do you click?
The Alice Scene editor contains tools to rotate the camera view. True or false?
Answer : True
In Alice the Functions tab will display the pre-defined functions for the selected instance. True or
false?
Answer : True
The Procedures tab and the Functions tab are the two tabs available in the Alice methods panel.
True or false?
Answer : True
Which of the following instructions turns the clown fish left 5 meters?
Answer : turnToFace
Answer : Do In Order
To add a procedure to myFirstMethod, right-click on the procedure you wish to add and select the
Add button.
Answer : False
Answer : Direction
Answer : Amount
An argument is a value that the procedure uses to complete its task. True or false?
Answer : True
Programming comments do not affect the functionality of your Alice animation. True or false?
Answer : True
Answer : Drag and drop the comments tile above a code segment.
Answer : Copy
Answer : Disable
Answer : Reorder
When you disable a programming instruction, it is still executed when you run the Alice animation.
True or false?
Answer : False
After each execution of your Alice animation, what element or elements could be adjusted in your
code?
Answer : True
Answer : Do together
Which Alice execution task corresponds with the following storyboard statement? Cat rolls to the
left.
In Alice, control statements are dragged into the Code editor. True or false?
Answer : True
In Alice, the while control statement executes a set of procedures a specific number of times. True or
false?
Answer : False
In Alice, the computer specifies the low and high range values for the range of numbers from which
to pull a randomized number. True or false?
Answer : False
In Alice, which of the following arguments could be replaced with a random number?
Answer : Distance
Answer : False
Breaking down a problem or process into smaller parts makes it easier to manage. True or false?
Answer : True
A textual storyboard helps the reader understand the actions that will take place during the
animation. True or false?
Answer : True
Answer : Flowchart
A flowchart is a useful way to illustrate how your Alice animation’s characters will look. True or
false?
Answer : False
Answer : Each subclass inherits the methods and properties of its superclass.
Which of the following would a clown fish object in Alice inherit from its class?
Answer : All of the above
Procedural abstraction may need to be implemented if an object in Alice needs to perform an action,
but there isn’t an inherited procedure that accomplishes that action. True or false?
Answer : True
Which of the following is a reason why procedural abstraction may be used in programming an
animation?
In Alice, new procedures are declared in the Scene editor. True or false?
Answer : False
In Alice, you could identify when new procedures need to be declared by reviewing the textual
storyboard for the animation. True or false?
Answer : True
In Alice, which of the following situations could benefit from declaring a new procedure?
Answer : An object does not have a default procedure for a motion, such as swimming.
Baca Juga
In Alice, if only objects that walk on four legs need to use a procedure, in which superclass would the
procedure be declared?
Answer : Quadruped
In Alice, which of the following is not a control statement?
Answer : Move
Answer : Do Together
In Alice, a walking motion for a bipedal object can be achieved without the Do Together control
statement. True or false?
Answer : False
In Alice, different programming is not required for different objects, because all objects move the
same way. True or false?
Answer : False
In Alice, when two objects are synchronized and move together, this means that one object is:
In Alice, which procedure is used to assign one object as the vehicle of another?
Answer : setVehicle
Answer : True
Which of the following are ways to open an existing Alice project file after launching Alice? Answer :
Select the project from the My Projects tab.
Answer : Browse for the project using the File System tab.
Answer : False
Answer : Change size of the object and stretch it along the x, y, and z axes
Manually manipulating an Alice object with your cursor is a way to precisely position an object. True
or false?
Answer : False
Answer : Spin
Answer : False
When you edit an object’s properties in the Scene editor, the changes do not take effect until the
Run button is clicked. True or false?
Answer : False
One type of object property is an object’s position in the scene. True or false?
Answer : True
Which of the following is not one of the positioning axes used in Alice 3?
Answer : w
In Alice, where does an instance’s axes intersect?
Which handle style would be used to rotate an object’s sub-part about the x, y, and z axes?
Answer : Rotation
Rings will appear around a sub-part indicating how you can reposition it. True or false?
Answer : True
Answer : Starters
In Alice, which of the following programming statements moves the alien backward the distance to
the asteroid, minus 2 meters?
Answer : Drag and drop the comments tile above a code segment.
Which of the following are examples of elements you would test in your Alice animation?
You want an event to happen when an object collides with another object, which category of event
handler would you choose?
Answer : Position/Orientation
Main is an example of what in the following code?
System.out.println{"Hello World!");
}
Answer : A method
Answer : Function
Answer : end
Answer : begin
In Alice, if only objects that walk on four legs need to use a procedure, in which superclass would the
procedure be declared? When a new procedure is declared, all subclasses of the superclass will
inherit the procedure.
Answer : Quadruped
Answer : Move
If a value has been assigned to (is stored in) a variable, that value will be overwritten when another
value is assigned to the variable using the assignment "=" operator. –
Answer : True
Answer : move():
From your Greenfoot lessons, what can methods belong to?
Answer : Classes
In Greenfoot, the turn method expects what type of information in its parameters?
In Greenfoot, the move method expects what type of information in its parameters?
In the Greenfoot IDE, an instance's position is on the x and y coordinates. True or false?
Answer : True
From your Greenfoot lessons, what are the ways that you can view a class's methods?
Answer : Greenfoot
In the following Greenfoot array, what statement would you write to access the "a" key?
Answer : keynames[0]
Answer : I
In Greenfoot you can interact with the scenario using a mouse.
Answer : True
Answer : The condition loopVal < 5 is tested before executing anything further in the program.
Event listeners look for and resopnd to the interactivity of the computer. True or false?
Answer : False
Which one of the following event listener types is not available at the top-level of the addEvent drop
down list in Alice?
Answer : Collision
Which of the following programming instructions commands the fish to continuously move forward
a random speed between 0.5 and 1.0 meters, minus 0.25 meters, until it collides with the shark?
Answer : True
In Alice, we use the WHILE control statement to implement the conditional loop. True or false?
Answer : True
Answer : False
From your Alice lessons, the "Checklist for Animation Completion" does not ask questions about the
scenario and storyboards, because these are not valid parts of the animation creation process. True
or false?
Answer : False
Which of the following are examples of elements you would test in your Alice animation?
Answer : Objects move with smooth timing., Math expressions calculate as expected., dan Event
listeners trigger the correct responses.
From your Alice lessons, animations should be tested by the programmer before they are considered
complete. True or false?
Answer : True
When you edit an object's properties in the Scene editor, the changes do not take effect until the
Run button is clicked. True or false?
Answer : False
In Alice, functions are dragged into the control statement, not the procedure. True or false?
Answer : False
Alice, when using the getDistanceTo function what menu option would you use to subtract a set
value from the distance?
Answer : Math
In Alice, once an instance is added to the scene, it cannot be deleted. True or false?
Answer : False
Which of the following actions would require a control statement to control animation timing?
Answer : A bird flying., A fish swimming., dan A biped object walking.
Which of the following would not be an argument in an Alice programming instruction that
commands a person object to move forward 2 meters?
Which of the following instructions turns the clown fish left 5 meters?
Answer : Five dogs all need to bark and run at the same time.
Answer : False
Alice, when a new procedure is declared, all subclasses of the superclass will inherit the procedure.
True or false?
Answer : True
From your Alice lessons, which of the following are reasons why random numbers would be used by
a computer?
In Alice, which of the following arguments could be replaced with a random number?
Alice, different programming is not required for different objects, because all objects move the same
way. True or false?
Answer : False
In Alice, which procedure is used to assign one object as the vehicle of another?
Answer : setVehicle
Copying programming instructions saves time when programming your Alice project. True or false?
Answer : True
Which Alice execution task corresponds with the following storyboard statement?
From your Alice lessons, which of the following are reasons why random numbers would be used by
a computer?
Which of the following is not one of the positioning axes used in Alice 3?
Answer : w
Answer : Spin
From your Alice lessons, which of the following is a tool to show the logic of an animation?
Answer : Flowchart
In Alice, declaring a new procedure to shorten code and make it easier to read is a procedural
abstraction technique. True or false?
Answer : True
In Alice, which of the following are benefits of separating out motions into their own procedures?
Which of the following ways can you modify the code in the code editor window? (Choose all
Answer : Copy & paste, Disable, and Drag to reorder
The Procedures tab and the Functions tab are the two tabs available in the Alice methods panel.
True or false?
Answer : True
Alice the Functions tab will display the pre-defined functions for the selected instance. True or
false?
Answer : True
In Alice, which function is used to move an object directly to the center point of another object?
Answer : getDistance
In Alice, you can use a function to get the current color of the object. True or false?
Answer : True
To add a procedure to myFirstMethod, right-click on the procedure you wish to add and select the
Add button. True or false?
Answer : False
After each execution of your Alice animation, what element or elements could be adjusted in your
code?
The move procedure in Alice moves an object in how many different possible directions?
Answer : 6
Procedural abstraction may need to be implemented if an object in Alice needs to perform an action,
but there isn't an inherited procedure that accomplishes that action. True or false?
Answer : True
In Alice, a walking motion for a bipedal object can be achieved without the Do Together control
statement. True or false?
Answer : False
In Alice, a computer program requires functions to tell it how to perform the procedure. True or
false?
Answer : False
From your Alice lessons, random numbers are set in the distance and duration arguments in a
procedure. True or false?
Answer : True
Answer : True
In Alice, what function would you use to get a wholenumber from the user?
Answer : getIntegerFromUser
From your Alice lessons, which programming instruction represents the following movement: A
turtle moves forward half the distance to the flower.
Functions answer questions about an object, such as its height, width, depth and even distance to
another object. True or false?
Answer : True
From your Alice lessons, built-in functions provide precise property details for the following areas:
In Alice, when two objects are synchronized and move together, this means that one object is:
In Alice, the setVehicle procedure will associate one object to another. True or false?
Answer : True
In Alice, which of the following situations could benefit from declaring a new procedure?
Answer : An object does not have a default procedure for a motion, such as swimming. Answer :
Answer : An object does not have a default procedure for a motion, such as swimming.
Answer : True
In Alice, if a procedure is declared for a clownFish class, which classes can use the procedure?
Which button is selected in the Alice file menu to save a different version of an animation?
Answer : False
One type of object property is an object's position in the scene. True or false?
Answer : True
Which of the following is an example of nesting in an Alice program?
The delay procedure in Alice halts an object's motion before the next motion begins. True or false?
Answer : True
When you edit an object's properties in the Scene editor, the changes do not take effect until the
Run button is clicked. True or false?
Answer : False
From your Alice lessons, the Do In Order control statement is also referred to by what other name?
In Alice, what function would you use to get a wholenumber from the user?
Answer : getIntegerFromUser
Answer : getDepth
Alice 3 will periodically remind you to save your project. True or false?
Answer : False
Before you can begin to develop the animation storyboard, what must be defined?
Answer : False
In Alice, you could identify when new procedures need to be declared by reviewing the textual
storyboard for the animation. True or false?
Answer : True
Answer : Drag and drop the comments tile above a code segment.
In an Alice program, which code is executed when the Run button is clicked?
In Alice, each class has a set of pre-defined procedures and functions. True or false?
Answer : True
When you import a class from another file you have to import the entire class. True or false?
Answer : False
Answer : Cursor
In Alice, which of the following programming statements moves the butterfly forward, double the
distance to the tree?
When presenting your Alice animation, ensure that your presentation is thoroughly tested and
complete. True or false?
Answer : True
Answer : False
A typical application uses various values and these values continuously change while the program is
running. True or false?
Answer : True
Which of the following programming instructions commands the fish to continuously move forward
a random speed between 0.5 and 1.0 meters, minus 0.25 meters, until it collides with the shark?
Answer : decimalnumber fishspeed <- nextrandomreal 05,10 while not bluetang iscolliding with
shark is true bluetang move foward fishspeed 0,25
A variable is a place in memory where data of a specific type can be stored for later retrieval and use
by your program.
Answer : True
If you need to repeat a group of Java statements many times, which Java construct should you use?
Answer : if
In Alice, the use of conditional control structures allows what two types of loops?
Answer : conditional
Answer : do while
Answer :
In Alice, control statements are dragged into the Code editor. True or false?
Answer : True
The first step to using a top-down approach to programming is to create a table to align the
storyboard steps to the programming instructions. True or false?
Answer : False
In Alice, how is a one-shot procedure different from procedures in the Code editor?
Answer : A one-shot procedure executes only one time to re-position the object, while procedures in
the Code editor execute every time the Run button is clicked.
Alice objects move relative to the orientation of the person viewing the animation. True or false?
Answer : False
In Alice, you can define your own procedures for a class, but not your own functions. True or false?
Answer : False
Alice, there is no way of reordering the function list in the function tab. True or false?
Answer : False
Answer : Flowchart
From your Alice lessons, which of the following are types of storyboards?
Answer : Move
In Alice, which of the following programming statements moves the fish forward, the distance to the
rock, minus the depth of the rock?
In Alice, which of the following programming statements moves the alien backward the distance to
the asteroid, minus 2 meters?
In Alice it is not possible to transfer a class from one animation to another. True or false?
Answer : False
In Alice, when using a while loop you can only execute a single line of code within it. True or false?
Answer : False
In Alice, you can access the Java on the side option through which menu option?
Answer : Window
variable is a place in memory where data of a specific type can be stored for later retrieval and use
by your program
Answer : True
Each parameter is listed with its name first, then its data type. True or false?
Answer : False
Answer : Accept user input and store them in the variables num1 and num2.
Each parameter is listed with its name first, then its data type. True or false?
Answer : False
What can be used as a guideline to ensure your Alice animation fulfills animation principles?
The Alice animation should be tested throughout development, not just at the end of the
animation's development. True or false?
Answer : True
Expressions with relational operators produce true and false values. True or false?
Answer : True
Demikianlah kumpulan kunci-kunci jawaban Quiz Oracle Academy, semoga bermanfaat bagi teman-
teman yang membutuhkan.
Share
instal autocad2007
Popular Posts
Contoh Algoritma Membuat Mie Instan Beserta Pseudocode dan Flowchart Membuat Mie
Instan
Algoritma Membuat Mie Instan - Artikel kali ini membahas …
cara mengatur jarak wifi indihome Dengan Memperluas dan Memperkecil jarak Pancar
Sinyal Wifi
Artikel kali ini membahas Cara memperluas dan memperkecil …
Penyebab dan Cara Mengatasi 0% available plugged in, charging Pada Laptop
Artikel ini membahas mengenai Penyebab dan Cara Mengatasi …
Artikel Terbaru
Download Aktivasi Microsoft Office dan Cara-Cara Aktivasi Microsoft Office 2013, 2016, 2019
(word, excel, power point, access)
Cara Aktivasi Microsoft Office 2013, 2016, 2019 - artikel kali ini akan ... read more
Jul 05 2020
Penyebab dan Cara Mengatasi We Can't install The 64-bit Version Of Office Because We Found the
Following 32-Bit Programs
We Can't install The 32-bit Version Of Office Because We Found the Following ... read more
Jun 28 2020
Mailing : Cara Membuat Mail Merge di Excel ke Word 2007, 2010, 2013, 2016, 2019
Cara Membuat Mail Merge Excel Ke Word - Mail Merge adalah tools untuk ... read more
Jun 21 2020
Youtube : Cara Mengganti, Mengedit dan Merubah Nama Channel Youtube
Merubah Nama Channel Youtube - artikel kali ini akan membahas cara mengedit ... read more
Jun 16 2020
Adobe Premiere : Cara Membuat Video Penuh atau Video Full Screen di Adobe Premiere Pro
Cara Membuat Video Penuh atau Full Screen di Adobe Premiere pro - artikel kali ... read more
Jun 14 2020
Kategori
android Android Studio Antivirus Bahasa C++ blog Cplus database Design Grafis Edit Video flowchart
HTML jaringan Java Javascript Linux mikrotik MS. Office mysql Pemograman Web PHP Printer python
SmartPhone Software Teknik Informatika Teknology Tips dan Trik Komputer Tutorial windows
Home
© 2020 - Anak IT