What is the advantage of learning through story compared to learning through personal experience?

A.
stories are “more real” than personal experience

B.
stories are easier to remember than personal experiences

C.
stories have no rules to follow

D.
you can learn from countless other lifetimes through stories

This is game design

Answers

Answer 1

Answer:

I think the answer would be D

Explanation:

it just seems to make the most sense

Answer 2

Answer:

Is D

Explanation:

Stories open doors which ususally take time to open and to explore in real life, the same thing happens when you use a book to do your homework. You use the book to get information which you don't know. The same is with reading stories, stories can be helpful since they can talk about a characters life mistakes, and experiences that the character has gone throught their life, which usually  might be helpful on real life.


Related Questions

Write a function that will receive 5 numbers from a user (inputted one at a time-- use reassignment!) and will count then print how many of the numbers are odd.

Answers

The program is an illustration of loops.

Loops are used to perform repetitive operations

The function in Python where comments are used to explain each line is as follows:

#This defines the function

def count_odd(mylist):

   #This initializes the count variable to 0

   count = 0

   #This iterates through the list

   for i in mylist:

       #This checks if the current list element is not even

       if not i%2 == 0:

           #If yes, this increments the count variable by 1

           count+=1

   #This returns the count of odd numbers

   return(count)

Read more about similar programs at:

https://brainly.com/question/18269390

Define computer software with its importance in computer system​

Answers

Answer:you just answered my question saying can't help you well i can't help you either

Explanation:

Computer software refers to a collection of programs, data, and instructions that enable a computer to perform various tasks and functions.

It includes both operating systems that manage computer resources and application software used for specific tasks like word processing, web browsing, and gaming.

Software is crucial in a computer system as it acts as the bridge between hardware and users, allowing them to interact with the machine effectively.

Without software, computers would be unable to process data, execute commands, or perform any tasks.

It empowers users with a wide range of functionalities, making computers versatile tools for work, entertainment, communication, and problem-solving in various domains of modern life.

Know more about Computer software:

https://brainly.com/question/33933985

#SPJ5

A(n) ___________ allows people at two or more locations to interact via two-way video and audio transmissions simultaneously as well as share documents, data, computer displays, and whiteboards.

Answers

Answer:

A(n) videoconference allows people at two or more locations to interact via two-way video and audio transmissions simultaneously as well as share documents, data, computer displays, and whiteboards.

to determine the highest number in a range of numbers, click insert function box in the formula bar to display the insert function dialog box, then select ____.

Answers

Functions in Excel are used to perform several arithmetic and logical operations.

The text that completes the statement is MAX

From the question, we understand that you want to determine the highest number in a given range of numbers.

This is done using the MAX function.

i.e. after the insert function box has been selected, the formula to use is the MAX function.

Hence, the complete statement is:

Click insert function box in the formula bar to display the insert function dialog box, then select MAX.

Read more about Excel functions and formulas at:

https://brainly.com/question/20497277

Ingrid works in the information technology department of a big company. Whenever the company hires someone new, she has to set up a new computer for them. In this scenario, Ingrid will easily be able to set up a computer because the information on how to set up the computer is stored in her Group of answer choices procedural memory. episodic memory. semantic memory. flashbulb memory.

Answers

Answer:

procedural memory

Explanation:

Procedural memory is a type of implicit memory (unconscious, long-term memory) which aids the performance of particular types of tasks without conscious awareness of these previous experiences.

PLEASE HELP! WILL MARK AS BRAINLIEST!
JavaScript can be implemented using the _________ HTML tags in a web page.

Answers

Answer:

JavaScript can be implemented using JavaScript statements that are placed within the HTML tag

Explanation:

Answer:

statements placed within script tags

Explanation:

how are digital computer classified on different types​

Answers

Answer: we can sub-categorize digital computers as General Purpose Computer & Special Purpose Computer.

why are extensions necessary in scratch programming as a whole?​

Answers

Scratch extensions are vital for scratch to interface with the external hardware and information.

Scratch simply means a free programming language where an individual can create their own interactive stories.

It's simply the world's largest coding community for children. Scratch extensions are vital for scratch to interface with the external hardware and information.

Read related link on:

https://brainly.com/question/15418798

Is it always best for a company to make decisions based on data, or are there some situations where they should not focus on data?

Answers

Answer:

data-driven decision

Explanation:

While 91% of companies say that data-driven decision-making is important to the growth of their business, only 57% of companies said that they base their business decisions on their data. Data-driven decision-making is a great way to gain a competitive advantage, increase profits and reduce costs!

test case Exercise 1: Consider the following system: A System reads four integer values from a user. The four values are interpreted as representing the lengths of the sides of quadrilateral shape. The system prints a message that states whether the shape is rectangle or square. Function: Description: Test Input Data:

Answers

The program displays if the side values of the quadrilateral is a square or rectangle. The required program is written in python 3 thus :

a = int(input('Enter integer input : '))

b = int(input('Enter integer input : '))

c = int(input('Enter integer input : '))

d = int(input('Enter integer input : '))

#the variables a, b, c, d takes prompt values from users which are used to compare if the quadrilateral is a square or rectangle.

if(a == b == c == d):

#using the assignment operator, compare the value of a, b, c and d

print('Shape is square')

#if the values are the same, the shape is a square

else :

print('Shape is Rectangle')

#otherwise, the shape is a rectangle

The sample run of the program is attached below.

Learn more : https://brainly.com/question/18405415

how many pokemon games have you all played i've played 14

Answers

Answer: Too much to count.

Explanation:

so i've played
Pokémon Brilliant Diamond
Pokémon Unite
Pokémon Café Mix
Pokémon Sword and Shield
Pokémon Masters EX
Pokémon: Let's Go, Pikachu!
Pokémon Quest
Pokémon Ultra Sun
Pokémon: Magikarp Jump
Pokémon GO
Pokémon Omega Ruby
Pokemon X
Pokémon Black and White
Pokémon HeartGold
Pokémon Battle Revolution
Pokémon FireRed
and Pokémon Stadium
so 19 individual games

which file access access flag do you use to open a file when you want all output written to the end of file's contents

Answers

Answer:

ios::app

Explanation:

Usually a ________ in Java code indicates the end of a data structure. Group of answer choices backslash character forward slash character null reference null pointer

Answers

Answer:

null reference.

Explanation:

CODEHS 3.5.4 Obi-Wan Says



You should ask the user for three pieces of information

You should confirm their name and how many droids and Wookiees they want to meet

You should confirm their name and how many droids and Wookiees they want to meet

Answers

The program receives inputs for the name, number of droids and wookiees a user wants and displays the information as a complete sentence. The program written in python 3 goes thus :

name = input('Enter name : ')

# prompts user of name

num_droid = int(input('number of droids : '))

#prompts for number of droids

num_wooks = int(input('number of wookiees : '))

#prompts for number of wookiees

print(name, ' wants to meet', num_droid, 'droids and',num_wooks , 'Wookiees' )

#displays the information as a complete sentence

A sample run of the program is attached

Learn more : https://brainly.com/question/25506437

1) The critical path of a network is the A) shortest time path through the network. B) path with the fewest activities. C) path with the most activities. D) longest time path through the network. E) None of the above

Answers

Answer:

D

Explanation:

source

https://hbr.org/1963/09/the-abcs-of-the-critical-path-method

explain about cyber terrorism​

Answers

Explanation:

cyber terrorism is type of hacking group with give the country that are to illegal group

PLEASE HELP! WILL MARK AS BRAINLIEST JavaScript can be implemented using the _________ HTML tags in a web page.​

Answers

Answer:

JavaScript can be implemented using JavaScript statements that are placed within the ...  HTML tag

Explanation:

Imagine that your parents were starting a small business, and they wanted to upgrade their data storage. Would you recommend a fileserver, network
attached storage, or the cloud?
Why?
What are some possible disadvantages of your recommendation that they should be aware of?

Answers

Answer:

I would recommend the cloud because they can access their data on every single device. There are virtually no disadvantages to the cloud.

Explanation:

Hope this helps.

what is a drone satellite?​

Answers

Answer:

A satellite that can be controlled where to go.

Explanation:

What is the difference between Label and value in excel?

Answers

Answer:

The main difference between the label and the value is that the label is what you see within the system itself (or also on the web form if the field can be used in such a feature). ... The value, on the other hand, is what systems read as the name of a field.

Hope it help and if it its correct please give brainliest  

Stay Safe And Healthy  

Thank You

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an ________.

Answers

to allow excel to change the cell references in a formula or function from row to row or column to column as you fill with it, you must use an formula cells.

You must utilize a cell formula to allow excel to modify the cell references in a formula or function between row to row or column to column as you fill it out.

Cell formula and Excel:

A cell reference is a name for a cell or a group of cells on a worksheet that may be used in a formula to tell Microsoft Office Excel where to look for the values or data that the calculation should compute.

The cell function in Excel returns data about a cell in a spreadsheet. info type specifies the type of information to be returned.

Cell may obtain information such as the cell's address and filename, as well as specific information about the cell's formatting.

Find out more information about 'Cell formula'.

https://brainly.com/question/26988565?referrer=searchResults

Learning Objectives:

• understand when to use the different

print statements

• create a variable and assign it a value

• use Scanner to read in user input

• print the value of a variable using

printf




Output:

US state: Texas

Capital: Austin

The capital of Texas is Austin

Description:

Copy and paste the code below:

/*******************************************************

* Name:

* Assignment: A01

*******************************************************/


public class A01{


public static void main(String[] args){

// part1

System.out.print("x x x");

System.out.print("x o x");

System.out.print("x x x");

System.out.println();


// part2


}

}


Write your name in the comment on top. The red letters in the output are the user inputs.

This assignment consists of 2 parts.

First you demonstrate your understanding of the different print statements by modifying a

code segment. Then you read in two Strings and print a statement based on the user input.


Part1:

The code segment provided includes

three print statements that produce

the following output:


Change the code segment so that it

produces the following output:


Hint: you will need to change the number of

statements


Part2:

• Prompt the user to enter a state

• Read in the user response and assign

it to a String variable named state

Hint: before you can assign a value to the

variable state it needs to be declared

• Prompt the user to enter the name of

the capital

• Read in the user response and assign

it to a String variable named capital.

• Use printf and format specifiers to

print the following message:

The capital of state is capital

where you substitute state and capital with

the state and capital entered by the user.

Make your output look exactly like the output displayed above.

Make sure to read in the input next to the prompt but without touching it (use a blank to

separate the prompt from the user input). The output should use a single empty line to

separate the frog displayed in part1 from the output created in part2.

Answers

Answer:

take out the cord than put it back in than it shall work

Coordination in a global information system requires a _____ architecture for data, standardization within departments.

Answers

Coordination in a global information system requires a decentralized architecture for data, standardization within departments

In Linux, most applications and commands are in the ____ directory or its subdirectories bin and sbin.

Answers

On a Linux computer, most of the software applications are saved in the /usr directory or in its subdirectories named, bin and sbin.

A Linux can be defined as an open-source and community-developed operating system (OS) that is designed and developed for the following electronic devices:

Mainframes. Computers.Embedded systems.Mobile devices.

Generally, the Linux operating system (OS) is based on UNIX and it is typically released under the GNU general public license (GPL).

On a Linux computer, the commonly used directory for saving most software applications is the /usr directory or sometimes its subdirectories named, bin and sbin.

Read more: https://brainly.com/question/20629962

Emilie is reviewing a log file of a new firewall. She notes that the log indicates packets are being dropped for incoming packets for which the internal endpoint did not initially create the request. What kind of firewall is this

Answers

Firewalls are used to screen and avoid block the threat posed by unwanted data or files that could want to penetrate into a system. Hence, the kind of firewall described is packet filtering firewall.

Packet filtering firewall describes a network security protocol which examines individual data packets entering into a system.

Each data packet is screened based on established principles and protocols, with only those who meet the defined requirement allowed to reach their destination while others are dropped.

Hence, the missing phrase is packet filtering firewall.

Learn more : https://brainly.com/question/25706522

What is the output of the statements below? int a = 10; int b = 20; int count = 0; if (a > 5) if (b > 5) { count ++; } else count = 7;

Answers

Answer:

The output of count would be 1.

Explanation:

The first if statement is true. Since 10 > 5

The second if statement is true. Since 20 > 5

So,

count ++;  // That increments the variable count by 1

the else statement is not provoked since the if statements were correct.

Which invention provided instant communication and information to a massive audience for the first time? a. Intranet c. Video b. Television d. Internet Please select the best answer from the choices provided A B C D.

Answers

Answer:

B. television

Explanation:

Answer:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb

Explanation:

Your customer said that understanding the directions is difficult. This is an aspect of

Answers

Answer:

Usability

Explanation:

The degree to which a program meets the needs of a user, including but not limited to learnability, reliability, and ease of use

* what is an electronic mail ?

= Electronic mail is a method of exchanging messages between people using electronic devices. Email entered limited use in the 1960s, but users could only send to users of the same computer, and some early email systems required the author and the recipient to both be online simultaneously, similar to instant messaging.​

Answers

Answer:

Electronic mail is a method of exchanging messages between people using electronic devices. Email entered limited use in the 1960s, but users could only send to users of the same computer, and some early email systems required the author and the recipient to both be online simultaneously, similar to instant messaging.

How will you select the range of cells in excel . ​

Answers

Answer:

just left click the cell that you want and drag your mouse towards how much you want to select I guess

Answer:

To select a range, select a cell, then with the left mouse button pressed, drag over the other cells. Or use the Shift + arrow keys to select the range. To select non-adjacent cells and cell ranges, hold Ctrl and select the cells.

Explanation:

Other Questions
Read this passage from Through the Looking-Glass by Lewis Carroll.The shop seemed to be full of all manner of curious thingsbut the oddest part of it all was, that whenever she looked hard at any shelf, to make out exactly what it had on it, that particular shelf was always quite empty: though the others round it were crowded as full as they could hold."Things flow about so here! she said at last in a plaintive tone, after she had spent a minute or so in vainly pursuing a large bright thing, that looked sometimes like a doll and sometimes like a work-box, and was always in the shelf next above the one she was looking at. "And this one is the most provoking of allbut I'll tell you what she added, as a sudden thought struck her, "I'll follow it up to the very top shelf of all. It'll puzzle it to go through the ceiling, I expect!How do the underlined words affect the tone of the passage?They create a negative tone.They create a positive tone.They create a tone of intelligence.They create a tone of wonder. Python converts your code into bytecode when you run your program. This process is an intermediate step in a process called. HELP ME PLEASEEEEE Using the evidence below, which of the following instances of elaboration does the best job of explaining why the evidence supports that video games cause negative health impacts related to physical strain.Evidence: Dr. Matthew Edlund, director of the Center for Circadian Medicine and author of "The Power of Rest" says, "Teens need adequate deep sleep and REM sleep to rebuild long-term memory for learning, focus attention for driving and maintain health and fight obesity ... They're so connected to their machines that they're treating themselves as though they don't need any rest" (Ortiz Healy).Question 3 options:Because of this tendency for teens to forgo sleep in order to play video games, the physical strain placed on the body by the lack of sleep results in negative health impacts. Sleep is good, and teens need to be sure to get enough of it.Negative health impacts due to physical strain result when teens decide not to sleep in order to play video games.This proves that video games cause negative health impacts. Select the correct answer.Which diagnostic service professional is a radiologic technician?OA. Mason prepares and administers radioactive drugs to patients for imaging purposes.OB. Karla analyzes tissue, cell, and bodily fluid samples to determine the cause of a disease.O C. Liam uses an electroencephalograph to record brain activity and identify brain disorders.OD Divya assists surgeons during complex procedures such as open-heart surgery. georgia signers of the declaration of independence The product of two consecutive positive odd numbers is 195.By constructing a quadratic equation and solving it, find the two numbersPlease help PLZZ HELP MEEEE1. How does the HIV virus affect the immune system of humans. Be sure to talk about which cells it uses as a host and how using these cells destroys the immune system.2. When does an HIV patient develop AIDS and what is the cause of death for most AIDS patients?3. Is there a cure for AIDS and what affect do drug treatments have on HIV? Use the graph to determine thesolution (solutions) of the equationf(x) = 0.Please help, with explanation One way Delegative Leadership affects interaction among the members of a group A production system that reduces a raw material to its component parts in order to extract one or more marketable products is a(n) _____ production system. A traditional Chinese method of rice farming uses A. marshes B. paddies C. levees D. floating fields How does a frog survive in water as well as on land? how is the structure of a leaf optimized for photosynthesis Which of the following is one branch or part of the government?CongressParliamentState government bonjour translated into inglish 66) For investments, how are risk and return related?A) When the risk is low, the return is high.B) When the risk is high, the return is low.C) When the risk is high, the return is high.D) When the risk is low, the return cannot be calculated. Need help on this other Sonia Sotomayor question pls (: how is self employment an alternative to large scale industries? Again, I could use some help on these as well, and i might be sending another question as well PLEASE HELP ME!! Find the domain, in interval notation too.