Please help! I don’t know the answer to it :( it’s Fashion marketing

Please Help! I Dont Know The Answer To It :( Its Fashion Marketing

Answers

Answer 1

Answer:

I believe the answer should be C)

Sorry if it’s wrong,but hope it helps


Related Questions

In this lab, you declare and initialize constants in a C++ program. The program, which is saved in a file named NewAge2.cpp, calculates your age in the year 2050.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

   const int YEAR = 2050;

   int currentYear = 2020;

   int currentAge = 38;

   

   cout<<"You will be " << currentAge + (YEAR - currentYear) << " years old in " << YEAR;

   return 0;

}

Explanation:

Initialize the YEAR as a constant and set it to 2050

Initialize the currentYear as 2020, and currentAge as 38

Calculate and print the age in 2050 (Subtract the currentYear from the YEAR and add it to the currentAge)

set screw compression and indenter are all types of
a. compression couplings.
b. threaded connectors.
C. rain-tight fittings.
D. threadless connecters and couplings.

Answers

nAnswer:

A.

Explanation:

The compression couplings can be defined as a set of screw, compression, and indenter. A compression fitting is a type of coupling used to connect pipes. A compression couplings is used to connect fixtures and tubings.

It contains screw, compression, and indenter. Therefore, option A is correct answer.

Answer:

dude above me capping its threadless connectors stay strong king

Explanation:

Select the correct answer from each drop-down menu.
A spreadsheet is the computerized form of the
that people traditionally used to
. brainlist to best

Answers

Answer:

A spreadsheet is a computer application for organization, analysis and storage of data in tabular form. Spreadsheets were developed as computerized analogs of paper accounting worksheets. The program operates on data entered in cells of a table.

How to Maximize Brand Awareness on LinkedIn?

Answers

Answer:

It takes a lot of builds your reputation so more people can trust you on LinkedIn. Here are some useful points to help you achieve successful brand awareness.

Set Your Profile Use Powerful Content Grow Your Network Send Personalized Invites

Which technology do online storesusually use to present customized content?

Online stores usually
use _____ technology to present customized content.

Answers

Answer:

real time analytics technology

Explanation:

Online stores usually use real-time analytics technology to present customized content. Explanation: Real-time analytics is gaining popularity nowadays. It is basically the procedure of measuring and preparing the data as it enters the database

suppose you have a language with only the three letters a; b; c, and they occur with frequencies .9, .09, and .01, respectively. the ciphertext bcccbcbcbc was encrypted by the vigen`ere method (shifts are mod 3, not mod 26). find the plaintext (note: the plaintext is not a meaningful english message.)

Answers

The correct answer is One letter in the ciphertext corresponds to several letters in the plaintext; a character appears in a language. makes frequency analysis more effective...

Cipher, by definition, is an algorithm that transforms plain text into ciphertext. It is the unintelligible result of a cryptographic method. Ciphertext can also sometimes be referred to by the word "cypher." It takes a key to translate ciphertext into plain text before it can be deciphered. The output of encryption techniques, often known as cyphers, is ciphertext. When a person or device lacking the cypher cannot read the data, the data is said to be encrypted. To decode the data, they or it would require the cypher. By the kind of input data, cyphers can be divided into two categories: block cyphers, which encrypt blocks of data with a set size, and stream cyphers, which encrypt streams of data continuously.

To learn more about  ciphertext click on the link below:

brainly.com/question/30143645

#SPJ4

Define a function pyramid_volume with parameters base_length, base_width, and pyramid_height, that returns the volume of a pyramid with a rectangular base. Sample output with inputs: 4.5 2.1 3.0

Answers

Answer:

def pyramid_volume(base_length, base_width, pyramid_height):

   base_area = base_length * base_width

   volume = 1 / 3 * base_area * pyramid_height

   return volume

Explanation:

Create a function called pyramid_volume that takes base_length, base_width, pyramid_height as parameters

The formula to calculate the volume of a pyramid is = 1/3Ah, A is the base area, h is the height

Inside the function, calculate the base area, multiply base_length with base_width. Then, calculate the volume using the formula. Return the volume

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn−1 + Fn−2 for n > 1.
In other words, each number is the sum of the two previous numbers in the sequence. Thus the first several Fibonacci numbers are 1, 1, 2, 3, 5, and 8. Interestingly, certain population growth rates are characterized by the Fibonacci numbers. If a population has no deaths, then the series gives the size of the poulation after each time period.
Assume that a population of green crud grows at a rate described by the Fibonacci numbers and has a time period of 5 days. Hence, if a green crud population starts out as 10 pounds of crud, then after 5 days, there is still 10 pounds of crud; in 10 days, there is 20 pounds of crud; in 15 days, 30 pounds of crud; in 20 days, 50 pounds of crud, and so on.

Write a program that takes both the initial size of a green crud population (in pounds) and some number of days as input from the keyboard, and computes from that information the size of the population (in pounds) after the specified number of days. Assume that the population size is the same for four days and then increases every fifth day. The program must allow the user to repeat this calculation as long as desired.
Please note that zero is a valid number of days for the crud to grow in which case it would remain at its initial value.
You should make good use of functions to make your code easy to read. Please use at least one user-defined function (besides the clearKeyboardBuffer function) to write your program.

basically I've done all the steps required except the equation in how to get the final population after a certain period of time (days). if someone would help me with this, I'll really appreciate it.

Answers

In Python, it can be expressed as follows. Using the recursive function type, we find the sum of the previous term and the sum of the two previous terms.

Python:

x=int(input("Initial size: "))

y=int(input("Enter days: "))

mod=int(y/5)-1

def calc(n):

   gen_term = [x,2*x]

   for i in range(2, n+1):

       gen_term.append(gen_term[i-1] + gen_term[i-2])

   return gen_term[n]

if(mod==0):

   print("After",y,"days, the population is",x)

else:

   print("After",y,"days, the population is",calc(mod))

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn1 + Fn2 for n &gt; 1.In

Little Italy Pizza charges $14.95 for a 12-inch diameter cheese pizza and $17.95 for a 14-inch diameter cheese pizza. Write the pseudocode for an algorithm that calculates and displays how much each of these earns the establishment per square inch of pizza sold. (Hint: You will need to first calculate how many square inches there are in each pizza.)

Answers

Answer:

Following are the pseudocode to this question:

Declare variables A1, A2, B1, B2, C1,C2

Initialize B1 to 14.95

Initialize B2 to 17.95

Calculate A1=3.14*12*12/4

Calculate A2=3.14*14*14/4

Calculate C1=B1/A1

Calculate C2=B2/A2

PRINT "12 inches pizza earns $"+C1+" PER square inch"

PRINT "14 inches pizza earns $"+C2+" PER square inch"

Explanation:

In the above-given code, six variable "A1, A2, B1, B2, C1, and C2" is declared, in which "B1 and B2" is used for initializing the given value, in the next step "A1, A2, C1, and C2" variable is declared that calculates and store its values and use the print method to print its stored value with the message.  

how are a male and female human skeleton both similar and different

Answers

Answer:

Both skeletons are made up of 206 bones. They mainly contain a skull, rib cage, pelvis, and limbs. The main function of both skeletons is the provide support to the body while allowing movement. However, bone mass, density, structure and length differ in a male and female body. Female bones are lighter, and their pelvic cavities are broader to support childbirth, whereas male bones are heavier and sturdier.

Explanation:

Which line of code outputs the decimal portion of a float stored in the variable x? print (x % 1000) print (x) O print (x / 1000) print (x - int(x))​

Answers

print(x - int(x))

int(x) will round the float down to the nearest whole number x - int(x) subtracts that rounded value from the original float. This will leave the remaining decimal portion.

I hope this helps!

Double-precision is used to save the values in Python floating-point type.

You have several better choices after just two decimal places (e.g. to show a currency value): For example, Use cents, not dollars for integer values, and then divide them by 100 to translate them into dollars.

In the given choices only the last choice is correct because it would remove its integer value of x from the x value as well as leave the decimal section behind.

Therefore, the final choice is "print (x - int(x))".

Learn more:

brainly.com/question/20312196

Problem: Longest Palindromic Substring (Special Characters Allowed)

Write a Python program that finds the longest palindromic substring in a given string, which can contain special characters and spaces. A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward. The program should find and return the longest palindromic substring from the input string, considering special characters and spaces as part of the palindrome. You do not need a "words.csv" as it should use dynamic programming to find the longest palindromic substring within that string.

For example, given the string "babad!b", the program should return "babad!b" as the longest palindromic substring. For the string "c bb d", the program should return " bb " as the longest palindromic substring.

Requirements:

Your program should take a string as input.
Your program should find and return the longest palindromic substring in the input string, considering special characters and spaces as part of the palindrome.
If there are multiple palindromic substrings with the same maximum length, your program should return any one of them.
Your program should be case-sensitive, meaning that "A" and "a" are considered different characters.
You should implement a function called longest_palindrome(string) that takes the input string and returns the longest palindromic substring.
Hint: You can use dynamic programming to solve this problem. Consider a 2D table where each cell (i, j) represents whether the substring from index i to j is a palindrome or not.

Note: This problem requires careful consideration of edge cases and efficient algorithm design. Take your time to think through the solution and test it with various input strings.

Answers

A Python program that finds the longest palindromic substring in a given string, considering special characters and spaces as part of the palindrome is given below.

Code:

def longest_palindrome(string):

   n = len(string)

   table = [[False] * n for _ in range(n)]

   # All substrings of length 1 are palindromes

   for i in range(n):

       table[i][i] = True

   start = 0

   max_length = 1

   # Check for substrings of length 2

   for i in range(n - 1):

       if string[i] == string[i + 1]:

           table[i][i + 1] = True

           start = i

           max_length = 2

   # Check for substrings of length greater than 2

   for length in range(3, n + 1):

       for i in range(n - length + 1):

           j = i + length - 1

           if string[i] == string[j] and table[i + 1][j - 1]:

               table[i][j] = True

               start = i

               max_length = length

   return string[start:start + max_length]

# Example usage

input_string = "babad!b"

result = longest_palindrome(input_string)

print(result)

This program defines the longest_palindrome function that takes an input string and uses a dynamic programming approach to find the longest palindromic substring within that string.

The program creates a 2D table to store whether a substring is a palindrome or not. It starts by marking all substrings of length 1 as palindromes and then checks for substrings of length 2.

Finally, it iterates over substrings of length greater than 2, updating the table accordingly.

The program keeps track of the start index and maximum length of the palindromic substring found so far.

After processing all substrings, it returns the longest palindromic substring using the start index and maximum length.

For more questions on Python program

https://brainly.com/question/30113981

#SPJ8

How have advancements in technology and social media impacted communication and relationships in our society?

Answers

Answer:The advancement of technology has changed how people communicate, giving us brand-new options such as text messaging, email,  and chat rooms,

Explanation:

Answer: the answer will be they allow faster and more efficient communication and can help build relationships.

Explanation:

Distinguish
between formal and Informal
Information System
Information systems

Answers

Explanation:

Formal; A formal information system is based on

the organization represented by the organization chart.

Informal; The informal information system is

employee based system designed

to meet personal and vocational needs

and to help in solution of work-related problems.

What is another name for a switch A.Number system B.Variable C.Logic Gate D.Boolean

Answers

Answer:

logic gate

Explanation:

took the test lol

Which function in cryptography takes a string of any length as input and returns a string of any requested variable length?


a.
Steganography


b.
BitLocker


c.
Sponge


d.
Filesystem

Answers

Answer:

c.  Sponge

Explanation:

Sponge is the function in cryptography takes a string of any length as input and returns a string of any requested variable length. Hence, option C is correct.

What is Sponge is the function in cryptography?

Any of a class of algorithms with finite internal state that accept an input bit stream of any length and produce an output bit stream of any desired length is referred to as a sponge function or sponge construction in the field of cryptography. There are theoretical and practical applications for sponge functions.

A generalisation of both stream cyphers with a fixed input length and hash functions, which have a fixed output length, is a sponge function. It works by repeatedly applying the inner permutation on a finite state while also entering input or retrieving output.

Data can be "absorbed" into the sponge that SHA-3 is built like and then "squeezed" out again. A subset of message blocks is XORed during the absorption phase.

Thus, option C is correct.

For more information about Sponge is the function in cryptography, click here:

https://brainly.com/question/29187235

#SPJ6

To lock certain cell in a worksheet to protect them, select the cells, then click Home tab-Alignment group-Format Cells popup window-Protection Tab-locked check box-OK to close then popup. Then click on Review tab-Changes group-Protect sheet.a. True b. False

Answers

Answer:

a. True

Explanation:

To lock certain cells in a worksheet to protect them, you need to first select the cells, then click on the Home tab, go to the Alignment group, and click on the Format Cells popup window. In the Format Cells window, select the Protection tab, then check the Locked checkbox and click OK to close the popup window.

Once you have locked the desired cells, click on the Review tab, go to the Changes group, and click on the Protect Sheet option. This will bring up the Protect Sheet dialog box, where you can set a password for the protection, choose which actions users are allowed to perform on the sheet, and select which cells are locked and which are unlocked.

Therefore, the statement "To lock certain cell in a worksheet to protect them, select the cells, then click Home tab-Alignment group-Format Cells popup window-Protection Tab-locked check box-OK to close then popup. Then click on Review tab-Changes group-Protect sheet" is true.

6 + 7 = 7 + 6 is an example of which property of addition?

Answers

Answer:

commutative

Explanation:

The commutative property states that the numbers on which we operate can be moved or swapped from their position without making any difference to the answer.

Commutative Property of Addition

plsss help anyone PLSSSSS ​

plsss help anyone PLSSSSS

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This question is about to write HTML code for the given sub-questions. In each sub-question different scenario is given. So, the answer to these questions is given below in the order they asked.

1. In this question it is asked to write a code of 5 students' name in a paragraph with a different color that make them unique.

<html>

<body>

<p style="color:red;">Student A</p>

<p style="color:blue;">Student B</p>

<p style="color:black;">Student C</p>

<p style="color:orange;">Student D</p>

<p style="color:green;">Student E</p>

</body>

</html>

2. In it, the below is given code show an ordered list of subjects that you're offering.

<html>

<body>

<h2>An ordered HTML list</h2>

<ol>

 <li>Introduction to Computing</li>

 <li>Communication Skills</li>

 <li>Software Designing</li>

</ol>  

</body>

</html>

3. The below-given HTML code shows the unordered list of parts that make up the computer.  

<html>

<body>

<h2>An unordered HTML list</h2>

<ul>

 <li>CPU</li>

 <li>RAM</li>

 <li>Motherboard</li>

 <li>Mouse</li>

 <li>Keyboard</li>

 <li>Monitor</li>

</ul>  

</body>

</html>

Explain if a company is responsible for using computer components manufactured using fair trade practices. [9 marks]

Answers

Answer:

Fair trade practices aims at promoting the fair relationships between the buyers and producers. It is a kind of a social movement that makes the producers to provide the better conditions and humane working environment in case of developing countries.

• It also favors and supports the proper and substantial payment to the manufacturers and wages to the labors.

• It is a trading partnership that states the manufacturers to analyze and check their supply sources or resources and provide disclosure if the materials were produced or mined in the areas of conflict or areas of extreme poverty.

Explanation:

can you mark me as brainlist

Answer:

It is a trading partnership that states the manufacturers to analyze and check their supply sources or resources and provide disclosure if the materials were produced or mined in the areas of conflict or areas of extreme poverty.

Excel

Please explain why we use charts and what charts help us to identify.
Please explain why it is important to select the correct data when creating a chart.

Answers

1) We use chart for Visual representation, Data analysis, Effective communication and Decision-making.

2. It is important to select the correct data when creating a chart Accuracy, Credibility, Clarity and Relevance.

Why is necessary to select the correct data in chart creation?

Accuracy: Selecting the right data ensures that the chart accurately represents the information you want to convey. Incorrect data can lead to misleading or incorrect conclusions.

Relevance: Choosing the appropriate data ensures that your chart focuses on the relevant variables and relationships, making it more useful for analysis and decision-making.

Clarity: Including unnecessary or irrelevant data can clutter the chart and make it difficult to interpret. Selecting the correct data helps to maintain clarity and simplicity in the chart's presentation.

Credibility: Using accurate and relevant data in your charts helps to establish credibility and trust with your audience, as it demonstrates a thorough understanding of the subject matter and attention to detail.

Find more exercises related to charts;

https://brainly.com/question/26501836

#SPJ1

#this is 34 lines -- you can do it! # #In web development, it is common to represent a color like #this: # # rgb(red_val, green_val, blue_val) # #where red_val, green_val and blue_val would be substituted #with values from 0-255 telling the computer how much to #light up that portion of the pixel. For example: # # - rgb(255, 0, 0) would make a color red. # - rgb(255, 255, 0) would make yellow, because it is equal # parts red and green. # - rgb(0, 0, 0) would make black, the absence of all color. # - rgb(255, 255, 255) would make white, the presence of all # colors equally. # #Don't let the function-like syntax here confuse you: here, #these are just strings. The string "rgb(0, 255, 0)" #represents the color green. # #Write a function called "find_color" that accepts a single #argument expected to be a string as just described. Your #function should return a simplified version of the color #that is represented according to the following rules: # # If there is more red than any other color, return "red". # If there is more green than any other color, return "green". # If there is more blue than any other color, return "blue". # If there are equal parts red and green, return "yellow". # If there are equal parts red and blue, return "purple". # If there are equal parts green and blue, return "teal". # If there are equal parts red, green, and blue, return "gray". # (even though this might be white or black). #Write your function here!

Answers

Answer:

Following are the code to this question:

def find_color(color):#definig a method find_color that accepts color parameter

   color = str(color).replace('rgb(', '').replace(')', '')#definig color variable that convert parameter value in string and remove brackets

   r, g, b = int(color.split(', ')[0]), int(color.split(', ')[1]), int(color.split(', ')[2])#defining r,g,b variable that splits and convert number value into integer

   if r == g == b:#defining if block to check if r, g, b value is equal

       return "gray"#return value gray

   elif r > g and r > b:#defining elif block that checks value of r is greater then  g and b

       return "red"#return value red

   elif b > g and b > r:#defining elif block that checks value of b is greater then g and r

       return "blue"#return value blue

   elif g > r and g > b:#defining elif block that checks value of g is greater then r and b

       return "green"#return value green

   elif r == g:#defining elif block that checks r is equal to g

       return "yellow"#return value yellow

   elif g == b:#defining elif block that checks g is equal to b

       return "teal"#return value teal

   elif r == b:#defining elif block that checks r is equal to b

       return "purple"#return value purple

print(find_color("rgb(125, 50, 75)"))#using print method to call find_color method that accepts value and print its return value

print(find_color("rgb(125, 17, 125)"))#using print method to call find_color method that accepts value and print its return value

print(find_color("rgb(217, 217, 217)"))#using print method to call find_color method that accepts value and print its return value

Output:

red

purple

gray

Explanation:

In the above method "find_color" is declared that uses the color variable as the parameter, inside the method a color variable is declared that convert method parameter value into the string and remove its brackets, and three variable "r,g, and b" is defined.  In this variable first, it splits parameter value and after that, it converts its value into an integer and uses the multiple conditional statements to return its calculated value.

if block checks the r, g, and b value it all value is equal it will return a string value, that is "gray" otherwise it will go to elif block. In this block, it checks the value of r is greater then g, and b if it is true it will return a string value, that is "red" otherwise it will go to another elif block.   In this block, it checks the value of b is greater then g, and r if it is true it will return a string value, that is "blue" otherwise it will go to another elif block.    In this block, it checks the value of g is greater then r and b if it is true it will return a string value, that is "green" otherwise it will go to another elif block.    In the other block, it checks r is equal to g or g is equal to b or r is equal to b, it will return the value, that is "yellow" or "teal" or "purple".

Create a function called isAscending that will take three int values. The function will return true if the numbers are in descending order and false if they are not. For instance, if the following sequence of three numbers was entered:

30 40 100

This would be ascending order because each number input is larger than the previous number input.

Your function should take input and produce output. Thismeans you should not have any print or input statements within the isDescending function.

Answers

In python:

def isAscending(a, b, c):

   return True if a < b < c else False

We can test this function with the following line of code:

print(isAscending(30,40,100)). This will print True to the console because the numbers are in ascending order.

I hope this helps!

Following are the Python code to define the method that is "isAscending" which accepts three parameters:

Program:

def isAscending(a, b, c):#defining the method isAscending that takes three parameters

   if(a<b<c):#defining if block that checks value in assending order

       return True#return value that is True

   else:#defining else block

       return False#return value that is False

a=30#Initilizing value 30 in a variable

b=40#Initilizing value 40 in b variable

c=100#Initilizing value 100 in c variable

print(isAscending(a,b,c))#using print method that calls isAscending method

output:

Please find the attachef file.

Program Explanation:

Defining the method "isAscending" that takes three parameters that are "a,b, and c".Inside the method defining if block that checks value in assending order, and return value that is "True".In the else block it use return value that is "False".Outside the method three integer variable "a,b, and c" is declared that initilizes with the value that is "30, 40, and 100". Using a print method that calls "isAscending" method that prints the return value.

Find out more about the method here:

brainly.com/question/18881441

Create a function called isAscending that will take three int values. The function will return true if

Which core business etiquette is missing in Jane

Answers

Answer:

As the question does not provide any context about who Jane is and what she has done, I cannot provide a specific answer about which core business etiquette is missing in Jane. However, in general, some of the key core business etiquettes that are important to follow in a professional setting include:

Punctuality: Arriving on time for meetings and appointments is a sign of respect for others and their time.

Professionalism: Maintaining a professional demeanor, dressing appropriately, and using appropriate language and tone of voice are important in projecting a positive image and establishing credibility.

Communication: Effective communication skills such as active listening, clear speaking, and appropriate use of technology are essential for building relationships and achieving business goals.

Respect: Treating others with respect, including acknowledging their opinions and perspectives, is key to building positive relationships and fostering a positive work environment.

Business etiquette: Familiarity with and adherence to appropriate business etiquette, such as proper introductions, handshakes, and business card exchanges, can help establish a positive first impression and build relationships.

It is important to note that specific business etiquettes may vary depending on the cultural and social norms of the particular workplace or industry.

My computer won’t let me do anything and I don’t know how to close out of the tab

My computer wont let me do anything and I dont know how to close out of the tab

Answers

Answer:

Try to power off your computer then turning it back on
If it won't let you press shut off on your screen press the windows key on your keyboard and the letter L at the same time

and if that does not work try doing ctrl+shift+Esc and it will bring up task manager, task manager keeps track of everything that is running on your computer. Carefully find what is causing the problem and right click it and choose end task. It will terminate it immediately. But be very careful because if you terminate something important it can cause issues(but usually a restart will fix it)
Hopefully this solves your issue:)

What does the example of Friendster illustrate about social media platforms?

A.
People are loyal to social networking sites.

B.
Users will have little patience for technical issues.

C.
Professional networking sites are more popular than social networking.

D.
Most social media platforms don’t last more than a year.

Answers

Answer:

A

Explanation:

It's just what it's meant it doesn't need much explanation

People are loyal to social networking sites is example of Friendster illustrate about social media platforms.

What are social media platforms?

Websites and programs that emphasize collaboration, sharing of content, engagement, and community-based feedback are collectively referred to as social media.

Social media is used by people to connect and communicate with their friends, family, and other communities. Social media applications are used by businesses to track consumer complaints as well as market and promote their products.

Websites that cater to businesses selling to consumers have social features like comment sections for users. Businesses can track, evaluate, and analyze the attention their firm receives from social media, as well as brand perception and customer insight, using a variety of technologies.

Therefore, People are loyal to social networking sites is example of Friendster illustrate about social media platforms.

To learn more about Social media platforms, refer to the link:

https://brainly.com/question/29459870

#SPJ2

Which of the following best describes the ribbon?

Answers

In computer science, a ribbon refers to a graphical user interface (GUI) element used in software applications to provide access to various functions and features.

What is the Ribbon?

The ribbon is typically a horizontal strip located at the top of the application window and contains tabs and groups of commands organized by functionality.

Users can click on a tab to display a group of related commands, and then select the desired command to perform a specific task. The ribbon was introduced in Microsoft Office 2007 and has since been adopted by many other software applications as a modern and user-friendly interface for organizing and accessing program features.

Read more about graphics here:

https://brainly.com/question/18068928

#SPJ1

People convicted of cyberbullying in most states
face no punishment for their actions.
face varying degrees of punishment.
are taught how to use technology positively.
are forced to do community service.

Answers

Answer: The Answer is B. face varying degrees of punishment.

Hope this helps! ^^ (also i know this is the right answer because i got it correct)

Answer:

b

Explanation: the punishment depends on the severeness , so we dont know the exact punishment

Python:


A two dimensional random walk simulates the behavior of a particle moving in agrid of points. At each step, the random walker moves north, south, east, or westwith probability14, independent of previous moves. Compose a program thattakes a command-line argumentnand estimates how long it will take a randomwalker to hit the boundary of a 2n-by-2nsquare centered at the starting point.

How do I solve this?

So far i have the following:

import sys
import stdio
import random

# the size of the box, which should be 4
n = int(sys.argv[1])

# should be the amount of steps taken to reach the boundary/ end of the box.
c = int(sys.argv[2])

def random_walk_2D (n):
x, y = 0, 0
i = 4
North = 1; South = 2; West = 3; East = 4

for i in range(n):

people = random.randint(1,4)

while I < c:
stdio.write()

if people == 1:
y = y + 1
elif people == 2:
y = y - 1
elif people == 3:
x = x + 1
else :
x = x - 1
return (x, y)

Answers

Bghnnngz hg figuring

1. What does it mean for a website to be "responsive"?

Answers

this just means that the website will be able to render on many different sized screens
Other Questions
How did the outcome of the Battle of Saratoga indirectly lead to the Battle of Yorktown?o General Burgoyne was determined to avenge his defeat at Saratoga, so he chose to attack Yorktown.The Battle of Saratoga made both armies even in the North, so the British turned to the South, leadingto the Battle of Yorktown.O British soldiers fled to Yorktown after the Battle of Saratoga, and the Continental Army followed them.The Continental Army retreated south after the Battle of Saratoga, so the British followed them all theway to Yorktown. Your factory has been offered a contract to produce a part for a new printer. The contract will last for 3 years and your cash flows from the contract would be 4.95 million per year. You upfront set up costs to be ready to produce the part would be 7.75 million. Your discount rate for this contract is 7.6%. What does the NPV rule say you should do? If you take the contract what will be the change in the value of your firm? manpreet experiences high levels of anxiety about exposure to germs. as a result, he typically washes his hands more than 100 times a day. what is the clinical term for this behavior? 1. (a) In reaching equilibrium, how much heat transfer occurs from 1.1 kg of water at 40C when it is placed in contact with 1.1 kg of 20C water? Specific heat of water c=4186 J/(kgC) Hint: If th how to find the rate of change of the inputs t is generally considered that one of the main goals of monetary policy is to control inflation, and many countries have adopted inflation targeting regimes. (You can refer to any major country or the Eurozone in answering this question.)a) What policy instruments are used by monetary policy makers to implement their policy choices? PLEASE HELP ASAP! (ITS TIMED) WILL GIVE BRAINIEST TO THE FIRST AND CORRECT ANSWER!!Which headline best avoids biased language?A. Puppy Park Forcibly Shuttered by Nearby ResidentsB. Park Closure Invites Peace by Expelling PupsC. Pet Owners Unfairly Impacted by Closure of Dog ParkD. Dog Park Closed After Neighbors Complain About NoiseI THINK ITS EITHER B OR D, BUT I DONT KNOW Which part of a plot structure introduces the characters and setting? (5 points)A) DnouementB) ExpositionC) ClimaxD) Falling Action according to available, reliable information, over the past few decades, the: researcher peter lewinsohn and his colleagues summarized the facts about mood disorders that any theory of depression must explain. identify three key contributions made by their research Please help me it will be useful ps i might be heald back Find the missing length indicated. Pls show your work what country can preserve it's liberties if their rulers are not warned from time to time that their people preserve the spirit of resistance? let them take arms. thomas jefferson the nurse is teaching about modifiable factors contributing to cardiovascular disease. which statement by a student nurse indicates correct understanding of the teaching? the present atmospheric concentration of carbon dioxide is approximately 396 ________. An important strength of naturalistic observation is that it allows researchers to ______. analyse in one way the critical role of the media on campaigns Please help! What is the probability a customer ordered a small, given that he or she ordered a hot drink? answer has to be rounded to the nearest percentage. Please look at this photo Help me, i will give brainliest! I started my speech about cybercrimes by stating that Iplagiarised a quote, and that is a cybercrime. I want to end myspeech by relating to my attention getter. What's a good way toconnect the two?