What symbol next to the records indicates that a table includes a subdatasheet? an asterisk a plus sign a question mark an exclamation point

Answers

Answer 1

Answer:

A plus sign

Explanation:

EDGE 2021

Answer 2

Answer: or in other words B

Explanation: on edg hop this helps


Related Questions

Which of the following is not the disadvantage of closed
network model?
Select one:
O Flexibility
O Public network connection
O Support
O External access​

Answers

Answer:

public network connection

Answer:

public network connection

a) Why is eavesdropping done in a network?
b) Solve the following using checksum and check the data at the
receiver:
01001101
00101000​

Answers

Answer:

An eavesdropping attack is the theft of information from a smartphone or other device while the user is sending or receiving data over a network.

Missing: checksum ‎01001101 ‎00101000

You want a cable that could be used as a bus segment for your office network. The cable should also be able to support up to 100 devices. Which cable should you use?

A.
RG-6
B.
RG-8
C.
RG-58U
D.
RG-59

Answers

Answer: C

Explanation:

who would benefit from using self-driving cars

Answers

Answer:

self independent

no need to depend on others

Answer:

Door dash employee's/Uber eat employees

would benefit from this

what does this mean on a tamagotchi lol (this is the hello kitty one)

Answers

I not sure but I think it’s an apple.

I don't have that tamagotchi

But I do have 2 tamagotchi's

I think it's a cherry on your tamagotchi

Hoped this helped!

Have a wonderful day-

There used to be a popular type of pulp book for younger readers. They were called "Choose Your Own Adventure" novels. The idea was pretty simple. You'd start reading and then a few pages into the book, there would be a plot development that required a choice. The book might describe that you've entered a spooky house and the door has locked behind you. It would then ask you if you want to try to exit by going through the kitchen or exploring upstairs. If you chose to go into the kitchen, you'd turn to page 200, if you chose to go upstairs, you'd turn to page 43. This would repeat maybe five or six times though the book. You could re-read it a few times and try different outcomes.
In this lab you are going to create a choose your own adventure application using navigation controllers. The introduction screen to your application will contain a few lines of text to set up a story and then leave the user with a choice. Below the text, you will present two buttons that correspond to the different choices.
For example, you might see the following text on the main screen:
You are walking down the street when a tiger runs up and takes your lunch and then runs away...
Do you want to chase the tiger or run away?
Chase
Run Away
The user must then tap one of the buttons. This will move the user to a new screen with a few more lines of the story and another choice and two more buttons. You will create three (3) turning points in your story. This means that your story will have eight (8) different possible outcomes and a total of 15 screens.
Requirements
The story must ask three (3) questions, no matter how the user answers the previous question. All the questions must be different and result in a different story text.
The story must have eight (8) possible different final outcomes.
The story must include a minimum of 15 screens in total.
Create content that is appropriate and not-offensive. We will share these and play them together.
For extra credit you can add an extra screen and use inputs to capture data from the user such as a name, favorite food, or lucky number and use this data in the story.

Answers

Answer:

click on the link

Explanation:

link is somewhere hidden

write the C program
The function turn_to_letter decides on the letter grade of the student according to the table below from the visa and final grades sent into it and returns it, write it together with a main function which the turn_to_letter function is called and prints the letter equivalent on the screen. -Success score = 40% of midterm + 60% of final,
-F for the success score below 50, D for between 50 and 59, C for between 60 and 69, B for between 70 and 79, A for 80 and above.

Answers

Answer:

The program in C is as follows:

#include <stdio.h>

char turn_to_letter(double score){

   char lettergrade = 'A';

   if(score>=80){        lettergrade = 'A';    }

   else if(score>=70){        lettergrade = 'B';    }

   else if(score>=60){        lettergrade = 'C';    }

   else if(score>=50){        lettergrade = 'D';    }

   else{lettergrade = 'F';}

   return lettergrade;

}

int main(){

   int midterm, final;

   double score;

   printf("Midterm: ");    scanf("%d", &midterm);

   printf("Final: ");    scanf("%d", &final);  

   score = 0.4 * midterm + 0.6 * final;

   printf("Score: %lf\n", score);

   printf("Letter Grade: %c",turn_to_letter(score));

   return 0;

}

Explanation:

The function begins here

char turn_to_letter(double score){

This initializes lettergrade to A

   char lettergrade = 'A';

For scores above or equal to 80, grade is A

   if(score>=80){        lettergrade = 'A';    }

For scores above or equal to 70, grade is B

   else if(score>=70){        lettergrade = 'B';    }

For scores above or equal to 60, grade is C

   else if(score>=60){        lettergrade = 'C';    }

For scores above or equal to 50, grade is D

   else if(score>=50){        lettergrade = 'D';    }

Grade is F for other scores

   else{lettergrade = 'F';}

This returns the letter grade

   return lettergrade;

}

The main begins here

int main(){

This declares the midterm and final scores as integer

   int midterm, final;

This declares the total score as double

   double score;

These get input for midterm score

   printf("Midterm: ");    scanf("%d", &midterm);

These get input for final score

   printf("Final: ");    scanf("%d", &final);  

This calculates the total score

   score = 0.4 * midterm + 0.6 * final;

This prints the calculated total score

   printf("Score: %lf\n", score);

This calls the turn_to_letter function and prints the returned letter grade

   printf("Letter Grade: %c",turn_to_letter(score));

   return 0;

}

Factory Design Pattern Assignment This assignment will give you practice in using the Factory/Abstract Factory Design Pattern. You are going to create a Terraforming program. What does terraform mean

Answers

Answer:

Terraform is an open-source infrastructure as code software tool that enables you to safely and predictably create, change, and improve infrastructure.

You have been given an encrypted copy of the Final exam study guide here, but how do you decrypt and read it???

Along with the encrypted copy, some mysterious person has also given you the following documents:

helloworld.txt -- Maybe this file decrypts to say "Hello world!". Hmmm.

hints.txt -- Seems important.

In a file called pa11.py write a method called decode(inputfile,outputfile). Decode should take two parameters - both of which are strings. The first should be the name of an encoded file (either helloworld.txt or superdupertopsecretstudyguide.txt or yet another file that I might use to test your code). The second should be the name of a file that you will use as an output file. For example:

decode("superDuperTopSecretStudyGuide.txt" , "translatedguide.txt")

Your method should read in the contents of the inputfile and, using the scheme described in the hints.txt file above, decode the hidden message, writing to the outputfile as it goes (or all at once when it is done depending on what you decide to use).

Hint: The penny math lecture is here.

Another hint: Don't forget about while loops...

Answers

Answer:

                                               

Explanation:

               

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

a) product = numA * numB
b) product = numA.multiply(numB)
c) product = numA.mul(numB

Answers

For multiplication one: product = numA * numB

For the addition: result = numA + numB

got 100 on this ez

(searched all over internet and no one had the answer lul hope this helps!)

Answer: First option: product = numA * numB

second option-numA + numB

Explanation:

Python program
You are given the following text file called Mytext.txt. Write a Python function called search_file that accepts the name of the file (i.e. filename) and a string to look for in the file (i.e. mystring) as parameters. The function then looks for mystring in the file. Whenever it finds the string in a line, it saves the line number and the text for that line in a dictionary. Finally, it returns the dictionary after reading all the lines in the file and populating the dictionary with all matching line numbers and line text. If an empty string or a blank string is passed as mystring then an empty dictionary is returned.
Sample Input: search_file("Mytext.txt","python")
Sample Input: search_file("Mytext.txt","")
Contents of Mytext.txt
Python is an interpreted, high-level, programming language.
Python is dynamically typed and garbage-collected.
Python was conceived in the late 1980s.
Python 2.0, was released in 2000.
Python 3.0, was released in 2008.
The interpreters are available for many operating systems.

Answers

Answer:

The function in Python is as follows:

def search_file(filename,mystring):

my_dict = {}

count = 0

file = open(filename)

lines = file.readlines()

for line in lines:

 count+=1

 if mystring.lower() in line.lower():

  my_dict[count] = line.rstrip('\n')

return my_dict

Explanation:

This defines the function

def search_file(filename,mystring):

This initializes an empty dictionary

my_dict = {}

This initializes the number of lines to 0

count = 0

This opens the file

file = open(filename)

This reads the lines of the file

lines = file.readlines()

This iterates through the lines

for line in lines:

This increments the number line

 count+=1

This checks if the string exists in the line

 if mystring.lower() in line.lower():

If yes, the line number and the string are added to the dictionary

  my_dict[count] = line.rstrip('\n')

This returns the dictionary

return my_dict

This program exercise #4 wants the user to write a program in python that contains a list of movies titles, years and movie rating. You will need to display a menu option that allows the user to list all of the movies, add a movie, delete a movie and exit out of the program. This will be done using lists and the functions to add an element to a list and how to delete an element to a list. The program should be written utilizing functions in python for the main function, the display_menu function, the delete function, the add function and the list movie function. You can place this all in one python file or include them in various python files that include them into the main program. Let me know if you have any questions with this exercise. Output Screen: COMMAND MENU list - List all movies add - Add a movie del - Delete a movie exit - Exit program Command List: list 1. Monty Python and the Holy Grail, 1979, R 2. On the Waterfront, 1954, PG 3. Cat on a Hot Tim Roof, 1958, R Command: add Name: Gone with the Wind Year: 1939 Rating: PG Gone with the Wind was added.

Answers

Answer:

The program in Python is as follows:

def display_menu(titles,years,ratings):

   for i in range(len(titles)):

       print(str(i+1)+". "+titles[i]+", "+str(years[i])+", "+str(ratings[i]))

   

def delete(titles,years,ratings):

   del_item = input("Movie: ")

   if del_item in titles:

       print(del_item,"was deleted")

       index = titles.index(del_item)

       titles.pop(index)

       years.pop(index)

       ratings.pop(index)

   return(titles,years,ratings)

   

def add(titles,years,ratings):

   title = input("Title: ")

   year = int(input("Year: "))

   rating = int(input("Ratings: "))

   print(title,"was added")

   titles.append(title)

   years.append(year)

   ratings.append(rating)

   

   return(titles,years,ratings)

titles = []

years = []

ratings = []

print("COMMAND MENU list\nlist - List movies\nadd - Add movie del\ndel - Delete movie exit\nexit - Exit program")

menu = (input("Command List: "))

while(menu.lower() == "list" or menu.lower() == "add" or menu.lower() == "del"):

   if menu.lower() == "list":

       display_menu(titles,years,ratings)

   elif menu.lower() == "add":

       titles, years, ratings = add(titles,years,ratings)

   elif menu.lower() == "del":

       titles, years, ratings = delete(titles,years,ratings)

   menu = (input("Command List: "))

   elif menu.lower() == "exit":

       break

print("Exited!!!")

Explanation:

See attachment for complete program where comments are used to explain some lines of the program

is used for finding out about objects, properties and methods​

Answers

Answer:

science

Explanation:

A line beginning with a # will be transmitted to the programmer’s social media feed.

A.
True

B.
False

Answers

Answer:

True?

Explanation:

Answer:

The answer is false.

Explanation:

A “#” doesn’t do that in Python.

3.4 code practice question 2 edhesive

Answers

???????????????????
Is there more to this question??

What is the hamming distance between the following bits? Sent
bits: 101100111, Received bits: 100111001
Select one: 5. Or 3 or 6 or4​

Answers

I think

the hamming distance between the following bits its 5

17. What are the basic modes of operation of 8255?Write the features of mode 0 in 8255?

Answers

Answer:

There are two basic operational modes of 8255:

Bit Set/Reset mode (BSR mode).

Input/Output mode (I/O mode).

Features of 8255 Microprocessor:

Mode 0 : Simple Input/Output.

Mode 1 : Input/Output with handshake.

Mode 2 : Bi-directional I/O data transfer.

It has three 8-bit ports : Port A, Port B, and Port C, which are arranged in two groups of 12 pins.

The 8255 can operate in 3 I/O modes : (i) Mode 0, (ii) Mode 1, & (iii) Mode 2.

what connect webpages?​

Answers

Anchor tags or hyperlinks are used to connect webpages.

Answer:

"Hypertext links are those words that take you from one web page to another when you click them with your mouse. Although the same HTML tag you study in this hour is also used to make graphical images into clickable links, graphical links aren't explicitly discussed here" I got this from https://www.informit.com/articles/article.aspx?p=440289 sorry I couldnt take the time myself here to help :(

Explanation:

Write a MIPS assembly language program that prompts for a user to enter a series of floating point numbers and calls read_float to read in numbers and store them in an array only if the same number is not stored in the array yet. Then the program should display the array content on the console window.
Consult the green sheet and the chapter 3 for assembly instructions for floating point numbers. Here is one instruction that you might use:
c.eq.s $f2, $f4
bc1t Label1
Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be:
c.eq.s $f2, $f4
bc1f Label1
To load a single precision floating point number (instead of lw for an integer), you might use:
l.s $f12, 0($t0)
To store a single precision floating point number (instead of sw for an integer), you might use:
s.s $f12, 0($t0)
To assign a constant floating point number (instead of li for an integer), you might use:
li.s $f12, 123.45
To copy a floating point number from one register to another (instead of move for an integer), you might use:
mov.s $f10, $f12
The following shows the syscall numbers needed for this assignment.
System Call System Call System Call
Number Operation Description
2 print_float $v0 = 2, $f12 = float number to be printed
4 print_string $v0 = 4, $a0 = address of beginning of ASCIIZ string
6 read_float $v0 = 6; user types a float number at keyboard; value is store in $f0
8 read_string $v0 = 8; user types string at keybd; addr of beginning of string is store in $a0; len in $a1
------------------------------------------
C program will ask a user to enter numbers and store them in an array
only if the same number is not in the array yet.
Then it prints out the result array content.
You need to write MIPS assembly code based on the following C code.
-------------------------------------------
void main( )
{
int arraysize = 10;
float array[arraysize];
int i, j, alreadyStored;
float num;
i = 0;
while (i < arraysize)
{
printf("Enter a number:\n");
//read an integer from a user input and store it in num1
scanf("%f", &num);
//check if the number is already stored in the array
alreadyStored = 0;
for (j = 0; j < i; j++)
{
if (array[j] == num)
{
alreadyStored = 1;
}
}
//Only if the same number is not in the array yet
if (alreadyStored == 0)
{
array[i] = num;
i++;
}
}
printf("The array contains the following:\n");
i = 0;
while (i < arraysize)
{
printf("%f\n", array[i]);
i++;
}
return;
}
Here are sample outputs (user input is in bold): -- note that you might get some rounding errors
Enter a number:
3
Enter a number:
54.4
Enter a number:
2
Enter a number:
5
Enter a number:
2
Enter a number:
-4
Enter a number:
5
Enter a number:
76
Enter a number:
-23
Enter a number:
43.53
Enter a number:
-43.53
Enter a number:
43.53
Enter a number:
65.43
The array contains the following:
3.00000000
54.40000153
2.00000000
5.00000000
-4.00000000
76.00000000
-23.00000000
43.52999878
-43.52999878
65.43000031

Answers

Explanation:

Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be

what is the best plugin for subscription sites?

Answers

Answer:

Explanation:

MemberPress. MemberPress is a popular & well-supported membership plugin. ...

Restrict Content Pro. ...

Paid Memberships Pro. ...

Paid Member Subscriptions. ...

MemberMouse. ...

iThemes Exchange Membership Add-on. ...

Magic Members. ...

s2Member.

explain three main steps in mail merging (6 marks) ​

Answers

Answer:

Explanation:

The mail merging process generally requires the following steps:

Creating a Main Document and the Template.

Creating a Data Source.

Defining the Merge Fields in the main document.

Merging the Data with the main document.

Saving/Exporting.

which shortcut can we use to make directional heading of a cuboid more obvious while in the lidar view​

Answers

Answer:

cutting across

Explanation:

Code.org lesson 8 level 5

Answers

Answer:

and?

Explanation:

list the main industries in Sierra Leone​

Answers

Answer:

The main industries in Sierra Leone are: Diamond mining

Petroleum refining

Small - scale manufacturing (beverage, textiles,footwear)

Explanation:

They also engage in commercial ship repair

What’s unique about windows 8 compared to earlier windows

Answers

New Interface, features like start screen, faster boot time, dynamic desktop, improved search function, windows love syncing, windows to go, and improved security.

Which of the following best explains how an analog audio signal is typically represented by a computer?
a. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.
b. An analog audio signal is measured as a sequence of operations that describe how the sound can be reproduced. The operations are represented at the lowest level as programming instructions.
c. An analog audio signal is measured as input parameters to a program or procedure. The inputs are represented at the lowest level as a collection of variables.
d. An analog audio signal is measured as text that describes the attributes of the sound. The text is represented at the lowest level as a string.

Answers

Answer:

A. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.

Explanation:

I took the test

-1
Draw a flowchart to input two
numbers in variables M and N and
print the multiplication table from 1*1
to M*N​

Answers

Answer:A flowchart is a diagram that depicts the steps involved in solving a problem. The following flowchart shows how to output the multiplication table ( n * 1 to m * 1) of a number, n and m:

Which tab should you click if you want to access the Show All Comments option in a worksheet?

Home
Page Layout
Review
View

Answers

Answer: Review

Because you want to review the comments

Answer:

C.) Reivew

Explanation:

Doing it on EDG now!

Best luck to yall :3

Have a good day and byee

Page Setup options are important for printing a PowerPoint presentation a certain way. The button for the Page Setup dialog box is found in the
File tab.
Home tab.
Design tab.
Slide Show tab.

Answers

Answer: Design tab

Explanation:

The page setup simply refers to the parameters which are defined by a particular user which is vital in knowing how a printed page will appear. It allows user to customize the page layout. The parameters include size, page orientation, quality of print,margin etc.

It should be noted that page setup options are vital for printing a PowerPoint presentation in a certain way and the button for the Page Setup dialog box can be found in the design tab.

Which work habits should you follow to increase work efficiency and avoid health issues?

Answers

Answer:

Just get good sleep, eat breakfast, and exercise.

Answer:

take periodic breaks and alternate between tasks

Other Questions
we struggling at the moment Imani is researching the impact of standardized testing on student motivation and engagement. She finds this article calling for the end of testing requirements. She is worried about bias. Which two phrases in the excerpt highlight the authors bias? Match these items. 1. Priestly ministry countenance 2. kingship white hair 3. Purity and eternal age flaming eyes 4. Omniscience garments 5. Judgment golden girdle 6. His Word two-edged sword 7. Deity brazen feet One way to measure ionization energies is ultraviolet photoelectron spectroscopy (UPS, or just PES), a technique based on the photoelectric effect. In PES, monochromatic light is directed onto a sample, causing electrons to be emitted. The kinetic energy of the emitted electrons is measured. The difference between the energy of the photons and the kinetic energy of the electrons corresponds to the energy needed to remove the electrons (that is, the ionization energy). Suppose that a PES experiment is performed in which mercury vapor is irradiated with ultraviolet light of wavelength 58.4 nm.(a) What is the energy of a photon of this light in eV?(b) Write an equation that shows the process corresponding to the first ionization energy of Hg.(c) The kinetic energy of the emitted electrons is measured to be 10.75 eV. What is the first ionization energy of Hg in kJ/mol? What is the solution to x^ 3 + 4x^ 2 > x + 4? 4 < x < 1 4 < x < 1 4 < x < 1 or x > 1 x < 4 or 1 < x < 1 Help me pls Spanish 3 PLEASEEE HELP I WILL GIVE U BRAIN THING IF ITS CORRECT What is a correct way to write the statement, "All dogs are mammals" in conditional form?All mammals are dogs.If an animal is a mammal, then it is a dog,All mammals are not dogs.If an animal is a dog, then it is a mammal. which statement is not part of cell theory ? Select the correct answer which of the following is not necessary for the germination of seedsA. waterB. AirC. warmthD.Light Is a hydrogel a smart polymer/stimuli-responsive polmer? I will give brainliest to the 1st person to tell me the name of this song.Algo me mata de ti, yo no sLo hacemo' to'a la noche, t ere' ma, beb (baby, yeah-eh)Vamo' a hacerlo otra ve' (otra ve')O en el bote o en el jet (oh, oh)T vive' en mi mente 'esde aquella ve' (oh, oh) (woh)Esa noche en RDQue te com de la cabeza hasta lo' pie' (hasta lo' pie', eh-eh)De ese cuerpito, baby, no me olvidVamo' a hacerlo otra ve' (otra ve')En Punta Cana o en Higey (eh-eh)T ere' m' ma que tuya, eso e' por leyQu t ve' cuando me ve'? (oh, oh)Cuando a la uni' te eduqu (oh, oh)Entre el humo, la' gana' y la .10 (la .10, ma', eh)T tiene' un piquete cabrnY lo m' cabrn que t ha' teno' soy yo (soy yo)Tu ex se guayT ere' el infierno, la cama e' el cielo y yo soy tu Dio' (yo soy tu Dio')Olvdate de lo que digan de mVamo' a hacerlo otra ve' y le hacemo' un remix (remix)Lo' Phillie pateando como Khabib (Khabib)Tu cuerpo me mata, beb, hazme un RIP (hazme un RIP)Yo soy tu noche y t ere' mi luna (mi luna)Mi Taina y yo tu Ozuna (oh)Yo te llevo pa' Colombia y visitamo' to'a la' comuna' (brr)A vece' t me est' llamando (llamando)Y con lo' demonio' es que yo ando (yo ando)Pero eso' demonio' que me atormentanCuando estoy contigo yo lo' guardo (Ah?)No te import que yo soy millo, siempre me bota' lo' cigarrillo' (ey)Porque t no quiere' que el cncer me robe la vida como un pillo (aj)Tengo eso' recuerdo' guardao'En la puerta de mi corazn con un pestillo (brr)T ere' mi reina y mi apartment de siete millone'Siempre va a ser tu castillo (Ah? Brr)Vamo' a hacerlo otra ve' (otra ve')En el bote o en el jet (en el jet)T vive' en mi mente 'esde aquella ve' (aquella ve')Esa noche en RD (en RD)Que te com de la cabeza hasta lo' pie' (oh-oh-oh)De ese cuerpito, baby, no me olvid (no) (eh)Vamo' a hacerlo otra ve' (otra ve')En Punta Cana o en Higey (eh-eh)T ere' m' ma que tuya, eso e' por ley (eso e' por ley)Qu t ve' cuando me ve'?Cuando a la uni' te busqu (oh)Entre el humo, la' gana' y la .10 (oh-oh, yeah-eh)Yo s que te muere' de gana', pero no me quiere' decir (no quiere' decir)Me ve' y solo te recuerda' cuando yo te haca venirBaby (baby), te compr sei' cartera' y un Richard MilleElla janguea en Miami, pero vive en lo' HillsElla e' mi shorty (ella e' mi shorty)Tapa mi cara en su story (story, story)Lo hacemo' en donde seaPa' entrar me pasa la forty, yeah-eh (yeah-eh)Dura como Crmen Villalobo'Pa' mi cama me la roboBaby, empieza en lo que enrolo, yeah-eh (yeah-eh)Vamo' a hacerlo otra ve' (otra ve')O en el bote o en el jet (en el jet)T vive' en mi mente 'esde aquella ve' (aquella ve')Esa noche en RD (RD, eh)Que te com de la cabeza hasta lo' pie' (woh-oh)De ese cuerpito, baby, no me olvid (no) (eh)Vamo' a hacerlo otra ve' (otra ve')En Punta Cana o en Higey (eh-eh)T ere' m' ma que tuya, eso e' por ley (eso e' por ley)Qu t ve' cuando me ve'? (eh)Cuando a la uni' te busqu (oh)Entre el humo, la' gana' y la .10 (oh-oh, yeah-eh)El Negrito Ojo' Claro', yeah (algo me mata de ti, yo no s)OzunaLos Diose', Los Diose' (lo hacemo' to'a la noche, t ere' ma, beb)Doble AO-O-Ovy On The DrumsOzuna, Ozuna, Ozuna, jaEQ "El Equalizer", ja Calcula y comprueba las ecuaciones: plisss lo necesito alguien me puede ayudar a) 2X = 6 b) 10 + Z = 20 c) P + 9 = 11 d) 3X + 8 = + 29 e) 2U + 8 = 10 Which of the following processes causessinkholes to form?A. erosion of sediment by runoffB. deposition of sediment by a riverC. deposition of calcite by groundwaterD. erosion of limestone by groundwater 7. Complte la phrase avec le pronom relatif adquat : Cest un travail ____ je veux! *5 pointsquiquedontquel8. Complte la phrase avec le pronom relatif adquat : Cest un film____ est trs romantique! *5 pointsquiquedontquelle9. Parmi les verbes suivants, lequel nest PAS au subjonctif? *5 pointsTu soisNous parlonsVous mangiezIls puissent10. Quelle est la bonne forme du subjonctif de venir ? *5 pointsJe vienneJe venaisJe viendraisJe vins Crane Company began operations in 2020 and determined its ending inventory at cost and at LCNRV at December 31, 2020, and December 31, 2021. This information is presented below. Cost Net Realizable Value 12/31/20 $354,700 $331,550 12/31/21 413,510 394,540 (a) Prepare the journal entries required at December 31, 2020, and December 31, 2021, assuming inventory is recorded at LCNRV and a perpetual inventory system using the cost-of-goods-sold method. PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!! PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!! PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!! PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!!PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!! PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!!!! PLSSS HELPPPP I WILLL GIVE YOU BRAINLIEST!!!! Which class of Lever is being described if you are standing on tiptoes and if: The Fulcrum is at the metatarsal and phalanges, which is at one end of this lever on the anterior side of the body. The Load is your body weight which is in the middle of this lever. The Effort is exerted by the gastrocnemius and soleus muscles at the calcaneal (Achilles') tendon on the other side of this lever on the posterior side of the body. Algebra 2 functions. Will mark Brainliest!