Austin has a report due at school tomorrow, but has not started working on it yet. Now he is worried about getting a bad grade. So he searches the Internet for his topic and finds lots of information. He chooses a small, obscure site, copies text and images, and pastes them into his report. He's done before bedtime. But he receives an F on his report.
1. What could Sam have done differently on his report to avoid failing?
2. Is this incident an example of an unethical action or an illegal action?

Answers

Answer 1

Answer:

Explanation:

Question One

He could have read other sites with other points of view and summarized that. Most importantly he could have used footnotes that gave credit to every idea that he used.

He could have put the material down and begin to write. The words would have come out in his awkward style. He would still need to footnote the ideas. That is most important.

Question Two

It is both. Plagiarism is a serious crime if it involves many people being affected by what he wrote.

But it is totally unethical at any level. Trying to pass off something that isn't yours is totally unethical. It should never be done. It shames the subject which is shown to be unimportant and it shames the instructor (he knew enough to catch the plagiarism), and it shames the person getting caught.


Related Questions

true or false. in a list with 5 items the index of the final item is 4

Answers

Answer: True

Explanation:

We start at 0 for lists

[item, item, item, item, item]

  0         1       2     3        4

true on edge2020/2021

Using words input, output, processor, CPU, memory, RAM, ROM, and storage,
answer the questions:
Copy and paste your answers to avoid misspelling.
1. A computer processor is also called CPU
2. A speaker is a(n)
device.
3. A scanner is an
device.
4. Hard disk is a(n)
device.
5. RAM and ROM are types of
Mmory
6. A computer monitor is a output
I
device.

Answers

here because brainly sucks I hate this website stop censoring litteraly everything, can't get away with calling someone a poopy head on here

Security attacks are classified as either passive or aggressive. True or false

Answers

Answer:

false is the answer okkkkkkkkkkkkkkkk

8. Type the correct answer in the box. Spell all words correctly.
Until when can you register your work with the US Copyright Office in order to claim statutory damages from the court in the event of infringement?
You need to register with the US Copyright Office prior to the infringement,____ or within
months of the publication of the image, to claim statutory damages from the court

Answers

Answer:

To be eligible for an award of statutory damages and attorneys' fees in a copyright infringement case, the copyrighted work must be registered before infringement commences, or, if the work is published, within 3 months of publication.

Answer:

The answer is 3 months.

Explanation:

Programming exercise 3-4a

Answers

Answer:

???????????.?????????????

A mobile base station in an urban environment has a power measurement of 25 µW at 225 m. If the propagation follows an inverse 4th-power law, assuming a distance of 0.9 km from the base station, what would be a reasonable power value, in µW?

Give your answer in scientific notation to 2 decimal places

Answers

Answer:

The answer is below

Explanation:

The inverse fourth power law states that the intensity varies inversely to the fourth power of the distance from the source. That is as the distance increases, the intensity decreases.

Let I represent the intensity and let d represent the distance from the source, hence:

I ∝ 1 / d⁴

I = k / d⁴

Where k is the constant of proportionality.

Given that at a power of 25W = 25*10⁻⁶ W, the distance (d) = 225 m. We can find the value of k.

25*10⁻⁶  = k / 225⁴

k = 225⁴ * 25*10⁻⁶ = 64072.27

Hence:

I = 64072.27 / d⁴

At a distance (d) = 0.9km = 900 m, we can find the corresponding power:

I = 64072.27 / 900⁴

I = 9.77 * 10⁻⁸ W

Every home or organization with Internet access has an ISP.
Question 29 options:
True
False

Answers

true ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎

Type the correct answer in the box. Spell all words correctly.
Kenny is out with his friends. He took some pictures with his phone camera. His phone has limited internal memory and it won’t store a lot of images. He wants to transfer his images to another storage system to free the phone’s internal memory. He doesn’t have any other storage device with him, but he does have a decent Internet connection from his phone. Which storage system should Kenny consider?
Kenny should consider _____.

Answers

Answer:

Kenny should consider cloud storage.

Store the pictures on the Cloud

Drivers are concerned with the mileage obtained by their automobiles. One driver has kept track of several tankfuls of gasoline by recording miles driven and gallons used for each tankful. Develop a sentinel-controlled-repetition script that prompts the user to input the miles driven and gallons used for each tankful. The script should calculate and display the miles per gallon obtained for each tankful. After processing all input information, the script should calculate and display the combined miles per gallon obtained for all tankfuls (that is, total miles driven divided by total gallons used).
Enter the gallons used (-1 to end): 128
Enter the miles driven: 287 The miles/gallon for this tank was 22.421875
Enter the gallons used (-1 to end): 10.3
Enter the miles driven: 200 The miles/gallon for this tank was 19.417475
Enter the gallons used (-1 to end): 5
Enter the miles driven: 120 The miles/gallon for this tank was 24.000000
Enter the gallons used (-1 to end): -1 The overall average miles/gallon was 21. 601423

Answers

Answer:

In Python:

gals= float(input("Enter the gallons used (-1 to end): "))

miles = float(input("Enter the miles driven: "))

mileage = 0.0

count = 0

while not (gals == -1):

   count += 1

   mileage +=(miles/gals)

   print("The miles/gallon for this tank was "+str(round(miles/gals,6)))

   gals= float(input("Enter the gallons used (-1 to end): "))

   miles = float(input("Enter the miles driven: "))

print("The overall average miles/gallon was "+str(round(mileage/count,6)))

Explanation:

#This prompts the user for the number of gallons used

gals= float(input("Enter the gallons used (-1 to end): "))

#This prompts the user for miles driven

miles = float(input("Miles driven: "))

#This initializes the mileage to 0

mileage = 0.0

#This initializes the count of vehicles to 0

count = 0

#The following is repeated until input for gallons is -1

while not (gals == -1):

#The count of vehicles is increased by 1

   count += 1

#The total mileage for all cars is calculated

   mileage +=(miles/gals)

#This prints the mileage for that particular vehicle

   print("The miles/gallon for this tank was "+str(round(miles/gals,6)))

#This prompts the user for the number of gallons used

   gals= float(input("Enter the gallons used (-1 to end): "))

#This prompts the user for miles driven

   miles = float(input("Miles driven: "))

#This calculates and prints the overall average mileage  

print("The overall average miles/gallon was "+str(round(mileage/count,6)))

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.
Write a program that takes a string and integer as input, and outputs a sentence using those items as below. The program repeats until the input string is quit.
Ex: If the input is:
apples 5
shoes 2
quito 0
the output is
Eating 5 apples a day keeps the doctor away.
Eating 2 shoes a day keeps the doctor away.
Note: This is a lab from a previous chapter that now requires the use of a loop. LB 334 1 LAB Mad Lib-loops main.cpp Load default template.
1 #include
2 #include
3 using namespace std;
4
5 int main()
6
7 {
8 return;
9
10

Answers

Answer:

Following are the code to this question:

#include <iostream>//header file

#include <string>//header file

using namespace std;

int main() //main method

{

   string item;//defining a string variable

   int n;//defining integer variable

   while(cin >>n >>item)//defining while loop to input value  

   {

       if(item == "quito" && n == 0)//use if block to check input value  

       {

           break;//use break keyword

       }

       cout << "Eating " << n << " " << item << " a day keeps the doctor away." << endl;//print input value with the message

   }

   return 0;

}

Output:

Please find the attached file.

Explanation:

In this code, inside the main method one string variable and one integer variable "item, n" is defined, that uses the while loop for input the value and uses the if block that checks string value is equal to "quito" and n value is equal to "0" it breaks the loop, and print the value with the message.

Complete the sentence. Use a ___ ___ (2 words) to find a website's URL based on keywords you specify.​

Answers

Answer: Search engine

Explanation:

If you need to find out the URL of a website that can help you with a particular service needed, you can use a search engine such as G-oogle or Duck-duckgo to find the relevant websites. You type in keyword/s and the search engine will look for websites associated with the word/s.

The links to be websites will be displayed and clicking on them will take you to the website.

What would a bar graph best be used for? State why and give 2-3 examples of things you could demonstrate with a bar graph

Answers

Answer:

A bar graph is used to compare facts.

For example:

A group of people's favorite movie.

A group of people's favorite fruit.

Type the correct answer in the box. Spell all words correctly.
Graphic designers can compress files in different formats. One of the formats ensures that the quality and details of the image are not lost when the graphic designer saves the file. Which file format is this?
The _______file format ensures that images don’t lose their quality and details when graphic designers save them.

Answers

Answer: TIFF

Explanation:

Tag Image File Format (TIFF) is the go to file format when one needs to store their image without worrying about it losing its quality and details. This is why TIFF images do not become smaller when compressed because they aim to save the quality of the work.

One has access to options such as tags and transparency on TIFF and it can be used on Photoshop as well as for things like desktop publishing and faxing.

Answer:

The lossless file format ensures that images don’t lose their quality and details when photographers save them.

Explanation:

Consider the following method, inCommon, which takes two Integer ArrayList parameters. The method returns true if the same integer value appears in both lists at least one time, and false otherwise.

public static boolean inCommon(ArrayList a, ArrayList b)
{
for (int i = 0; i < a.size(); i++)
{
for (int j = 0; j < b.size(); j++) // Line 5
{
if (a.get(i).equals(b.get(j)))
{
return true;
}
}
}
return false;
}

Which of the following best explains the impact to the inCommon method when line 5 is replaced by for (int j = b.size() - 1; j > 0; j--) ?

a. The change has no impact on the behavior of the method.
b. After the change, the method will never check the first element in list b.
c. After the change, the method will never check the last element in list b.
d. After the change, the method will never check the first and the last elements in list b.
e. The change will cause the method to throw an IndexOutOfBounds exception.

Answers

Answer:

b. After the change, the method will never check the first element in list b.

Explanation:

After changing the code on line 5 with the one in the question the method will never check the first element in list b. This is because by changing the code you are telling the method to run for every element in list b starting from the last element and moving backward. Since the second argument is j > 0, once j is equal to 0 it will not run the method since it would give a False on the argument and therefore, will never run the method for the element in position 0 (first element in the list)

.............................................is the vertical distance between successive lines of the text​

Answers

Answer:

Line spacing is the vertical distance between successive lines of the text​.

Explanation:

Hope this helps you. :)

You want to make access to files easier for your users. Currently, files are stored on several NTFS volumes such as the C:, D:, and E: drives. You want users to be able to access all files by specifying only the C: drive so they don't have to remember which drive letter to use. For example, if the accounting files are stored on the D: drive, users should be able to access them using C:\accounting. What can you do?

Answers

Answer:

volume mount points

Explanation:

The best thing to do would be to use volume mount points. This is a feature that allows you to mount/target (from a single partition) another folder or storage disk that is connected to the system. This will easily allow the user in this scenario to access the different files located in the D: and E: drive from the C:\ drive itself. Without having to go and find each file in their own separate physical drive on the computer.

Type the correct answer in the box. Spell all words correctly.
John wants to use graphical elements on his web page. Which image formats should he use to keep the file size manageable?
John should use
formats to keep the file size manageable.

Answers

Answer:

JPEG or PNG but mostly JPEG

Explanation:

JPEG – JPEG is the best option for photographs and other images displaying a huge variety of colors. They can also be compressed, sacrificing quality for a reduction in file size.

PNG – PNGs win for graphics, drawings, text, and some screenshots. They also support transparency, unlike JPEGs. This format uses lossless compression, which results in higher quality but also bigger files.

The image formats should he use to keep the file size manageable is JPEG or PNG however commonly JPEG.

What is JPEG format?

JPEG is the high-satisfactory choice for pics and different pix showing a massive sort of colors. They also can be compressed, sacrificing high-satisfactory for a discount in report size.

PNG PNGs win for graphics, drawings, text, and a few screenshots. They additionally help transparency, not like JPEGs. This layout makes use of lossless compression, which leads to better high-satisfactory but additionally larger files.

Read more about the image formats:

https://brainly.com/question/26733261

#SPJ2

Retype each statement to follow the good practice of a single space around operators.

a. tot = num1+num2+2;
b. numBalls=numBalls+1;
c. numEntries = (userVal+1)*2;

Answers

Answer:

a. tot = num1 + num2 + 2;

b. numBalls = numBalls + 1;

c. numEntries = (userVal + 1) * 2;

Explanation:

Given

(a), (b) and (c)

Require:

Rewrite

There isn't much to do or explain; All you need to do is include single space between the operands and opcodes

So:

tot = num1+num2+2;   becomes tot = num1 + num2 + 2;

numBalls=numBalls+1; becomes numBalls = numBalls + 1;

numEntries = (userVal+1)*2; becomes  numEntries = (userVal + 1) * 2;

The difference in both statements is the inclusion of single line spacing.

10. Select the correct answer.
Thomas has signed a deal with a production house that allows them to use his images on their website. What is required that permits the usage of images for commercial or editorial purposes?
A.
copyright
B.
licensing
C.
permit
D.
public domain
E.
fair use

Answers

b) licensing because they are giving Thomas permission to use the images
B is the correct answer .!!!!!

Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string. The output should include the input character and use the plural form, n's, if the number of times the characters appears is not exactly 1.You may assume that the string does not contain spaces and will always contain less than 50 characters.

Ex: If the input is:

n Monday
the output is:

1 n
Ex: If the input is:

z TodayisMonday
the output is:

0 z's
Ex: If the input is:

n It'ssunnytoday
the output is:

2 n's
Case matters.

Ex: If the input is:

n Nobody
the output is:

0 n's
n is different than N.
C programming.

Answers

Answer:

The program and input is different than n, and it’s sunny today.

Is a NAS just a collection of hard drives or a computer

Answers

Answer:

NAS systems are networked appliances that contain one or more storage drives, often arranged into logical, redundant storage containers or RAID.

Question 4 (5 points)
The more RAM you have, the less things your computer can do at the same time.
True
False
ent:​

Answers

The correct answer is False

1. Select two forms of case designed suitable for ATX power supply and
motherboard,
A. Chassis and cabinet
B. Cabinet and tower
C. Desktop and tower
D. Chassis and tower

Answers

The answer should be c

As you will solve more complex problems, you will find that searching for values in arrays becomes a crucial operation. In this part of the lab, you will input an array from the user, along with a value to search for. Your job is to write a C++ program that will look for the value, using the linear (sequential) search algorithm. In addition, you should show how many steps it took to find (or not find) the value, and indicate whether this was a best or worst case scenario (... remember the lecture). You may refer to the pseudo-code in the lecture, but remember that the details of the output and error conditions are not specified there. Also, note that in pseudo-code arrays are sometimes defined with indices 1 to N, whereas in C++ the indexes span from 0 to N-1.
The program will work as follows. First, you should ask the user to enter the size of the array, by outputting:
"Enter the size of the array: "
to the console. If the user enters an incorrect size, you should output the error message:
"ERROR: you entered an incorrect value for the array size!"
and exit the program. If the input is a valid size for the array, ask the user to enter the data, by outputting
"Enter the numbers in the array, separated by a space, and press enter: "
Let the user enter the numbers of the array and store them into a C++ array. Up to now, this should be exactly the same code as Lab#2. Next, ask the user a value v to search for in the array (called the "key"), by outputting:
"Enter a number to search for in the array: " to the screen, and read the key v.
Search for v by using the linear search algorithm. If your program finds the key, you should output:
"Found value v at index i, which took x checks. "
where i is the index of the array where v is found, and x is the number of search operations taken place.
If you doesn't find the key, then output: "
The value v was not found in the array!"
Then indicate whether you happened to run into a best or worst case scenario. In case you did, output: "
We ran into the best case scenario!" or "We ran into the worst case scenario!"
otherwise, don't output anything.

Answers

Answer:

#include<iostream>

using namespace std;

int main() {

cout<<"Enter The Size Of Array: ";

int size;

bool isBestCase=false;

cin>>size;

if(size<=0){

cout<<"Error: You entered an incorrect value of the array size!"<<endl;

return(0);

}

int array[size], key;

cout<<"Enter the numbers in the array, separated by a space, and press enter:";

// Taking Input In Array

for(int j=0;j<size;j++){

cin>>array[j];

}

//Your Entered Array Is

for(int a=0;a<size;a++){

cout<<"array[ "<<a<<" ] = ";

cout<<array[a]<<endl;

}

cout<<"Enter a number to search for in the array:";

cin>>key;

for(i=0;i<size;i++){

 if(key==array[i]){

   if(i==0){

     isBestCase=true; // best case scenario when key found in 1st iteration

     break;

   }

 }

}

if(i != size){

 cout<<"Found value "<<key<<" at index "<<i<<", which took " <<++i<<" checks."<<endl;

}  else{

 cout<<"The value "<<key<<" was not found in array!"<<endl;

 cout<<"We ran into the worst-case scenario!"; // worst-case scenario when key not found

}

if(isBestCase){

cout<<"We ran into the best case scenario!";

}

return 0;

}

Explanation:

The C++ source dynamically generates an array by prompting the user for the size of the array and fills the array with inputs from the user. A search term is used to determine the best and worst-case scenario of the created array and the index and search time is displayed.

Given the waveform below, derive the output waveform (Q) for the respective devices. All outputs start at RESET (Q = 0) state


a) S-R latch assuming A = S and B = R.
b) Gated D latch assuming C = EN and B = D.
c) Negative Edge-triggered D Flip-flop assuming C = CLK and A = D.
d) Positive Edge-triggered J-K Flip-flop assuming C = CLK, A = J, and B = K.

Answers

The answer is b but I’m not sure

Why is sequencing important?

A. It allows the programmer to test the code.
B. It allows the user to understand the code.
C. It ensures the program works correctly.
D. It makes sure the code is easy to understand.

Answers

Answer:

c i think but if not go with d

Answer:

C

Explanation:

It ensures the program works correctly

hope it helps!

Now, it’s time for you to begin coding your text-based adventure game!Starting at the top, convert each line of your pseudocode from your Coding Log into a line of Python code.Make sure to use the correct syntax and indentation. If you decide to challenge yourself and use functions, be sure to include the correct function calls.Your code should include at least two loops—one while loop and one for loop.Run and test your code in parts as you go. Follow the iterative process of coding and revising. It may be helpful to apply this process to each part of your game (Intro, Part 1, Part 2, and Part 3).Make the following improvements to your game:If the user types in a slightly different word than you expect, you don’t want your game to crash! Use lists to gain a better understanding of the input that users give. Refer back to Unit 1 for more information on lists. Here is an example:if choice in [“set a trap”, “set trap”, “trap”, “make a trap”, “make trap”]Your list won’t work if the user capitalizes any letter because the Interpreter won’t recognize a match between the same lowercase and uppercase letter. To convert the user input to all lowercase, use the lower function:if choice.lower() in [“set a trap”, “set trap”, “trap”, “make a trap”, “make trap”]Go through and make sure all of your inputs are converted to lowercase.Share the link to your Python code with your teacher in REPL.it by clicking on the share button and copying the link. Also, submit your pseudocode.

Answers

Answer:

When I finish I will send answer.

Explanation:

The coding exercise tests the ability to code using Python. It is important to note that all the indentation rules must be observed while running this code to prevent Indentation Error.



What is the code for the above exercise?

The code for the above exercise is given as follows:


def start():

# give some prompts.

 print("\nYou are standing in a dark room.")

print("There is a door to your left and right, which one do you take? (l or r)")

# convert the player's input() to lower_case

answer = input(">").lower()

if "l" in answer:

# if player typed "left" or "l" lead him to bear_room()

 bear_room()

elif "r" in answer:

# else if player typed "right" or "r" lead him to monster_room()

 monster_room()

else:

# else call game_over() function with the "reason" argument

 game_over("Don't you know how to type something properly?")

# start the game

start()


Learn more about python at:
https://brainly.com/question/26497128

#SPJ2

Create a Python program that computes the cost of carpeting a room. Your program should prompt the user for the width and length in feet of the room and the quality of carpet to be used. A choice between three grades of carpet should be given. You should decide on the price per square foot of the three grades on carpet. Your program must include a function that accepts the length, width, and carpet quality as parameters and returns the cost of carpeting that room. After calling that function, your program should then output the carpeting cost. of carpeting a room. Note: the output is NOT in the function but in the main. Display your name,class,date as per SubmissionRequirements by using a function.
Your program should include your design steps as your comments. Document the values you chose for the prices per square foot of the three grades of carpet in your comments as well.

Answers

Answer:

In Python:

def calcCost(length,width,quality):

   if quality == 1:

       cost = length * width * 3.50

   if quality == 2:

       cost = length * width * 2.50

   else:

       cost = length * width * 1.50

   

   return cost

   

length = float(input("Room Length: "))

width = float(input("Room Width: "))

print("Quality:\n1 - Best\n2 - Moderate\n3 and others - Worst")

quality = int(input("Quality: "))

print("Calculate: "+str(calcCost(length,width,quality)))

Explanation:

This defines the function calcCost to calculate the carpeting cost

def calcCost(length,width,quality):

If quality is 1, the total cost is calculated by area * 3.50

   if quality == 1:

       cost = length * width * 3.50

If quality is 2, the total cost is calculated by area * 2.50

   if quality == 2:

       cost = length * width * 2.50

For other values of quality, the total cost is calculated by area * 1.50

   else:

       cost = length * width * 1.50

This returns the calculated carpeting cost    

   return cost

   

The main begins here

This prompts the user for the length of the room

length = float(input("Room Length: "))

This prompts the user for the width of the room

width = float(input("Room Width: "))

This gives instruction on how to select quality

print("Quality:\n1 - Best\n2 - Moderate\n3 and others - Worst")

This prompts the user for the quality of the carpet

quality = int(input("Quality: "))

This calls the calcCost method and also printst the calculated carpeting cost

print("Calculate: "+str(calcCost(length,width,quality)))

#include
main()
{
int i, n=10, rem, inc=0;
scanf("%d",&n);
for(i=1; i =3)
inc++;
else;
inc--;
}
printf("Final Value=\n",inc);
}
SOLVE THIS PROGRAM...

Answers

Answer:inpossible !889

Explanation: I npossible !889

Help ASAP please This is a skills lab simulation for college, it’s on Microsoft word is there a keyboard shortcut or something on Ribbon tab to remove widow/orphan control option

Answers

Answer:

down right corner

Explanation:

next to the time

Other Questions
write a intro paragraph about a "African American Entertainer" 1. Megaa smart student A student has synthesized a new compound (compound A, a nonelectrolyte). She uses osmotic pressure to determine the molar mass of compound A. She dissolves 0.50 g of compound A in water and prepares 15 mL of solution. At 25 C the osmotic pressure is 7.38 atm. Calculate the molar mass (g/mole) of compound A. Do not include a unit with your answer. Ithe movie yesterday. The total cost C for a manufacturer during a given time period is a function of the number N of items produced during that period. To determine a formula for the total cost, we need to know the manufacturer's fixed costs (covering things such as plant maintenance and insurance), as well as the cost for each unit produced, which is called the variable cost. To find the total cost, we multiply the variable cost by the number of items produced during that period and then add the fixed costs.a. Use a formula to express the total cost C of this manufacturer in a month as a function of the number of widgets produced in a month. Be sure to state the units you use. b. Express using functional notation the total cost if there are 250 widgets produced in a month, and then calculate that value. Mia is playing a video game she earns 30 points when she completes level 1. Each time she completes a level, she earns twice as many points as the previous level. How many points for Monica earn when she competes level 8? enter your answer in the box. what is [tex]\sqrt{x} -7=\sqrt{x -7[/tex] What are the particles demonstrating in this image?O electromagnetic fieldO magnetic fieldO electromagnetic motorOelectric field Later, someone wants to use the data to find the amount of water at times before the sensor started. What should the sensor have read at the time -7 minutes? Mixture Problem1. How much water should be added to 8 mL of 6% saline solution to reduce the concentration to 4%? Find the total surface area of this cone, leaving your answer in terms of pi why does animal viruses affect only animal but not to the plants? Gina's number is 2 more than Sara's. The sum of their numbers is 68. What are they're numbers? Ralph has experienced financial difficulties as a result of his struggling business. He has been behind on his mortgage payments for the last six months. The mortgage holder, who is a friend of Ralph's, has offered to accept $80,000 in full payment of the $100,000 owed on the mortgage and payable over the next 10 years. The interest rate of the mortgage is 7%, and the market rate is now 8%.Required:What tax issues are raised by the creditor's offer? could you solve it What is _____+______+______=30 Using 1,3,5,7,9,11,13 ,15 what are the numbers Presented below are the ending balances of accounts for the Kansas Instruments Corporation at December 31, 2021. Account Title Debits CreditsCash $29, 000 Accounts receivable 148, 000 Raw materials 33, 000 Notes receivable 109, 000 Interest receivable 12, 000 Interest payable $14,000 Investment in debt securities 41, 000 Land 59, 000 Buildings 1,480, 000 Accumulated depreciationbuildings 629,000Work in process 51,000 Finished goods 98, 000 Equipment 318,000 Accumulated depreciationequipment 139000Patent (net) 129,000 Prepaid rent (for the next two years 69 , 000 Deferred revenue 45,000Accounts payable 189,000Notes payable 490,000Restricted cash (for payment of notes payable) 89,000 Allowance for uncollectible accounts 22,000Sales revenue 980,000Cost of goods sold 459,000 Rent expense 37,000 Additional Information: The notes receivable, along with any accrued interest, are due on November 22, 2022. The notes payable are due in 2025. Interest is payable annually. The investment in debt securities consist of treasury bills, all of which mature next year. Deferred revenue will be recognized as revenue equally over the next two years. Required: Determine the company's working capital (current assets minus current liabilities) at December 31, 2021. Which of the following was an effect of the Haitian Revolution?A) Haiti became a wealthy independent nationB) The plantation owners willingly sold their lands to freed slavesC) It doubled its production of sugar and cottonD) It inspired other slave revolts 4. Why does semen contain fructose?A. Fructose breaks down to provide energy for the penis.B. Fructose travels with the sperm to feed the egg before it is fertilized.C. Fructose feeds sperm, enabling them to survive long enough to fertilize an egg.D. Fructose provides energy for the development of the fertilized egg.Ill give brainiest:) Burglars broke into an electronics store and left with 30 global navigation systems with a total retail value of $6,750 and 3 paper shredders with a total retail value of $255. What is the average retail value of each navigation system In the us Democrats and Republicans and republicans belong to the two major political I think its parties.And I will mark brain!!!!!!!!!!cultures members powers parties