If you want to see the tab stops, what should you do?

Answers

Answer 1

Answer:

click on it

Explanation:

the coupon code free shipping code free shipping code for Science is it ok if I can help with her oo cool I don't know if you can help you out listen to the main office and you cross the road to the main one is a selfie stick to me when we


Related Questions

Ying sends a program to a colleague for help in debugging it. The following message is returned: “You forgot to initialize the variable for the number of attempts.” How should this problem be fixed? (QUICK!!)

Answers

Answer:

To fix this problem, the variable for the number of attempts should be initialized with a starting value, such as 0 or 1. This can be done by adding a line of code at the beginning of the program that assigns a value to the variable, like this:

attempts = 0  # Initialize variable for number of attempts

Answer:

A set the variable to a beginning value

Explanation:

Just did quiz

Use the drop-down menus to complete statements about how to use the database documenter

options for 2: Home crate external data database tools

options for 3: reports analyze relationships documentation

options for 5: end finish ok run

Use the drop-down menus to complete statements about how to use the database documenteroptions for 2:

Answers

To use the database documenter, follow these steps -

2: Select "Database Tools" from   the dropdown menu.3: Choose "Analyze"   from the dropdown menu.5: Click on   "OK" to run the documenter and generate the desired reports and documentation.

How is this so?

This is the suggested sequence of steps to use the database documenter based on the given options.

By selecting "Database Tools" (2), choosing "Analyze" (3), and clicking on "OK" (5), you can initiate the documenter and generate the desired reports and documentation. Following these steps will help you utilize the database documenter effectively and efficiently.

Learn more about database documenter at:

https://brainly.com/question/31450253

#SPJ1

what is the different between the simple statement and compound statement ?​

Answers

Answer:

Following is the difference between Simple and Compound statement; Simple statement (sentence) is one which has only one subject and one predicate. A Compound statement (sentence) is one which has two or more independent clauses consisting of their own subject and predicate.

Explanation:

hope it helps you

Mark as brainliest.

And follow for a follow back

how to write a simple bash script in linux

Answers

Writing a simple bash script in Linux involves a few steps to create a script file, define its execution permissions, write the desired commands, and save the file. Bash scripts allow for automating tasks and executing multiple commands sequentially.

Choose a text editor: Select a text editor of your preference, such as nano, vi, or gedit, to create and edit the script file.

Create a new file: Open the text editor and create a new file with a .sh extension. For example, you can use the command nano script.sh to create a new file named "script.sh" using the nano editor.

Define the shebang: Start the script file with a shebang line, which tells the system the interpreter to use. The most common shebang for bash scripts is #!/bin/bash. It indicates that the script should be executed using the Bash shell.

Write script commands: In the script file, write the desired commands that you want to execute. For example, you can use basic commands like echo, if statements, loops, or other Linux commands to perform various tasks.

Save the file: Save the script file after writing the commands. In the nano editor, you can press Ctrl + O to save the file and Ctrl + X to exit the editor.

Set execution permissions: Make the script file executable using the chmod command. For example, you can use chmod +x script.sh to give execute permissions to the owner of the script file.

Execute the script: Run the script by entering its filename preceded by "./". For example, if your script file is named "script.sh", you can run it using ./script.sh. The script will execute the commands written in it.

Test and modify: Run the script and verify its functionality. If needed, make modifications to the script file and repeat the testing process until you achieve the desired results.

By following these steps, you can create a simple bash script in Linux. Bash scripting allows you to automate tasks, execute commands sequentially, and perform various operations in a convenient and efficient manner.

For more such questions on Linux, click on:

https://brainly.com/question/12853667

#SPJ8

Which properties of the word "readability” changed?

Answers

The properties of the word "readability” that has changed are;

Its caseIts  colorIts  sizeIts style

What is readability?

The term readability is known to be the ease that any given reader do feel when they are said to understand any kind of written text.

Note that In natural language, the readability of text is one that is based on its content as well as the presentation and it entails its font size, line height, character spacing, and others.

Note that it also entails:

The Speed of perceptionIts Visibility, etc.

Therefore, The properties of the word "readability” that has changed are;

Its caseIts  colorIts  sizeIts style

Learn more about readability from

https://brainly.com/question/3923453

#SPJ1

In this week's lecture, you learned that PowerPoint allows you a great deal of creativity when it comes to developing your presentation. With that in mind, in this week's discussion, we will be investigating more of what PowerPoint offers users as far as creativity goes. Please go to the link below:

Templates for PowerPoint

In your initial post, highlight at least two PowerPoint templates. You will download the templates from the website and attach the blank PowerPoint files to your post. You will address the following prompts as you write your post:

Explain how each template you chose could be used in a specific professional setting. Be detailed.
Describe, in detail, how these templates provide a presenter an advantage that a basic slide design (or no design at all) could not.
Address the potential danger in focusing too much on templates and slide designs. Can a user go too far?

Answers

The template you chose could be used in a specific professional setting.

Form templates can be used in making course forms, school forms and others.Content builder element templates can be used in business presentation, marketing and others.

How these templates provide a presenter an advantage

Templates is known to be one that makes the creation of documents to be simply and very easy.

A form template is known to be a kind of a single file that is made up of a lot of supporting files, such as files that tells a person how controls on the form template should look like and others.

A content builder template is one that can make you to be specific in terms of your content and buttress on key points in regards to what you are presenting.

What are the potential danger in focusing too much on templates and slide designs?

The dangers are;

Wordiness.A case of information overload for the target audience. Unable to capture the audience attention.Too much information can overwhelm the target audience and also distract them from getting the message that is been passed. Can a user go too far?

Yes they can.

Note that Templates can relief human workload and make us to have little stressed, and, also at the same time, they help to boast efficiency. Templates brings up the attention of the audience as well as saves time and money.

Hence, The template you chose could be used in a specific professional setting.

Form templates.Content builder element templates.

Learn more about template from

https://brainly.com/question/27326303

#SPJ1

In this week's lecture, you learned that PowerPoint allows you a great deal of creativity when it comes
In this week's lecture, you learned that PowerPoint allows you a great deal of creativity when it comes

class Main {


public static void main(String[] args) {


int n=1;


while(n<=5) {


int power = 1;


while(power <= 3) {


System.out.printf("%d ", (int) Math.pow(n,power));


power++;


}


System.out.println();


n++;


}


}


}

class Main { public static void main(String[] args) { int n=1; while(n&lt;=5) { int power = 1; while(power

Answers

Answer:

class Main {

 static void printPowers(int howMany, int nrRows) {

   int n=1;

   while(n<=nrRows) {

     int power = 1;

     while(power <= howMany) {

       System.out.printf("%d ", (int) Math.pow(n,power));

       power++;

     }    

     System.out.println();

     n++;

   }

 }

 

 public static void main(String[] args) {

   printPowers(3,5);

 }

}

Explanation:

Created a method with two parameters.

QUESTION 10
If there is an Apple logo somewhere on your computer, more than likely your computer runs what type of operating system?
O Linux
Windows
macos
Unix

Answers

The answer is MacOS

An __________ hard drive is a hard disk drive just like the one inside your, where you can store any kind of file.

Answers

An external hard drive is a hard disk drive just like the one inside your computer, where you can store any kind of file.

These drives come in various sizes, ranging from small portable drives that can fit in your pocket to larger desktop-sized drives with higher storage capacities. They often offer greater storage capacity than what is available internally in laptops or desktop computers, making them useful for backups, archiving data, or expanding storage capacity.

Overall, external hard drives are a convenient and flexible solution for expanding storage capacity and ensuring the safety and accessibility of your files.

This is in Java.
Description:

Output "Fruit" if the value of userItem is a type of fruit. Otherwise, if the value of userItem is a type of drink, output "Drink". End each output with a newline.

Ex: If userItem is GR_APPLES, then the output is:
Fruit

This is in Java. Description:Output "Fruit" if the value of userItem is a type of fruit. Otherwise, if

Answers

Explanation:

public class GrocerySorter {

  public static void main(String[] args) {

      GroceryItem item = new GroceryItem("GR_APPLES", 1.99);

      String itemName = item.getName();

      if(itemName.startsWith("GR_")) {

          System.out.println("Fruit\n");

      } else {

          System.out.println("Drink\n");

      }

  }

}

The program illustrates the use of conditional statements. Conditional statements in programming are statements that may or may not be executed. Their execution depends on the truth value of the condition.

What is program in Python?

The program in Python, where comments are used to explain each line is as follows

#This gets input from the user

userItem = input("Item: ")

#This checks if user input is GR_APPLES or GR_BANANAS

if(userItem == "GR_APPLES" or userItem == "GR_BANANAS"):

#If yes, the program prints Fruit

print("Fruit")

#if otherwise, this checks if user input is GR_JUICE or GR_WATER

elif (userItem == "GR_JUICE" or userItem == "GR_WATER"):

#If yes, the program prints Drink

print("Drink")

#If otherwise

else:

#This prints Invalid

print("Invalid")

See attachment for sample run

Therefore, The program illustrates the use of conditional statements. Conditional statements in programming are statements that may or may not be executed. Their execution depends on the truth value of the condition.

Read more about conditional statements at:

brainly.com/question/4211780

#SPJ2

TRUE OR FALSE: COMPUTER SCIENCE!



Computer Software consists of system software and
application software.
True
False


Answers

Answer:true

Explanation:

Answer:

false it is not true.

it is different on its own

System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio

Answers

System testing is a crucial stage where the software design is implemented as a collection of program units.

What is Unit testing?

Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.

It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.

Read more about System testing here:

https://brainly.com/question/29511803

#SPJ1

In much of the world, SI units are used in everyday life and not just in science. Why would it make sense for people in the United States to use SI units in everyday life, too?

Answers

Answer:

The use of SI is a way to standardize all measurements.

Explanation:

The use of SI is a way to standardize all measurements. In this way, people all over the world can communicate the data without any confusion. This allows them to exchange quantitative information when it comes to business and science in an effective and convenient way.

The material inspection and recieving report the multi-purpose document that serves as evidence of inspection and acceptance, shipping document, receiving document, and contractor invoice is designated as the:________.

Answers

Answer:

DD Form 250

Explanation:

DD Form 250 which is an acronym for Department of Defense Form 250.

It is the Material Inspection and Receiving Report that is used for contracts supplies and services including acquiring noncommercial commodities such as:

1. Acknowledgment of equipment by the Government

2. Contractor's invoice for expense.

3. loading record for hauling and acquiring.

4. Proof of Government Quality assessment.

Hence, in this case, the correct answer is DD Form 250.

does scope frequently changes during a project?

Answers

Explanation:

no it dosent as scope is fixed


Spreadsheet software enables you to organize, calculate, and present numerical data. Numerical entries are called values, and the
instructions for calculating them are called.

Answers

Answer:

It's called coding frame

Please help its due on May 14th. The code has to be in python.

Please help its due on May 14th. The code has to be in python.
Please help its due on May 14th. The code has to be in python.

Answers

An example of a Python function that reverses a list:

def reverse_list(lst):

   return lst[::-1]

How to use this Python function

To reverse a list, simply provide it as an input to this function, which will perform the reversal and give you the modified list.

Here's an example of usage:

my_list = [1, 2, 3, 4, 5]

reversed_list = reverse_list(my_list)

print(reversed_list)

The Output

[5, 4, 3, 2, 1]

The reverse_list function utilizes list slicing with a step value of -1 in lst[::-1] to invert the order of items in the list. A new list is formed with the elements arranged in the opposite order.


Read more about Python function here:

https://brainly.com/question/18521637

#SPJ1

Write a program that defines the following two lists:
names = ['Alice', 'Bob', 'Cathy', 'Dan', 'Ed', 'Frank','Gary', 'Helen', 'Irene', 'Jack',
'Kelly', 'Larry']
ages = [20, 21, 18, 18, 19, 20, 20, 19, 19, 19, 22, 19]
These lists match up, so Alice’s age is 20, Bob’s age is 21, and so on. Write a program
that asks the user to input the number of the person to retrieve the corresponding
data from the lists. For example, if the user inputs 1, this means the first person
whose data is stored in index 0 of these lists. Then, your program should combine
the chosen person’s data from these two lists into a dictionary. Then, print the
created dictionary.
Hint: Recall that the function input can retrieve a keyboard input from a user. The
signature of this function is as follows:
userInputValue = input("Your message to the user")
N.B.: userInputValue is of type String

Answers

Answer: I used colab, or use your favorite ide

def names_ages_dict():

 names = ['Alice', 'Bob', 'Cathy', 'Dan', 'Ed', 'Frank','Gary', 'Helen', 'Irene', 'Jack', 'Kelly', 'Larry']

 ages = [20, 21, 18, 18, 19, 20, 20, 19, 19, 19, 22, 19]

 # merging both lists

 names_ages = [list(x) for x in zip(names, ages)]

 index = []

 # creating index

 i = 0

 while i < len(names):

     index.append(i)

     i += 1

 # print("Resultant index is : " ,index)

 my_dict = dict(zip(index, names_ages))

 print('Input the index value:' )

 userInputValue  = int(input())

 print(f'data at index {userInputValue} is, '+ 'Name: ' + str(my_dict[input1][0] + '  Age: ' + str(my_dict[input1][1])))

 keys = []

 values = []

 keys.append(my_dict[input1][0])

 values.append(my_dict[input1][1])

 created_dict = dict(zip(keys, values))

 print('The created dictionary is ' + str(created_dict))

names_ages_dict()

Explanation: create the function and call the function later

Write a program that defines the following two lists:names = ['Alice', 'Bob', 'Cathy', 'Dan', 'Ed', 'Frank','Gary',

User Interface Design ensures that the interface has elements that are easy to ________________. (Choose all that apply)

Question 1 options:

a) use to facilitate actions


b) change location


c) understand


d) remove


e) access

Answers

Answer:

A, C, D

Explanation:

User Interface (UI) Design focuses on anticipating what users might need to do and ensuring that the interface has elements that are easy to access, understand, and use to facilitate those actions.

i believe it’s acd:) hope this helps

In the “Understanding Computer Software” Learning Activity, the various parts of a portable computer were identified and described. If you were to go to a computer store to purchase a computer, you will find that there are many options available. If you are purchasing a computer that you will use primarily to check emails and write documents, what type of computer would you recommend? Can you describe the various software applications that you would need or would like to have installed on your computer? Using specific information from the Learning Activity, explain how you would be able to determine if the software applications you would like installed are compatible with your hardware components?

Answers

For basic computer use, get a laptop or desktop with modest specs. Consider a mid-range CPU. Dual or quad-core CPU and 4GB-8GB RAM enough for email and docs.

What is the Computer Software?

Ensure smooth multitasking and efficient performance with SSD storage for email and documents. Get a computer with at least 256GB or 512GB storage and a standard 1080p display for basic tasks. Choose a laptop screen size of 13-15 inches.

Next, decide on necessary software, starting with an email client. Popular word processing software options include Microsoft Word. Use free alternatives like G.o/ogle Docs or Apache OpenOffice instead of Microsoft Word.

Learn more about Computer Software from

https://brainly.com/question/28224061

#SPJ1

Double any element's value that is less than controlValue. Ex: If controlValue = 10, then dataPoints = {2, 12, 9, 20} becomes {4, 12, 18, 20}.

import java.util.Scanner; public class StudentScores { public static void main (String [] args) { Scanner scnr = new Scanner(System.in); final int NUM_POINTS = 4; int[] dataPoints = new int[NUM_POINTS]; int controlValue; int i; controlValue = scnr.nextInt(); for (i = 0; i < dataPoints.length; ++i) { dataPoints[i] = scnr.nextInt(); } for (i = 0; i < dataPoints.length; ++i) { System.out.print(dataPoints[i] + " "); } System.out.println(); } }

Answers

Answer:

import java.util.Scanner;

public class StudentScores

{

public static void main(String[] args) {

 Scanner scnr = new Scanner(System.in);

 final int NUM_POINTS = 4;

 int[] dataPoints = new int[NUM_POINTS];

 int controlValue;

 int i;

 controlValue = scnr.nextInt();

 for (i = 0; i < dataPoints.length; ++i) {

     dataPoints[i] = scnr.nextInt();

 }

 for (i = 0; i < dataPoints.length; ++i) {

     System.out.print(dataPoints[i] + " ");

 }

 System.out.println();

 for (i = 0; i < dataPoints.length; ++i) {

     if(dataPoints[i] < controlValue){

         dataPoints[i] = dataPoints[i] * 2;          

     }

     System.out.print(dataPoints[i] + " ");

 }

}

}

Explanation:

*Added parts highligted.

After getting the control value and values for the array, you printed them.

Create a for loop that iterates through the dataPoints. Inside the loop, check if a value in dataPoints is smaller than the contorolValue. If it is, multiply that value with 2 and assign it to the dataPoints array. Print the elements of the dataPoints

Answer:

import java.util.Scanner;

public class numm3 {

   public static void main (String [] args) {

       Scanner scnr = new Scanner(System.in);

       final int NUM_POINTS = 4;

       int[] dataPoints = new int[NUM_POINTS];

       int controlValue;

       int i;

       System.out.println("Enter the control Variable");

       controlValue = scnr.nextInt();

       System.out.println("enter elements for the array");

       for (i = 0; i < dataPoints.length; ++i) {

           dataPoints[i] = scnr.nextInt();

       }

       for (i = 0; i < dataPoints.length; ++i) {

           System.out.print(dataPoints[i] + " ");

       }

       System.out.println();

       //Doubling elements Less than Control Variable

       for (i = 0; i < dataPoints.length; ++i) {

           if (dataPoints[i]<controlValue){

               dataPoints[i] = dataPoints[i]*2;

           }

           System.out.print(dataPoints[i] + " ");

       }

       System.out.println(); } }

Explanation:

See the additional code to accomplish the task in bold

The trick is using an if statement inside of a for loop that checks the condition (dataPoints[i]<controlValue) If true, it multiplies the element by 2

Given integer variables seedVal and sidesNum, output two random dice rolls. The die is numbered from 1 to sidesNum. End each output with a newline.

Ex: If sidesNum is 12, then one possible output is:

5
12

Answers

Answer:

#include <stdio.h>

#include <stdlib.h>

int main() {

  int seedVal;

  int sidesNum;

 

  scanf("%d%d", &seedVal, &sidesNum);

 

  srand(seedVal);

 

  int dice1 = (rand() % sidesNum) + 1;

  int dice2 = (rand() % sidesNum) + 1;

 

  printf("%d\n%d\n", dice1, dice2);

 

  return 0;

}

Select the pseudonym of the founder of the Bitcoin payment system.?

Answers

Answer: Satoshi Nakamoto


There is a surplus of scientific researchers for a vaccine. This means the demand for this career has
decreased
decreased then increased
O increased
O stayed the same
Please help, if you help good luck will come your way :)

Answers

There is a surplus of scientific researchers for a vaccine. This means the demand for this career has increased. Thus, option C is correct.

What is the vaccine?

A vaccination often comprises a substance that simulates a germ that causes the disease; this substance is frequently created from the bacteria's weaker or dead versions, its poisons, or another of its glycoprotein.

There are various successes of science researchers for a vaccine but vaccine, so the career demand would be to increase as the people will be the demand to find the new vaccine for the disease which is being gone on. Therefore, option C is the correct option.

Learn more about vaccine, here:

https://brainly.com/question/6683555

#SPJ1

Most of the devices on the network are connected to least two other nodes or processing
centers. Which type of network topology is being described?

bus

data

mesh

star

Answers

The network topology “mesh” is being described. In terms of computer science, a kind of topology where devices connect to 2+ nodes is called mesh.

working from the farmerp database, submit the sql code to create the following table: employee. employee id must be an autonumber field starting with number 10001. employee will have the additional fields: last name, first name, hourly wage.

Answers

AutoNumber starts at 1 and increases by 1 with each new row for newly created tables. On occasion, though, we would prefer the AutoNumber to begin at a number higher than 1. To accomplish this, construct an Append query and put the value of the ID one below the starting number you want (or Seed value).

FarmERP has always worked to improve the bar for food safety and sustainability. The company is a proud member of GLOBALG.A.P. and the Sustainable Rice Platform.

What do you mean by Farmerp database ?

Since the agricultural industry started experiencing a fundamental shift with the introduction of technologies, FarmERP has emerged as the industry leader in farm business management. Since 2001, we've been assisting agribusinesses in more than 25 nations.

Farm ERP is dedicated to increasing digital farming's overall effectiveness and establishing "sustainable agriculture" as the new standard. Zero Hunger and Climate Change are two of the Sustainable Development Goals (SDGs) of the United Nations that serve as our compass for advancing the agriculture sector's all-encompassing development.

To know more about FarmERP please click here ; https://brainly.com/question/28236657

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.

Answers

Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.

Writting the code:

Assume the variable s is a String

and index is an int

an if-else statement that assigns 100 to index

if the value of s would come between "mortgage" and "mortuary" in the dictionary

Otherwise, assign 0 to index

is

if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)

{

   index = 100;

}

else

{

   index = 0;

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

Following Aristotle,man by nature is a political animal,justify the above claim in the light of the Russian invasion of Ukraine

Answers

Following Aristotle, man by nature is a political animal using the claim in the light of the Russian invasion of Ukraine is that:

Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

What is the quote about?

In his Politics, Aristotle was  known to be a man who believed man to be a "political animal" due to the fact that he is a social creature that is said to have the power of speech and also one that has moral reasoning:

He sate that man is a lover of war and as such, Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

Learn more about Aristotle from

https://brainly.com/question/24994054

#SPJ1

Which is the best description of the difference between bound and unbound forms?
A.Bound forms are similar to hierarchical forms but pop up in a separate window, while unbound forms are flat forms that do not have subforms.

B.Bound forms are linked to a table or query, while unbound forms are not linked to a table or query but are used to operate and navigate a database.

C.Bound forms perform tasks based on user input, while unbound forms navigate between multiple forms.

D.Bound forms are the basic interface for inputting information into tables or queries, while unbound forms have one or more subforms within the main form.

Answers

Answer:=B

Explanation:

The answer to the question here is B

currentScore = 7
highScore= currentScore
currentScore = 3
(Display highScore)

O 3
O7
O4
O2

Answers

Answer:

the current score is 3 because it says in the guidelines that the current score is 3

Other Questions
You are given the following estimated equation: ln( price )=3.85+0.0025 sqrft +0.02 bdrms 0.056 colonial +0.00068 sqrftcol (0.18)n=88(0.0006)R2=0.7034(0.003)(0.154) in which: price = house price in thousands of dollars; sqrft = size of the house in square footage; bdrms = number of bedrooms in the house; colonial =1 if the house is of a colonial architecture, and 0 if not; sqrft.col is an interaction variable equal to sqrft * colonial 1a) Provide an appropriate interpretation for each partial slope in the above estimated equation.1b) Test the individual significance of each coefficient estimate from the above estimated equation at 5% significance level.1c) With a 5% significance level, test the joint significance of all partial slopes in the above estimated equation.1d) Calculate the estimated change in a house price due to an additional four bedrooms of 150 square feet each: i) if the house has a colonial architecture; ii) if the house doesnt have a colonial architecture. james and mark are delivering newspapers. if james delivers 130 papers in one hour and Mark delivers 210 papers in three hours,how long will it takes both of them working together to deliver 1000 newspapers? Approximately one third of the erythrocyte cell volume is composed of ____. What value is missing from the table suppose a father is heterozygous for type a blood. a mother is heterozygous for type b blood. what would be the phenotypic ratio for blood types of their children? A rectangular area of land is being sold off in smaller pieces. The total area of the land is 2^15 square miles. The pieces being sold are 8^3 square miles in size. How many smaller pieces of land can be sold at the stated size? Compute the actual number of pieces. HELLPP PLS !!! What is the worst/most hurtful thing anyone has ever said to you? According to crtics, how did NAFTA have a negative effect on Washington? It caused the loss of thousands of jobsIt increased income taxes for residents. It decreased trade with Canada. When a company collects sales tax from a customer, the event results in a(n) ________ in Cash and a(n) ________ in Sales Tax Payable. a. increase; decrease b. increase; increasec. decrease; decrease d. decrease; increase What are Washingtons views about the role of morality and religion in the life of a nation? Explain the potential issues that can arise by not keeping a balanced checkbook. Help with Spanish please!! this is due tonight please help me !!!!! NEED HELP ASAPPPThe probability that a mature hen will lay an egg on a given day is 0.80. Hannah has 6 hens. Using the table, what is the probability that at least 2 of the hens will lay eggs on a given day?A 2-column table with 7 rows. Column 1 is labeled number of eggs with entries 0, 1, 2, 3, 4, 5, 6. Column 2 is labeled probability with entries 0.000064, 0.002, 0.015, 0.082, 0.246, 0.393, question mark.0.0150.0170.9830.998 What is earths position in the hierarchy of organizations within the universe? In a particularclass of 22 students, 10 are men. What fraction of the students in the class arewomen? Which graph correctly represents1/3y - 1/2x > 2A-E in photo WILL GIVE BRAINLIEST Simplify the expression 1 + 4.25n + 3/2p -3 + (-2p) + 5/4n graph a line with a slope of 1/5 that passes through the point (-2,2)