Answer:
The correct option for this question is File.
Explanation:
Answer:
Explanation:
If it has not changed since the last time that i used codehs then the code should be the following
penup()
forward(-100)
right(90)
pendown()
def beaded_bracelet():
circle(10)
penup()
forward(20)
left(10)
pendown()
for i in range(36):
beaded_bracelet()
Which should complete the entire function as intended.
Answer:
see explanation
Explanation:
Carlos can make a copy of the old presentation that preserves all the formatting, and replace old content with new information.
A type of encoding that involves relating new information to existing knowledge that you already have stored in long-term memory is: Semantic encoding.
Encoding can be defined as a communication process in which the sender of a message transforms an information into an encrypted message, in the form of notable symbols that represent ideas or concepts.
Generally, a message that has been encoded by a sender requires a decoding action by the recipient, in order for the communication process to be complete.
Semantic encoding is a type of encoding which typically involves the relation of new information with respect to an existing knowledge that has been stored in long-term memory.
In conclusion, semantic encoding deals with the encoding of meaning from new information rather than perceptual characteristics such as the meaning of words in English language.
Read more: brainly.com/question/24113575
Answer:
c)Banana * daco;
Explanation:
To declare an variable pointer we use * symbol after writing it's type.For example int *.Then we write the name of the variable since the name of the variable is daco.The class is a user defined data type so instead of writing any data type we will write class name then the * then name of the variable.
Banana * daco; which matches the option c Banana* daco;