forward(150)
right(60)
forward(150)
right(90)
forward(150)
what will it draw

Answers

Answer 1

forward(150)

right(60)

forward(150)

right(90)

forward(150)

what will it draw


Related Questions

Point out the wrong statement:
A. In theory, any application can run either completely or partially in the cloud.
B. The location of an application or service plays a fundamental role in how the application must be written.
C. An application or process that runs on a desktop or server is executed coherently, as a unit, under the control of an integrated program.
D. None of the mentioned.

Answers

Answer:

D. None of the mentioned.

Explanation:

A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer how to perform a specific task and to solve a particular problem.

This ultimately implies that, a software can be defined as a computer program or application that comprises of sets of code for performing specific tasks on the system.

All of the following statements about a software application or program are true and correct;

A. In theory, any application can run either completely or partially in the cloud.

B. The location of an application or service plays a fundamental role in how the application must be written.

C. An application or process that runs on a desktop or server is executed coherently, as a unit, under the control of an integrated program.

Question 12)
What element should the introduction of an effective essay have?

A.
a call to action
B.
a main idea statement
C.
a summary of the topic
D.
evidence to support the details
E.
details to support the topic

Answers

Answer:

The introduction of your essay should have the summary of your topic.

Explanation:

You obviously need to know what to write for your essay otherwise you would have no ideas, clues, evidence, or any elaboration for what your writing about. Hope this helps

ou are using a GUI HTML editor to create a Webpage. How can you preview and test elements of your page while you are creating it?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

By exporting the page to a separate testing application
B

By viewing the page in a browser during development
C

By publishing the page on the Web when it is finished
D

By viewing the page in the GUI screen during development

Answers

Answer:

I think its A B and C, A and B seems most probable, you should consult the website called stackoverflow

Explanation:

Is there only one option or multiple choice?

a student received a poor grade on her last two language art tests. what are the steps she should take for solving this problem
PLEASE HURRYYYY!

Answers

Answer:

Study and do practice tests

How does an online discussion group differ from one that is held face-to-face?

There is no need for group roles when holding online meetings.
Online discussion groups do not allow members to develop critical-thinking skills.
Group members are more likely to bond together as a group online than they would when meeting face-to-face.
Facilitating an online conversation may require even more work, so that participants continue engaging with one another online.

Answers

Answer: they always will have a different thinkage from others

Explanation:Some people need actual in person learning for better grades it also keeps them from getting distracted easily, they have different brains in everyone in the world everyone thinks, acts and talks in different ways some people dont need in person school because they would rather be online wich are both ok so yes they do bond together online but better in person.

Online discussion group differ from one that is held face-to-face as Group members are more likely to bond together as a group online than they would when meeting face-to-face. Thus, option C is correct.

What is software organization?

A system that defines how specific activities, in this case, the software development process, are directed to achieve corporate goals is referred to as an organizational structure. These activities could include putting rules, roles, and responsibilities in place.

There are four basic modes of collaboration, as illustrated by the exhibit "The Four Ways to Collaborate": a closed and authoritarian network (an elite circle), an open and hierarchical connectivity (an innovation mall), an open and flat network (an innovation community), and a shuttered and flat network (a consortium).

Groupware is software that allows a group of people to work together on the same system or application, regardless of where they are. Email, newsgroups, and many more are examples of groupware applications.

Thus, option C is correct.

For more details regarding collaborative applications, visit:

brainly.com/question/8453253

#SPJ3

Your tasks include identifying competitors, determining your company's market penetration and consulting market research sources. These tasks are examples of:
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

search engine optimization (SEO).
B

off-site Web analytics.
C

on-site Web analytics.
D

pay-per-click.

Answers

Answer:

B. off-site Web analytics.

Explanation:

Marketing can be defined as the process of developing promotional techniques and sales strategies by a firm, so as to enhance the availability of goods and services to meet the needs of the end users or consumers through advertising and market research. The pre-service strategies includes identifying the following target market, design, branding, market research, etc.

Market research can be defined as a strategic technique which typically involves the process of identifying, acquiring and analyzing informations about a business. It involves the use of product test, surveys, questionnaire, focus groups, interviews, etc.

Web analytics refers to a strategic process which typically involves the collection of data, as well as the study of user behavior in an attempt to enhance or boost market share and sales. It is divided into two main categories;

I. on-site Web analytics.

II. off-site Web analytics.

In this scenario, your tasks include identifying competitors, determining your company's market penetration and consulting market research sources. These tasks are examples of off-site Web analytics.

2.5 lesson practice edhesive

Answers

Answer:

Huh,.......? what.....?

Answer:

1. They are contained in the math module.

2. 0, 1, ... 7

3. 0.0 <= r < 5

Explanation:

Consider the following code: x=random.randint (1, 100) The randint is a ____.​

Answers

random integer, in this case betweeen 1 and 100

What is used to prevent all vlans from going across a trunk?

Answers

If you want to play Valorant with me my name is
Ticklemyguitar and my riot id is 2735

Lab Goal : This lab was designed to demonstrate the similarities and differences in a for loop and a while loop.Lab Description : Write a for loop that accomplishes the same goal as a while loop and write a while loop that accomplishes the same goal as a for loop. Finally, write a loop your way: write either a for loop or a while loop that produces the appropriate output.Sample Output :***** While Loop String Cleaner ****I am Sam I am with the letter a removed by a while loop is I m Sm I m***** For Loop String Cleaner ****I am Sam I am with the letter a removed by a for loop is I m Sm I m***** For Loop Common Divisor ****The for loop determined the common divisors of 528 and 60 are12 6 4 3 2***** While Loop Common Divisor ****The while loop determined the common divisors of 528 and 60 are12 6 4 3 2***** My Total Loop My Way ****The total of even numbers from 1 to 1000 using a for loop is 250500The total of even numbers from 1 to 1000 using a while loop is 250500*Only one of the two output statements are required. For extra credit, do both

Answers

Answer:

See Explanation

Explanation:

Required:

Use for and while loop for the same program

(1) String Cleaner

#For Loop

name = "I am Sam"

result = ""  

for i in range(0, len(name)):  

   if name[i]!= 'a':  

       result = result + name[i]

print(result)

#While Loop

name = "I am Sam"

result = ""  

i = 0

while i < len(name):

   if name[i]!= 'a':  

       result = result + name[i]

   i+=1

print(result)

(2): Common Divisor

#For Loop

num1 = 528

num2 = 60

div = num2

if num1 > num2:

   div = num1

for i in range(2,div):

   if num1%i == 0 and num2%i==0:

       print(i,end = " ")

print()

#While Loop

num1 = 528

num2 = 60

div = num2

if num1 > num2:

   div = num1

i = 2

while i <div:

   if num1%i == 0 and num2%i==0:

       print(i,end = " ")

   i+=1

The iterates statements show the difference in the usage of both loops.

For the for loop, the syntax is:

for [iterating-variable] in range(begin,end-1)

-------

---

--

For the while loop, the syntax is:

while(condition)

-------

---

--

why hackers hack?? in other people?​

Answers

could you please reword this question. i don’t get what you’re asking

Answer:

Well, some people are paid, or asked to do so, some are told to by the government, and some do it as a form of protest. White Hat hackers hack people for good purposes, like stopping nuclear bombs and stuff like that, while black hat hackers hack for bad purposes like setting off nuclear bombs and stealing info from other people, and not in a good way.

Explanation:

1) Raj wants to create a presentation of 20 slides on MS PowerPoint. He wants that all the slides should have uniform background and theme. Suggest him which option in MS PowerPoint makes it possible.​

Answers

Raj wants to create a presentation of 20 slides on MS PowerPoint. He wants that all the slides should have uniform background and theme. Suggest him which option in MS PowerPoint makes it possible. Ans:- Slide Master option.

Help asap no links to other sites please​

Answers

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaaa

AAAAA

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

a

a

a

a

aa

a

a

a

a

a

a

aa

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

a

a

a

a

a

a

aa

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

aa

a

a

a

a

aa

a

a

a

aa

a

aa

a

a

a

a

a

a

a

a

a

a

a

aa

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

aa

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

a

a

a

a

a

a

a

a

a

a

a

a

a

aa

a

a

a

a

a

aa

a

aa

a

a

aa

aa

a

a

aa

a

a

aa

a

a

a

a

a

a

aa

aa

aa

aa

a

aaaaaaaaaaaaaa

a

a

a

a

a

aa

a

aa

a

a

a

a

a

a

a

aa

a

a

a

a

Let us build on the solution that we previously created and write a program that takes any number of values as input, and outputs the average, min, and max only if the input values were all numeric Ex If the input is 15 20 0 5 the output is 100.20 Use (1.0f) to format the output of the computed average Define and use in your program the following functions to make your code more modular • convert_str_to_numeric_1int-taken an input string, splits it into tokens, and returns the tokens stored in a list on all tokens were numeric, otherwise, returns an empty list • get_avg-if the input list is not empty and stores only numerical values, returns the average value of the elements, otherwise, returns • get_min if the input list is not empty and stores only numerical values, returns the minimum value in the list otherwise, returns • get_max of the input list is not empty and stores only numerical values, returns the maximum value in the list otherwise, returns None None None Hint. The string method atr. indigit() will help determine if an input string contains only the numbers 0-9 (see the Section on String mathadh

Answers

Answer:

Following are the code to these question:

def convert_str_to_numeric_list (numbers):#defining a method convert_str_to_numeric_list that holds number as a parameter

   numbers_list = numbers.split ()#defining a list that hols list value by using splits method

   for i in range (len (numbers_list)):#use loop for calculate the length of list

       if (numbers_list[i].isdigit ()):#use if that check digits in list

           numbers_list[i] = int (numbers_list[i])#convert list value into numbers  

       else:#else block

           return[] #use return to return list v

   return numbers_list #returning list

def get_avg (numbers_list):#defining a method get_avg that holds list in parameter

   if (len (numbers_list) != 0):#use if to check lenght of the list is not equal to 0

       return sum (numbers_list) / len (numbers_list)#use return to calculate average of the list

   else:  #use else block

       return None #return None value

def get_min (numbers_list):#defining get_min method that holds list in parameter

   if (len (numbers_list) != 0):#use if to check lenght of the list is not equal to 0

    return min (numbers_list) #use return to calculate the minimum element in list

   else: #use else block

    return None #return None

def get_max (numbers_list):#defining get_max method that holds list in parameter

   if (len (numbers_list) != 0): #use if to check lenght of the list is not equal to 0

       return max (numbers_list) #return minimum number in the list elements

   else:# use else block

       return None #return None

numbers = input () #defining numbers that use input method to input value

numbers_list = convert_str_to_numeric_list (numbers) #use list that pass hold the method value

average = get_avg (numbers_list)#defining average variable that calls get_avg method

minimum = get_min (numbers_list)#defining minimum variable that calls get_min method

maximum = get_max (numbers_list)#defining maximum variable that calls get_max method

if (len (numbers_list) != 0):#if to check lenght of the list is not equal to 0

   print ("{:.0f} {} {}".format (average, minimum, maximum)) #print calculated values.

Output:

15 20 0 5

10 0 20

Explanation:

In this code,  a method "convert_str_to_numeric_list"  is declared that holds a numbers variable as a parameter and inside this, a list is declared that

that splits the lists and in the for loop, it checks the length of the array and converts the list value into the numbers, and returns its values.

In the next step, "get_avg, get_min, and get_max" three methods are declared, that check the length of the list and return its respective values.

At the last, the numbers are declared that inputs values and passes into the list and use "average, minimum, and maximum" variable to call the method holds its value and at the last, it uses the print method to print its values.

A license plate has 7 characters. Each character can be a capital letter or a digit except for 0. How many license plates are there in which no character appears more than once and the first character is a digit?

a. 9 P(35, 6)
b. 9 P(34,6)
c. 9.(35)^6
d. 9.(35)^6

Answers

Answer:

b. 9 P(34,6)

Explanation:

Since the 1st character of the number plate is the digit, therefore, there are nine possible ways to select them from digits 1 to 9.

And in the license plate there are 7 characters, the first character is counted before and the remaining 6 characters that can either be a digit or a letter has to be considered.

Now there are in total 34 symbols remaining form a total of 26 letters and 8 digits. They can be placed as 34x33x32x31x30x29 ways = P(34, 6) ways.

Therefore in total for all the characters there are 9 x P(34, 6) different ways.

Write a program that asks for 'name' from the user and then asks for a number and stores the two in a dictionary (called 'the_dict') as key-value pair. The program then asks if the user wants to enter more data (More data (y/n)? ) and depending on user choice, either asks for another name-number pair or exits and stores the dictionary key, values in a list of tuples and prints the list. Note: Ignore the case where the name is already in the dictionary. Example: Name: pransh

Answers

Answer:

Explanation:

The following is written in Python and does as the question requested. It asks the user for the information and adds it to the dictionary (the_dict) then it asks the user if they want to add more info and keeps adding to the_dict until the user states no. Once that happens the program places the dictionary into a tuple and prints out the results.

the_dict = {}

test_tup = ()

while True:

   key = input("Please enter a name: ")

   value = input("Please enter a number: ")

   the_dict[key] = value

   answer = input("More data (y/n)?").lower()

   if answer != 'y':

       break

test_tup = list(test_tup)

test_tup.append(the_dict)

test_tup = tuple(test_tup)

print(test_tup)

Antivirus is a program that detects error.True or False.​

Answers

Answer:  false

Explanation:

Because it isn't true.

The rhythmic note that three beats is called a____half note.

Answers

Answer:

it is called a dotted half note

Answer:
Dotted half note

we are writing a program that takes a word and checks how many letters​

Answers

Answer:

def word_count(word):

return len(word)

a = word_count('scream')

print(a

Explanation:

Using python3:

def word_count(word):

#defines a function named word_count which takes in a single argument which is the word to be counted

return len(word)

#The only thing the function does is to count the number letters in the word.

For instance :

return len(word)

Calling the function and attaching it to the variable named a

Counts the number of letters in scream and assigns the result to a

a = word_count('scream')

print(a)

a gives an output of 6 ; which is the number of letters in scream.


Describe the major elements and issues with system prototyping​

Answers

Answer:

Pic attached...

Hope it helps!!!

qr code is more developed than barcode​

Answers

While a barcode only holds information in the horizontal direction, a QR code does hold information in both horizontal and vertical directions. Due to this, a QR code holds hundreds of times more information than a barcode.

With that being said they have different purposes, and there about the same developed as each other, unless you count how much information they can store.

What is it called when you remove some information from a file or remove a file from the disk ? A) save b) delete c) edit d) remove

Answers

Answer:

delete is the answer okkkkkkkkkkkkkkkk

Consider the following field and incomplete method of some class. The method calcTotal is intended to return the sum of all values in vals.

private int[] vals;

public int calcTotal()
{
int total = 0;

/* missing code */

return total;
}
Which of the code segments shown below can be used to replace /* missing code */ so that calcTotal will work as intended?

I.
for (int i : vals)
{
total += i;
}
II.
for (int pos = vals.length; pos > 0; pos--)
{
total += vals[pos];
}
III.
int pos = 0;
while (pos < vals.length)
{
total += vals[pos];
pos++;
}


I only
II only
I and III
II and III
III only

Answers

Answer:

I and III  

Explanation:

We need a solution that iterates through the each item in the vals array and sums them (cumulative sum). The result should be held in total.

I:

This one uses enhanced for loop (i refers to the each value in vals) and sums the values.

II:

This one uses for loop, but the loop is not constructed well. The control variable of the loop, pos, initially set the length of the vals and the loop iterates while pos is greater than 0. If vals have 10, 20, 30 as values, the length would be 3. In this case, vals[pos] when pos is 3, would give us an error because last index would be 2 in that scenario. Also, you can't access the first value because loop will stop when pos is 0.

III:

This one uses a while loop and iterates each value in the vals and sums them. Note that in this case, the values pos have will be 0, 1, 2 ..., length-1 - which are valid to access each item.

can you help me with this question please ​

Answers

d. half period because it is the converting of bidirectional current flow to unidirectional currency flow.

g Consider the turning point problem again, but this time you are given a sequence of at least three integers, which consists of a decreasing subsequence followed by an increasing subsequence. Using the divide and conquer technique, develop a recursive algorithm that finds the index of the turning point in the sequence (that is, the point where it transitions from a decreasing subsequence to an increasing subsequence). For example, in the sequence [43 30 16 10 7 8 13 22], the integer 7 is the turning point and its index is equal to 4 (assuming the starting index is 0). So, the algorithm should return 4

Answers

Answer:

Explanation:

The following code is written in Python, it creates a recursive function that takes in a list as a parameter, then compares the first two items in the list if the first is greater, it increases the index by one and calls the function again. This is done until the turning point is found, it then prints out the position of the turning point int the list.

def find_turning_point(list, x=0):

   if list[x] > list[x + 1]:

       x += 1

       return find_turning_point(list, x)

   else:

       return "The turning point position is: " + str(x)

we can improve our knowledge and skills on animals and fish raising with the use of internet​

Answers

Answer:

yeah that would be great

What is result of executing the following code?
public class Question11 {
private static int x = 1;
public static void main(String[] args) {
int x = 5;
System.out.printf("local x in main is %d%n", x);
useLocalVariable();
useField();
useLocalVariable();
useField();
System.out.printf("%nlocal x in main is %d%n", x);
}
public static void useLocalVariable() {
int x = 25;
System.out.printf(
"%nlocal x on entering method useLocalVariable is %d%n", x);
++x;
System.out.printf(
"local x before exiting method useLocalVariable is %d%n", x);
}
public static void useField() {
System.out.printf(
"%nfield x on entering method useField is %d%n", x);
x *= 10; // modifies class Scope’s field x
System.out.printf(
"field x before exiting method useField is %d%n", x);
}
}

Answers

Answer:

Explanation:

With the main method int the question calling the useLocalVariable and useField variable various times and then also printing out the variable using the printf method. The output of executing this code would be the following...

local x in main is 5

local x on entering method useLocalVariable is 25

local x before exiting method useLocalVariable is 26

field x on entering method useField is 1

field x before exiting method useField is 10

local x on entering method useLocalVariable is 25

local x before exiting method useLocalVariable is 26

field x on entering method useField is 10

field x before exiting method useField is 100

local x in main is 5

Question 5) What is a feature of podcasts?

A.
They rely on airwaves for broadcasting.
B.
They are inexpensive to produce.
C.
They are accessible only within a specific area.
D.
They require video equipment to create.
E.
They allow easy access to documents.

Answers

Answer: B

Explanation: They are inexpensive to produce.

Create a program named Auction that allows a user to enter an amount bid on an online auction item. Include three overloaded methods that accept an int, double, or string bid. Each method should display the bid and indicate whether it is over the minimum acceptable bid of $10. If the bid is greater than or equal to $10, display Bid accepted. If the bid is less than $10, display Bid not high enough. If the bid is a string, accept it only if one of the following is true: It is numeric and preceded with a dollar sign. It is numeric and followed by the word dollars. Otherwise, display a message that says Bid was not in correct format. Grading When you have completed your program, click the Submit button to record your score.

Answers

Answer:

Explanation:

The following code is written in Java and creates the overloaded methods as requested. It has been tested and is working without bugs. The test cases are shown in the first red square within the main method and the output results are shown in the bottom red square...

class Auction {

   public static void main(String[] args) {

       bid(10);

       bid(10.00);

       bid("10 dollars");

       bid("$10");

       bid("150 bills");

   }

   public static void bid(int bid) {

       if(bid >= 10) {

           System.out.println("Bid Accepted");

       } else {

           System.out.println("Bid not high enough");

       }

   }

   public static void bid(double bid) {

       if(bid >= 10) {

           System.out.println("Bid Accepted");

       } else {

           System.out.println("Bid not high enough");

       }

   }

   public static void bid(String bid) {

       if (bid.charAt(0) == '$') {

           if (Integer.parseInt(bid.substring(1, bid.length())) > 0) {

               System.out.println("Bid Accepted");

               return;

           } else {

               System.out.println("Bid not in correct Format");

               return;

           }

       }

       int dollarStartingPoint = 0;

       for (int x = 0; x < bid.length(); x++) {

           if (bid.charAt(x) == 'd') {

               if (bid.substring(x, x + 7).equals("dollars")) {

                   dollarStartingPoint = x;

               } else {

                   break;

               }

           }

       }

       if (dollarStartingPoint > 1) {

           if (Integer.parseInt(bid.substring(0, dollarStartingPoint-1)) > 0) {

               System.out.println("Bid Accepted");

               return;

           } else {

               System.out.println("Bid not in correct format");

               return;

           }

       } else {

           System.out.println("Bid not in correct format");

           return;

       }

   }

}

An attacker has hidden an NFC reader behind an NFC-based kiosk in an airport. The attacker uses the device to capture NFC data in transit between end user devices and the reader in the kiosk. She then uses that information to masquerade as the original end user device and establish an NFC connection to the kiosk. What kind of attack has occurred in this scenario

Answers

Answer:

Nfc relay attack

Explanation:

The NFC relay attack occurs when data is extracted by an attacker who puts himself in the middle of two parties having a communication with each other. As the message gets to a party, the attacker gets it and modifies it to their taste then passes it on.

This attacker in this question is extracting data by establishing communication between end user devices and reader in the kiosk

Other Questions
Do muscle cells and skin cells have the same dna? Explain After all men fall asleep, Antonio makes a surprising suggestion to Sebastian. What is the suggestion ? plz help i will mark brainless :) In which situation is maximum work considered to be done by a force? A. The angle between the force and displacement is 180. B. The angle between the force and displacement is 90. C. The angle between the force and displacement is 60. D. The angle between the force and displacement is 45. E. The angle between the force and displacement is 0. 1.The Industrial Revolution began in what nation? A) France B) England C) United States D) Germany 2.Use your answer from #1 to answer the following question: Which of the following was NOT a reason the Industrial Revolution started there? A) Had good climate for producing textiles B) Had lots of natural resources C) Government encouraged international trade D) Had no horses 3.The Industrial Revolution describes a time when: work done in overseas colonies replaced work done in "mother" countries. Work done in "mother" countries replaced work done in overseas colonies. Work done by hand in the home replaced work done by machines in factories. Work done by machines in factories replaced work done by hand in the home. Good made and sold from the home instead of factories was called: A) Factory System B) Cottage Industry C) Industrial Revolution D) Agricultural Revolution What was the first industry to industrialize? A) Iron and Steel Industry B) Textile Industry (cloth)C) Transportation Industry D) Steam Engine Industry 4.Why did the Factory System replace the Cottage Industry? The factory system relied on individual farmers to make products by hand. The cottage industry used machinery that was too large for peoples' homes. The factory system was better at producing crops than the cottage industry. The cottage industry was too slow to keep up with the demand for products.What effect did the cotton gin have on the textile industry?No effectIncreased the price of cottonDecreased the price of cotton.Influenced the invention of the steam engine Lower-class apartments near factories where working-class families lived were called: A) Urban centers B) Company towns C) Tenement homes D) Cottage villas 5.Moving from rural farms to cities is called: A) Metroization B) Urbanization C) Emigration D) Immigration 6.Which of the following is NOT true regarding child labor in England? Children under the age of 9 were used in factories and mines. Children were used in factories and mines because they were cheaper than hiring men. After 1833, children were required by law to go to school. After 1833, children under the age of 13 could not work in factories Organizations/Clubs made up of people from the same profession that fought for better pay and shorter work hours are called: A) Vaccine B) Socialists C) Soviets D) Unions 7.He wrote the Communist Manifesto which promoted the idea of a workers' revolution and created the idea of Communism .A) Karl Marx B) Robert Owen C) Frederick Taylor D) Robert Fulton 8. Why was Otto Von Bismarck important? A. He was the prime minister of China and credited with unifying China B. He was the prime minister of Japan and credited with unifying Japan C. He was the prime minister of Indonesia and credited with unifying the Southwest Pacific islands D. He was the prime minister of Prussia and credited with unifying Germany 9.What was the area that France controlled in Asia called? A. French IndoChina B. French IndoJapan C. French Indonesia D. French Prussia10.Which of the following is the best definition of imperialism? A. a desire by a people to govern themselves in their traditional lands B. an economic system controlled by the government for the welfare of all citizens C. when a strong nation controls weaker ones for economic benefit D. none of the above 11.Why did the British move in on the Boers in South Africa and take their land? A. gold and diamonds were discovered there B. it was good farm land C. British needed the permission of the Boers D. the Zulus had driven them south12.What was the result of the Boer war?A. the protectorate South Africa was established B. Great Britain was chased out of Africa C. The Boers blended in with the British D. Great Britain took over French territory13What was the open door policy and what country created it? A. Policy that allowed for open trade with many restrictions created by China B. Policy created to control trade routes created by Japan C. Policy that allowed for open trade without restrictions and created by United States and China D. Policy created to influence trade amongst China and it was created by Africa 13Where did the British Empire control an entire continent?a. North Americab. Africac. Europed. Australia15. Which continent had the greatest number of British colonies?a. Asiab. Africac. North Americad. South America On which of these continents did Britain control the smallest land area?a. Asia b. Africac. North America d. South America Why was the election of 1800 a turning point in American history? Kelly asked some of her classmates how many hours of sleep they get on school nights. Here are the results:6, 8, 7, 9, 8, 8, 8, 9, 9, 10, 6, 8, 9, 7, 8What are the:Mean:Median:Mode: Name 2 physical properties that would allow differentiation between copper, lead and iron shot. Solve the following equation 2x 2 3=01 Circuit City is having a sale on computers. Max picks out a computer that was originally $1199.99 If the computer is 41% off, What is the final price of the computer? Round to the nearest penny. In the evenings, Jake and his friends would cookout and make s'mores for dessert. the ratio of chocolate squares to Graham crackers that they used is shown in the graph below. (repost) HELP DUE IN 5 MINDO NOT USE G O O G L Eplz or Ill get an F The word emit means to give off." Whatdo vehicles that run on hydrogen fuel cells emit? - - i_ cuesta la ropa para la celebracin?- La ropa cuesta 250 pesos.CundoCuntoCulCmo Write the past participle of the following verbs (female plural)1. Quemar2. Vendar3. Hinchar4. Torcer5. Romper6. Herir7. Dormir8. Lastimar(Please Help Me!) Can someone help me with this one please EASY BRAINLIEST!!! Write about 3 sentences about the painting American Gothic done by Grant Wood. What is the story behind this painting? Who are these people? What are they doing? Dont read the poem yet, just look at the picture. A swimmming pool with cylindrical base has a diameter of 21 feet and a depth of 5 feet. Find the volume of the pool Can you make a triangle?8, 2,8 I need the answer to this Does the Y-axis or X-axis come first?