what is the by stander effect

Answers

Answer 1

Answer:

The bystander effect is a theory that people are less likely to help if there are others around.

hope this helped :D


Related Questions

Drag the tiles to the correct boxes to complete the pairs.
Match each design principle with the image to which it applies

Emphasis

Contrast

Pattern

Movement

Answers

Answer:

Emphasis-girl looking at camera

Contrast- the birds

Movement- girl running

Pattern- the people

x = int (input ("Enter a number: "))

if (x != 8):
print ("A")

if (x >= 10):
print ("B")

if (x < 10):
print ("C")

if (x % 2 == 1):
print ("D")
What is output if the user types in 8? Click all that apply.

Answers

Output

C

Explanation:

First if-statement:

Since the user had set x = 8, it does not satisfy the condition x != 8 (!= means not equal), so "A" will not be printed.

Second if-statement:

Since the condition asks for x to be greater than or equal to 10 for "B" to be printed, x does not satisfy the condition so "B" will not be printed.

Third if-statement:

Since x is smaller than 10, it satisfies the condition of x<10, so "C" will be printed.

Fourth if-statement:

The '%' (modulus) operator calculates the remainder of the dividend when divided by the divisor. Eg: [tex]7 \% 2 = 1[/tex] ('%' finds the remainder of [tex]7[/tex] when divided by [tex]2[/tex]).

Since [tex]8\%2=0[/tex], it does not satisfy the condition, so "D" is not printed.

Hope this helps :)

The output of the given python code is "C".

Program Explanation:

Defining a variable "x" that uses the input method with int to an input integer value.Defining multiple if block to check input value.In the first, if it checks input value not equal to 8 if it's true it will print the message "A".   In the second, if it checks input value greater than equal to 10, if it's true it will print the message "B".   In the third, if it checks input value less than 10 if it's true it will print the message "C".   In the fourth, if it checks input value is an odd number if it's true it will print the message "D".  

Program:

x = int (input ("Enter a number: "))#defining a variable x that inputs value

if (x != 8):#use if that check value not equal to 8

   print ("A")#print message

if (x >= 10):#use if that check value greater than equal to 10

   print ("B")#print message

if (x < 10): #use if that check value less than  10

   print ("C")#print message

if (x % 2 == 1):#use if that check value %2 equal to 1

   print ("D")#print message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18862631

serting a header at the top of a page will make it appear on_____. ?
A.every other page
B.the first page only
C.every page
D.the last page only

Answers

Answer:

C

Explanation:

I am pretty sure it is C because when you put it in you have to click on "Different Each Page" to make it have some on some pages. Goodluck!

what is role can ICT play in helping school take part in social responsibility

Answers

Answer:

The answer is below

Explanation:

Given that Social responsibility deals with ideas that individuals or groups of people are expected or bound to work in alliance with other individuals or groups of people in favor of the generality of society.

Hence, some of the role ICT can play in helping school take part in social responsibility are:

1. Helps students to have independent access to knowledge

2. It assists the students with special needs

3. It helps the teachers to teach outside the comfort of the classroom only.

4. It exposes teacher and students to more knowledge and opportunities

5. The school governing body can access people and the community's opinions about ways to improve the school better.

6. It exposes the school to more ideas and opportunities.

7. It can be used to assist the school in improving the quality of education, both for the teachers and students side.

There are two common computer platforms for both PC and MAC users. Which term best describes this function?

domain

web research

digital device

operating system

Answers

Operating system (OS)

When creating envelopes, how will you adjust the layout?
A.
clicking the Insert menu
B.
clicking the Edit button
C.
clicking the Format tab
D.
clicking the Setup button
E.
clicking the Print button

Answers

It D because I hade this too so it is D

Answer:

D

Explanation:

X = 10
y = 20
x > У
print("if statement")
print("else statement")

Answers

Answer:

n

Explanation:

n

Which of the following is the best definition of a computer code? a secret language a mathematical language a language that computers use a transition language

Answers

Answer:

a language that computers use

Explanation:

Coding can come in many different forms but it is all used on the computer and then translated.

Answer:

C. Language that computers use

Explanation:

30 pts!
Explain how Moore's law presumes everyone will have access to the Internet.

Answers

Answer:

Moore's law predicts that this trend will continue into the foreseeable future.

Explanation:

Moore's Law refers to Moore's perception that the number of transistors on a microchip doubles every two years, though the cost of computers is halved.

Help plz!! I will mark brainliest

Answers

Answer:i found this

Explanation:

D is my guess. I might be way off because it’s been awhile since I’ve used word

Identify the software in the computer that will receive and manage all interrupt signals.

Answers

Answer:

cookies

Explanation:

Select the items below that are examples of things that could use the smart card technology.
O insurance cards
o online dictionaries
O driver's licenses
O payment cards for fuel
O greeting cards
SUBMIT ANSWER
READ NEXT SECTION
ASK FOR HELP

Answers

Insurance cards, driver’s licenses, and pent cards

Answer:

Insurance cards, driver's licenses, payment cards for fuel.

Explanation:

This is what i believe and found evidence to support this as well.

31
Select the correct answer.
Samuel is writing a term paper using a word processor. He wants to set apart a quotation from other text by moving it further away from the left
margin. Which tool should he use to do this?
ОА
Increase Indent
OB. Align Left
C Align Right
OD. Decrease indent
Reset
Next

Answers

Answer:

Increase indent

Explanation: I had the test ;)

Answer: increase indent

Explanation:

Several programmers write individual code modules that are used for different processes in a vehicle. Individual tests have already been done. Now is the time to put all of the modules together and test the system as a whole. This type of testing is known as _________ testing.

Answers

Answer:

Integration.

Explanation:

Integration testing can be defined as a phase in software applications testing, which typically involves the process of testing the interface between two software module combined as a group.

The main purpose of an integration testing is to determine the correctness of this interface and expose any fault existing between integrated modules.

In this scenario, several programmers wrote individual code modules that are used for different processes in a vehicle and individual tests have already been done. Now it is the time to put all of the modules together and test the system as a whole. Therefore, this type of testing is known as integration testing.

What is a cookie? *
Stores the password of the user.
Stores the commands used by the user.
Stores software developed by the user.
Stores information about the user's web activity.

Answers

Answer:

stores the password of the user

Explanation:

store password of the user

A variable is assigned a value on line 328 of a program. Which of the following must be true in order for the variable to work?

a
A variable was declared before line 328
b
The variable was assigned a different value before line 328
c
The variable will be assigned a different value after line 328
d
The variable will be initialized after line 328

Answers

Answer:

the answer is A

Explanation:

I just did this

Answer:

a.328

im preaty sure home u get this rigth :)

Help HELP HELP HELP HELPE JE

Answers

Answer:

What do you need help with?

How does Programming change with the times?

Answers

Answer:

by coding

Explanation:

Matilda wants to minimize vibrations in her shots while also giving herself lots of physical freedom to move around while taking remote shots. What will she need in order to do this?

Select one:
a. a bright flash to illuminate the scene
b. wireless remote to trigger remote shutter function
c. a photography assistant to take the photos for her
d. a tripod on wheels

Answers

Answer:

Option B

wireless remote to trigger remote shutter function

Explanation:

To properly tackle this problem, we need to look for key terms in the description of the problem, to properly understand the best way it can be solved.

The problem description says that Matilda wants to minimize vibrations in her shots. To minimize vibrations, we will have to make sure that she is not holding the camera in her hand.

In addition to that, Matilda needs to be able to move around while taking remote shots. This means that she needs to be able to control the camera while it is standing stationary via a small, portable device.

The option that provides the best solution to this problem is option B - Matilda should use a wireless remote to trigger remote shutter function

my chrome book computer clock is an hour off how do I fix that

Answers

Go to settings, Click on the advanced settings on the left, then on date and time, and time zone, and then choose which ever one you like the most (if you want it automatic, or a fixed one).

Answer:

go in settings and hit daylight savings time or sync with network time

Explanation:

Alexi is writing a program which prompts users to enter their race times without decimals. Which function should she use?
a float()
b int()
c print()
d spring()

Answers

Answer:

It's either B or C

Explanation:

I saw this on another brainly but they said it wasn't print so id say b is most likely

Alexi is writing a program which prompts users to enter their race times without decimals. She should use float() and print(). Thus, option A and C are correct.

What is program?

A computer can run multiple programs simultaneously, and each program can be in a different state. There are three states a program can be in: running, blocked, and ready. If a program is running, it means that it is currently using the computer's resources, such as the processor, memory, and I/O devices, to perform its tasks.

On the other hand, if a program is blocked, it means that it is waiting for a resource to become available, such as a file, network connection, or input from the user. In the scenario you mentioned, "Program A" is in the running state, meaning it is actively using the computer's resources. Meanwhile, "Program B" is in the blocked state, meaning it is waiting for a resource to become available so it can continue to run.

Therefore, Alexi is writing a program which prompts users to enter their race times without decimals. She should use float() and print(). Thus, option A and C are correct.

You can learn more about running program at

brainly.com/question/4674926

#SPJ3

Which feature helps an edit-test-bug cycle work faster in the python programming language

Answers

Answer:

Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception.

Explanation:

Answer:

D. raising exception

Explanation:

Plato correct

Screen that displays the graphic generated by the computer:

-CPU
-Mouse
-Keyboard
-Monitor

Answers

Answer:

Monitor

Explanation:

Since the keyboard has letter key on it and the mouse is something seperate from the computer, the only two answers left is CPU and monitor. The CPU is the cooling system of a computer and the monitor has all the important stuff in it, it will be monitor.

Yari is having trouble determining the appropriate combination of f-stop and shutter speed for a still image he is taking. What tool could help him find the correct exposure for the ISO setting he’s using?

Select one:
a. light meter
b. super flash
c. tripod
d. wireless remote trigger

Answers

Answer:

Light meter

Explanation:

Took the test

Answer:

a) light meter

Explanation:

took the test and got it correct!!!!

Write a method that takes a Rectangle as a parameter, and changes the width so it becomes a square (i.e. the width is set to the value of the length) (java)

Answers

Answer:

Explanation:

The following code is written in Java, it is a function/method that takes in the length and width of the Rectangle as parameters and then overwrites the width to match the length. Then it prints both the length and width.

   public static void rectangleToSquare(int width, int length) {

       width = length;

       System.out.println("Width: " + width);

       System.out.println("Length: " + length);

       

   }

The program takes the dimension of rectangle and transforms the width to the value of the length in other to be use to calculate the value of square. The program goes thus :

def change_width(length, width):

#initialize a function which takes two parameters

width = length

#assign the value of length to width

return length * width

#returns the area of square

print(change_width(6,2))

A sample run of the program is attached.

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

Write a C++ Programm in which inheritance is used

Answers

Answer:

// C++ program to demonstrate inheritance

#include <iostream>

using namespace std;

// base class

class Animal {

  public:

   void eat() {

       cout << "I can eat!" << endl;

   }

   void sleep() {

       cout << "I can sleep!" << endl;

   }

};

// derived class

class Dog : public Animal {

  public:

   void bark() {

       cout << "I can bark! Woof woof!!" << endl;

   }

};

int main() {

   // Create object of the Dog class

   Dog dog1;

   // Calling members of the base class

   dog1.eat();

   dog1.sleep();

   // Calling member of the derived class

   dog1.bark();

   return 0;

}

Guys pls how do I get rid of this thing
I’ll give brainliest if it worked

Answers

we both are in same problem

if you get a solution please let me know

Yall i have a question
What does this mean when it says open? On insta i sent a pic and thats what it says? Do it mean that the picture was seen? Even tho the messages dont say “seen”? But on a few other pictures i sent dont say that.

Answers

Answer:

it will say opened on the most recently seen message  if its a view once message it will say opened if its ever been opened

Explanation:

be your self today!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Answers

Answer:

So, Do my work quickly get an A+ and play ro blox for the rest of the day?

The muscle in Lane's arm would best be described as which of the following

Answers

where’s the pic of the answer options?
Other Questions
20 Please Help Read this excerpt from Weve Got a Job. . , "' .Which point of view does Audreys grandmother use in this excerpt? *200 pointsFirst personsecond personthird personfourth person On a Map, 1/4 inch between locations represents an actual distance of 2 miles between the Locations. What is the actual distance, in miles, between two cities that are 3 3/4 inches apart on the map? Determine the internal rate of return for a project that costs -$97,500 and would yield after-tax cash flows of $15,000 the first year, $17,000 the second year, $20,000 the third year, $22,000 the fourth year, $26,000 the fifth year, and $32,000 the sixth year. Can someone help me ?? How did the three-fifths compromise contribute to the prolongation of slavery? The CPI is a price index that can be defined as:a. a guide to consumer spending.C. an indicator of what firms ought toproduceb. a statistical series that can be used to measure consumer prices of a market basket of goodsover time.d. none of the above. The Distributive PropertySimplify each expression using the distributive property4(3b +7)12+288(7k-3+4p)2(2n+3b-5)7(2-1)9(7k -3) genetics and the environment borh play roles in cell differentiation ehich is rhe best example of an environmental factor influencing cell differentiation? A.) during meiosis, a single cell divides to form four gametes with half the number of chromosomes that somatic cells have B.) Cambium cells in the trunk of an apple tree form rings of xylem and phloem annually C.) the cells of a chicken embryo divide to form three layers: the ectoderm, mesoderm, and endoderm. D.) the terminal bud on a runner of a strawberry plant begins growing roots when it contacts the ground I need help!!What is considered a negative impact caused by a strike?a. Loss of profitsb. Loss of wagesc. Loss of jobsd. all of the above Eli wanted to order candy online. Company A is offering 2 12 pounds of chocolate for $32.50. How much is Company A charging per pound of chocolate? 19. What are examples of cash crops?O A. Wheat, Corn & BarleyB. Rice, Citrus Fruit & FishO C. Grain, Tobacco, WheatO D. Rice, Indigo, Tobacco Which of the following was a drawback of trade among civilizations of the Vedic Age? Luis wants to buy a skateboard that usually sells for $79.25. All merchandise isdiscounted by 12%. What is the total cost of the skateboard if Luis has to pay a statesales tax of 6.75%. Round your intermediate calculations and answer to the nearestcent. Naty bought a dress for 24.95 and a skirt for 14.95. The sales clerk said the total cost including 9.5% sale tax was 49.40. Below are the steps the sales clerk complete steps 1: 24.95 + 14.95 = 39.90 step 2: 39.90 + 9.5 = 49.40 Please help, I will give Brainliest! An electric car can go 150 km on a test track at a constant speed of 100 km/hr on one charge of its batteries. The test track is an oval with no stops or other cars. You can assume that air resistance is the only form of friction. How far can it go on the test track if it moves at a constant speed of 50 km/hr? When was a state obligated to follow the Constitution? after all the states had ratified it after that state had ratified it after a majority of states had ratified it as soon as it was written (4 + 3) x (2 + 5)=? Thanks for your participation! send help ive got a ton of questions in history! um help please ill mark brainliest i need help plz What weakness did delegates at the Constitutional Convention see in the Articles of Confederation A. Some states remained loyal to Great Britain.B. The federal military was not able to provide for national security.C. The states could not raise money by collecting taxes.D .The federal government was too strong.