Can anyone help with this graded assignment for computer fundamentals

Can Anyone Help With This Graded Assignment For Computer Fundamentals

Answers

Answer 1

Answer:

Try finding the answer on brainless

Explanation:

That’s all I can do sorry


Related Questions

On your Windows server, you’re planning to install a new database application that uses an enormous amount of disk space. You need this application to be highly available, so you need a disk system with the capability to auto-correct from disk errors and data corruption. You also want a flexible storage solution that makes it easy to add space and supports deduplication. Describe your best option.
1. MBR disk with chkdsk
2. NTFS format with EFS
3. ReFS format and storage spaces
4. GPT disc with shadow copies

Answers

Answer:

3. ReFS

Explanation:

Only in ReFS include  and others do not have all of the below features

1. Automatic integrity checking and data scrubbing

2. Removal of the need for running chkdsk  

3. Protection against data degradation

4. Built-in handling of hard disk drive failure and redundancy

5.  Integration of RAID functionality

6.  A switch to copy/allocate on write for data and metadata updates

7. Handling of very long paths and filenames

8. Storage virtualization and pooling

What factors represents one of the sources of value derived from network effects?

Answers

Answer:

The answer is "Staying power"

Explanation:

It is energy or dedication to keep working till the end of what you can do. It is doubtful someone who lacks lasting power and persistence could make an excellent investigator.

Systems with a larger number of people imply a greater lasting power To lengthy-term profitability of a service or product.  To consumers with software items, its longevity, or lengthy-term viability of the good or service is particularly important, and other choices were wrong because it can't be determined in the question.  

For the following C code, variables a, b, c, and n correspond to the registers $s0, $s1, $s2 and $a0 respectively and i corresponds to $t0. The callee doesn’t have to preserve registers $t1-$t9, if used. int iterFib(int n) { int a = 0, b = 1, c, i; for(i=2; i<=n; i++) { c = a + b; a = b; b = c; } return b; } What are the missing MIPS instructions? Please record only the letter in lower case. iterFib: addi $sp, $sp, -12 sw $s0, 8($sp) sw $s1, 4($sp) ---Instruction 1--- add $s0, $zero, $zero addi $s1, $zero, 1 add $t0, $zero, $zero addi $t1, $a0, 1 forFib: slt $t2, $t0, $t1 ---Instruction 2--- add $s2, $s1, $s2 add $s0, $zero, $s1 add $s1, $zero, $s2 addi $t0, $t0, 1 j forFib exitFib: add $v0, $zero, $s1 jr $ra Instruction 1 is a. No instruction b. addi $sp, $sp, 4 c. add $sp, $sp, -4 d. lw $s2, 0($sp) e. sw $s2, 0($sp) f. bne $t2, $zero, exitFib g. beq $t2, $zero, exitFib h. None of the above Instruction 2 is a. j iterFib b. addi $sp, $sp, 4 c. add $sp, $sp, -4 d. lw $s0, 0($sp) e. addi $sp, $sp, -4 f. bne $t2, $zero, exitFib g. beq $t2, $zero, exitFib h. None of the above

Answers

Answer:

a)

Instruction 1 will be: sw $s2,0($s0)

Answer is option e.

b)

Instruction 2 will be: beq $t2,$zero,exitFib

Answer is option g.

Explanation:

At the point of instruction 1, It should store the content of s2 into the stack.

At the point of instruction 2, It will check if the value of t2 is one or not. If it is zero it should exit.

What will be displayed after the following code executes? (Note: the order of the display of entries in a dictionary are not in a specific order.) cities = {'GA' : 'Atlanta', 'NY' : 'Albany', 'CA' : 'San Diego'} if 'FL' in cities: del cities['FL'] cities['FL'] = 'Tallahassee' print(cities)

Answers

Answer:

Nothing will be printed

Explanation:

You can easily find out that FL is not a member of the Dictionary. And we are checking these in the if. Since the if condition ends up being false, the further process will not run as they will only if the condition ends up being true. Hence, nothing will be printed.

Remember, del is used to delete a dictionary item. If this would have been a true condition for if then the FL item in the dictionary would have been deleted as it, in that case, would have been present there. And then the next line would have again added the FL item, and print would have printed the dictionary items with FL item as well. However, since if the condition is ending up being false, nothing will be printed.

If cities['FL'] and print is outside if then

the output will be

{'FL': 'Tallahassee', 'GA': 'Atlanta', 'NY': 'Albany', 'CA': 'San Diego'}

Final answer:

The Python code checks for the 'FL' key in the cities dictionary, does not find it, and thus the dictionary remains unchanged when printed.

Explanation:

The question relates to the execution of a Python code snippet involving a dictionary named cities. Upon running the provided code, the following will be displayed: { 'GA' : 'Atlanta', 'NY' : 'Albany', 'CA' : 'San Diego' }. The code first checks if 'FL' is a key in the cities dictionary, which it is not. Therefore, the deletion operation is not performed and the subsequent assignment of 'FL' to 'Tallahassee' is also not executed. As a result, the initial contents of the dictionary remain unchanged before it is printed.

Students in a 6th grade science class are completing a project about an invention for which they must print a 3-D prototype on the 3-D printer. After giving them instruction about the 3-D printer software, some of the students are still struggling with how to use the software to create the prototype they envision.
What is the best way to help the students complete the assignment?

Answers

Answer:

Providing them with a template and simple instructions for how to design and print their prototype.

Explanation:

3D printing or additive manufacturing is a process of making three dimensional solid objects from a digital file.

The creation of a 3D printed object is achieved using additive processes. In an additive process an object is created by laying down successive layers of material until the object is created. Each of these layers can be seen as a thinly sliced horizontal cross-section of the eventual object.

3D printing is the opposite of subtractive manufacturing which is cutting out / hollowing out a piece of metal or plastic with for instance a milling machine.

3D printing enables you to produce complex shapes using less material than traditional manufacturing methods.

By providing them with the information for how to design the 3D printer and how to print heir prototype in a template is best way to help the students.

It will need some prior research about 3D Printer.

What function does the ALU perform?
A.
storing startup instructions
B.
directing the flow of instructions
C. storing data the CPU needs at the moment
D. making calculations and evaluating conditions

Answers

Answer:

D

Explanation:

ALU performs calculations.

Elsa has collated information for a meeting using Excel. Due to certain developments, some of the data in her worksheet is now redundant. She deletes three rows from her worksheet to reflect the developments. Which of the following will happen to the rest of the rows in the worksheet when Elsa deletes three rows?

A. ​There will be an empty space where the deleted rows were.B. ​The data from the rows will be shifted to rows at the bottom of the worksheet.C. ​The data from the rows will be shifted to the rows at the beginning of the worksheet.D. ​The remaining rows will shift up to take the place of the rows that were deleted.

Answers

Answer: Option(d) is the correct option

Explanation:

Excel sheets are the spreadsheets which consists of rows and columns for arrangement and display of values.It is used for mathematical function and computation .

According to the question, as Elsa is performing deletion of three rows is done for development, other rows will tend to shift upwards and settle in the deleted row spaces accordingly as per arrangement.

Other options are incorrect because deleted rows will not be indicated through empty spaces,row data won't shift to bottom of sheet and neither shift of data will take place at the starting of sheet.Thus the correct option is option(d).

Write a program that contains a main function and a custom, void function named show_larger that takes two random integers as parameters. This function should display which integer is larger and by how much. The difference must be expressed as a positive number if the random integers differ. If the random integers are the same, show_larger should handle that, too. See example outputs. In the main function, generate two random integers both in the range from 1 to 5 inclusive, and call show_larger with the integers as arguments.

Answers

A program that contains a main function and a custom, void function named show_larger that takes two random integers as parameters.

Explanation:

The difference must be expressed as a positive number if the random integers differ. If the random integers are the same, show_larger should handle that, too. See example outputs.

def main():

value_1=random.randrange(1,6)

value_2=random.rangrange(1,6)

def show_larger():    

difference= value_1=-value_2

if value_1 == value_2:

   print('The integers are equal, both are' + str(value_1))




Clarisse is setting the white spaces at the edge of her Word document to be 1 inch. She is setting the _____.









borders











gridlines











columns











margins

Answers

I'd say Margin.

I dunno about you but It's Margin if I am wrong copy your question and paste it into the URL page, and comb thru the links to see if they helped!

A server is expected to process 2,000 transactions per second during its initial year of deployment. If it is expected to increase transaction growth by 10% annually, how many transactions per second should the server be able to process by the end of its fifth year?

Answers

Answer:

This is like a compound interest problem,

Here, p=2000

          r=10%

          t=5

 Transaction after 5 years= 2000(1+10/100)^5= 3221.02 per second

Explanation:

This is as explained above a compound interest type of question. And the number of transaction per second after 5 years is equal to 3221. Remember, you need to understand the difference between compound interest and simple interest. In first one, we have new p after each year. However, in Simple interest, the p remains the same as the first one.

I am wasting 20 points

Answers

Okkkkkkkkkkkkkkkkkkkkkkk

Answer:

Sure????

Explanation:

The expression “computer fluency” understates the level of computer skills that hiring businesses expect of today’s college graduates.
true or false

Answers

Answer:

True

Explanation:

Fluency means capability so that means computer fluency means computer capabilities

Use the drop-down menus to complete the steps necessary for adding a conditional formatting rule.
On the Home tab, click the
group.
On the drop-down list, click
and click the rule you wish to use.
Use the dialog box to complete the rule,

Answers

Conditional formatting are used to assign specific formatting options to cells based on a specified set of rules. Hence, cells which meets the set rules are given the formatted based on the formatting conditions.

To use conditional formatting, navigate to the styles group which is on the home tab.

A drop down list appears with various options, click conditional formatting

The rule to be used should be clicked in the dialog box and the rules can be tweaked by clicking manage rules.

Learn more :https://brainly.com/question/22654163

Answer:

styles, conditional formatting

Explanation:

got it right :))

What will be the value of discountRate after the following statements are executed? double discountRate = 0.0; int purchase = 100; if (purchase > 1000) discountRate = 0.05; else if (purchase > 750) discountRate = 0.03; else if (purchase > 500) discountRate = 0.01;

Answers

The value of discountRate after the following statements are executed

double discountRate = 0.0;

int purchase = 100;

if (purchase > 1000) discountRate = 0.05;

else if (purchase > 750) discountRate = 0.03;

else if (purchase > 500) discountRate = 0.01;

is 0.0

Explanation:

The discount rate is declared as a double; double discountRate = 0.0;

The purchase is declared as integer; int purchase = 100;

The first if statement shows if purchase > 1000 then the discountRate is 0.05

The second if statement shows if purchase > 750then the discountRate is  0.03

The third if statement shows if purchase > 500 then the discountRate is  0.01

Since none of these statements are true, the original discountRate is printed.

Final answer:

After executing the statements, the value of discountRate will remain 0.0 because the purchase amount does not meet any of the specified conditions to receive a discount.

Explanation:

The value of discountRate after executing the given statements will be 0.0. The code snippet provided is a series of conditional statements that assign a value to the variable discountRate based on the value of the variable purchase.

The initial value of purchase is 100, which does not satisfy any of the given conditions for increasing the discountRate (i.e., purchase must be greater than 500, 750, or 1000 to get a discount). Therefore, the discountRate remains at its initial value of 0.0 since no conditions are met.

What does the following fragment of code display? What do you think the programmer intended the code to do, and how would you fix it? int product = 1; int max = 20; for (int i = 0; i <= max; i++) product = product * i; System.out.println("The product is " + product);

Answers

Answer:

0

Explanation:

Given the code segment:

       int product = 1;        int max = 20;        for (int i = 0; i <= max; i++)            product = product * i;        System.out.println("The product is " + product);

Since the counter i in the for loop started with 0, and therefore product * i will always be 0 no matter how many rounds of loop to go through.

The code is likely to perform factorial calculation. To do so, we need to change the starting value for the counter i to 1.

       int product = 1;        int max = 20;        for (int i = 1; i <= max; i++)            product = product * i;        System.out.println("The product is " + product);

Molly, an end-user, connects an external monitor, external keyboard and mouse, and a wired network cable to her laptop while working in the office. She
leaves the office frequently to meet with customers and takes the laptop with her. Disconnecting and reconnecting these external connections has become
inconvenient. Which of the following devices will allow the user to disconnect and reconnect the laptop to the external connections with the least amount
of effort?
Port Replicator
Docking Station

Answers

Answer:

A Port Replicator

Explanation:

Port Replicators are universal and do not require that your computer (laptop) be docked (Placed) on them to function. All you need is the devices connected to the port replicator and whenever you need to move the laptop, you disconnect the port replicator from it. It generally is connected via a type of USB port.

A Docking station on the other hand can be a drag in the sense that you might have a challenge always having to dock and undock your laptop from the station anytime you need to move. This can be annoying if you are in a rush. Also the Docking stations use expansion ports which are a lot of times not universal (Not just any type of laptop can connect to the dock stations, just your model or specified models).

Answer:

Port Replicator

Explanation:

While you may be able to use a docking station for this purpose, a port replicator is designed specifically for this kind of use.

when should you use an electronic spreadsheet

Answers

Answer:

An electronic spreadsheet can be used to perform numerical calculations automatically

Explanation:

An electronic spreadsheet can be used to perform numerical calculations automatically. This spreadsheets are set up in the form of a table with rows and columns.

Data is stored in a cell formed as a result of intersection of each row and column.

Their primary purpose is to organize and categorize data into a logical format. This data then can be used to organize and grow the business.

"The graphics driver was recently updated on a system. Now, the graphical user interface (GUI) is not displaying, preventing the user from logging in. You need to access the system locally. Which of the following commands will access the tty2 terminal?"

Answers

You can access a full-screen TTY session by holding down the Ctrl+Alt keys, and pressing one of the function keys. Ctrl+Alt+F3 will bring up the login prompt of tty3.  If you log in and issue the tty command, you'll see you are connected to /dev/tty3.

Explanation:

tty2 is short for teletype, but it's more popularly known as terminal. It's basically a device (implemented in software nowadays) that allows you to interact with the system by passing on the data (you input) to the system, and displaying the output produced by the systemYou can either : press ctrl+alt+F7  Or  run the command startx if the above commands do not work.The tty command of terminal basically prints the file name of the terminal connected to standard input.In Linux, there is a pseudo-teletype multiplexor which handles the connections from all of the terminal window pseudo-teletypes (PTS). The multiplexor is the master, and the PTS are the slaves. The multiplexor is addressed by the kernel through the device file located at /dev/ptmx.The -s (silent) option causes tty to generate no output.

Final answer:

Access tty2 terminal by pressing Ctrl+Alt+F2, log in with your username and password, and be aware that password characters won't display for security reasons.

Explanation:

To access the tty2 terminal on a Linux system when the GUI is not displaying, you can use the keyboard shortcut Ctrl+Alt+F2. This will switch you from the GUI to the second tty terminal, tty2. Once the terminal is accessed, you will be prompted to log in with your username and password. Remember that when typing your password, you will not see any characters on the screen; this is a security feature to prevent onlookers from seeing the contents or length of your password. After successfully logging in, the command prompt should reflect your username, similar to oneils atmosphere ~$, indicating you are now logged in to the system via the command-line interface.

In a(n) __________ situation, a wireless device is configured to appear to be a legitimate access point, enabling the operator to steal passwords from legitimate users and then penetrate a wired network through a legitimate wireless access point. a) malicious association b) network injection c) ad hoc network d) identity theft

Answers

Answer:

A) Malicious Association,

Hope this helps.

Explanation:


Su wants to apply the new font to the other slides of the presentation. She knows she can use the Format Painter tool
to do this.
How does she apply the new font using the paintbrush cursor?
Aside from using Format Painter, what other option or comma
complete

Answers

Answer:

1.) click the text in the text box

2.) replace fonts

Explanation:

e2020

Answer:

How does she apply the new font using the paintbrush cursor?

✔ Click the text in the text box.

Aside from using Format Painter, what other option or command can Su use to complete her task?

✔ Replace Fonts

Explanation:

Assume there is a variable, nobel_peace_prizes, that is associated with a dictionary that maps years to winners of the Nobel Peace Prize for that year and assume it is up-to-date through the year 2005. Write a statement that adds an entry that maps the key 2006 to "Muhammad Yunus and Grameen Bank".

Answers

Final answer:

To add Muhammad Yunus and Grameen Bank as the 2006 Nobel Peace Prize winners, add the entry 'nobel_peace_prizes[2006] = "Muhammad Yunus and Grameen Bank"' to the dictionary.

Explanation:

To add an entry that maps the key 2006 to "Muhammad Yunus and Grameen Bank" to the nobel_peace_prizes dictionary, you would use the following Python statement:

nobel_peace_prizes[2006] = "Muhammad Yunus and Grameen Bank"

This statement will append a new key-value pair to the dictionary, where the key is 2006 and the value is 'Muhammad Yunus and Grameen Bank'. This assumes that nobel_peace_prizes is a dictionary that is already defined and associated with the Nobel Peace Prize winners up until the year 2005. By executing this statement, the dictionary gets updated with the Nobel Peace Prize winner for the year 2006.

An array of integers named parkingTickets has been declared and initialized to the number of parking tickets given out by the city police each day since the beginning of the current year. (Thus, the first element of the array contains the number of tickets given on January 1; the last element contains the number of tickets given today.) A variable named ndays has been declared and initialized to hold the size of the array. (Thus, if today were January 18, ndays would have the value 18; if today were February 3, ndays would have the value 34.) In addition, a variable named mostTickets has been declared, along with a variable k. Without using any additional variables, and without changing the values of ndays or the elements of the parkingTickets array, write some code that results in mostTickets containing the largest value found in parkingTickets.

Answers

An array of integers named parkingTickets has been declared and initialized to the number of parking tickets given out by the city police each day since the beginning of the current year.

Explanation:

A variable named ndays has been declared and initialized to hold the size of the array.The first element of the array contains the number of tickets given on January 1; the last element contains the number of tickets given today.A variable named mostTickets has been declared, along with a variable k.If today were January 18, ndays would have the value 18; if today were February 3, ndays would have the value 34

mostTickets=0;

for (k=0; k< ndays; k++)

{

if (parkingTickets[k]>mostTickets) mostTickets=parkingTickets[k];

}

Final answer:

To find the largest value in the parkingTickets array without using any additional variables or changing the values of ndays or the elements in the array, you can use a for loop to iterate through the elements of the array.

Explanation:

To find the largest value in the parkingTickets array without using any additional variables or changing the values of ndays or the elements in the array, you can use the following code:



for (int i = 1; i < ndays; i++) {
 if (parkingTickets[i] > parkingTickets[i - 1]) {
   mostTickets = parkingTickets[i];
 }
}



This code iterates through the elements of the array and checks if each element is greater than the previous element. If it is, it updates the value of mostTickets to the current element. At the end of the loop, mostTickets will contain the largest value found in parkingTickets.

Learn more about Finding the largest value in an array here:

https://brainly.com/question/33888086

#SPJ3

100 Base-T: Group of answer choices
can run at either full- or half-duplex
is one of the oldest forms of Ethernet
is one of the slowest forms of Ethernet
can only be used over coaxial cables
has only one version, 100Base-SLCX

Answers

Answer:

can run at either full- or half-duplex

Explanation:

In Computer Networking, 100Base-T also known as fast ethernet is an ethernet standard that operates at 100Mbps and can run at either full- or half-duplex.

It uses Shielded Twisted Pair (STP) cabling system.

The Variations of 100BaseT are;

- 100BaseTX

- 100BaseFX.

A ______ site is a disaster recovery site that includes a computer system similar to the one the company regularly uses, software, and up-t0-date data so the company can resume full data processing operations within seconds or minutes.
a. Hot
b. Cold
c. Flying start
d. Backup

Answers

Answer:

c, flying start

Explanation:

This would be a flying start site.

Given that a function name f receives three parameters a, b, c, of type double, write some code, to be included as part of the function, that determines whether the value of "b squared" – 4ac is negative. If negative, the code prints out the message "no real solutions" and returns from the function.

Answers

Answer:

def calculatereality(a,b,c):

   if (pow(float(b),2) - 4*float(a)*float(c)) >=0:

       print("real solutions")

   else:

       print("no real solutions")

calculatereality(12,234,12) #This is for output check

Explanation:

The function required is written above. It prints imaginary or real values according to the calculations b^2-4*a*c.

There is a significant diversity among humans with regard to physical abilities, backgrounds, cultures and age. However, by simply designing an interface for the average, generic human, people of various types will be able to conform to the design without toil.a) trueb) false

Answers

Answer: b) False

Explanation:

According to the question, as humans are indulged into various characterization on physical appearance, culture, background etc in social life, they also want some diversity in interface design as well.

Users should be provided with innovative designed that is flexible enough for them to control an monitor.Interface should be able to cope with industrial purpose, commercial purpose, home usage etc.Therefore , normal designing of interface for diverse users will not be obeyed without any hard work as it requires analysis and research towards user and their interface requirement.So, the given statement is false .Thus, the correct option is option(b).

Can effective distance learning interaction be achieved on a low-bandwidth mobile device? Your answer should be 3 sentences.

Answers

Answer:

No, this is not possible. Due to low bandwidth, neither video nor teleconferencing will be possible. Moreover, large size study materials will take quite a while to be downloaded and uploaded. And hence, it will be very difficult to ensure distance learning online as student-student, and student-teacher as well as teacher-teacher, and management-teacher-student interaction will be very difficult.

Explanation:

Please check the answer section.

Does anyone know the answer for this? I’m extremely confused.

Answers

Answer:

move 3 right   down 1      3 to the left.  down 2    2 to the right    up one.   1 to the left    one up    2 to the right    and 2 down and your at the end without going back       hope this helps

Explanation:

Answer:

See picture. The secret is: the rules do not say anything about going back to the starting room...

If I have a list of peoples hair colour and grades, can I check for the correlation with excel? How?

Answers

Answer:

Explanation:

You can check for correlation using

a. the Analysis Toolpak add-in in Excel to quickly generate correlation coefficients between hair colors and grade; using the following steps.

1. On the Data tab, in the Analysis group, click Data Analysis.

Click Data Analysis

2. Select Correlation and click OK.

Select Correlation

3. select the range of cells that occupies the hair color and grade as the Input Range.

Select the Input Range

4. Check Labels in first row.

5. Select cell A8 as the Output Range.

6. Click OK.

Input and Output Options

Result.

Correlation Coefficients

Yes, you can check for the correlation between hair color and grades using Excel.

Encode the hair color into numeric values, input your data into Excel, and use the CORREL function to calculate the correlation coefficient, which indicates the strength and direction of the relationship.

Here's how you can do it:

Prepare Data: Ensure that your data is organized in two columns, one for hair color and another for grades.Encode Hair Color: Since correlation requires numeric data, you need to encode your hair color data into numbers. For example, assign blonde = 1, brown = 2, black = 3, etc.Enter Data in Excel: Enter your encoded hair color data in one column and the grades in the adjacent column.Use the CORREL Function: In an empty cell, use the formula = CORREL(range1, range2), where range1 is the range of cells for hair color, and range2 is the range for grades.Interpret the Result: The result of the CORREL function will give you the correlation coefficient, which shows the strength and direction of the linear relationship between the variables.

For example, if you have 10 data points where hair color is encoded in column A (A1:A10) and grades in column B (B1:B10), you can use the formula = CORREL(A1:A10, B1:B10) to find the correlation coefficient.

What is the relationship between a method and a function

Answers

Answer:

Method and a function are the same,whit the different terms. A method is a procedure or function in object - oriented programming. A function is a group of reusable code which can be called anywhere in your program. This eliminates the need for writing the some code again and again.

A function is a piece of code that is called by name. It can be passed data to operate on (i.e. the parameters) and can optionally return data (the return value). All data that is passed to a function is explicitly passed. A method is a piece of code that is called by a name that is associated with an object
Other Questions
Sybil is a well known book concerning dissociative identity disorder. As an examination of a single individual, the book represents:a.case study researchc.survey researchb.the correlational method of researchd.the experimental method of research Quentin was challenged to a half- court shooting competition. He will earn 20 points for every shot made and lose 5 points for every shot missed. Quentin has zero points. How many shots did he make How did Rome gain control of Sicily At a New Car Dealership a particular model comes in 4 trims levels, 5 different colors, and 3 different interiors. How many different versions of this car model can be created from these options? Sweden invests more on education as a share of its GDP than almost any other country in the world. Sweden has among the highest primary school enrollment rates and primary school completion rates. The Swedish economy is also driven by innovation and they invest in research and development. Most businesses are privately owned and market-oriented. Education, health care, and child care costs are primarily met by taxation. Sweden is highly dependent on free international trade to maintain its living standard. Sweden also high a long growing season for agriculture and a large timber industry. True or False - Sweden has high economic growth. True False Although the southern states were all seated in Congress by 1870, federal troops remained in some southern states until the compromise of 1877. * true or false Perspective influences how a person looks at a piece of art and its qualities.a. always trueC. always falseb. sometimes trued. Perspective is not relevant in the interpretation ofart.Please select the best answer from the choices providedMark this and retumSave and ExitNextSubmit Why did the Auld's have different perspectives about Frederick learning how to read? IF UU ANSWER CORRECTLY I"LL MARK UU ;) How many feet are in 5 yards ?? Explain how you calculated your answer. Ben has a square garden that has sides measuring X feet, Ben wants to increase every side of his garden by 11 feet in order to plant more vegetables after Ben increased his garden it will have a perimeter of 104 feet, write an equation that can use the find X How are humans able to perceive light waves? Sound waves? hernando is choosing a random number between 0 and 9 state the number of successful outcomes for choosing an even number Which of the peas traits yellow or green, is dominant? Explain your answer The Federal Pell Grant Program gives grants to low-income undergraduate students. According to the National Postsecondary Student Aid Study conducted by the U.S. Department of Education in 2008, the average Pell grant award for 2007-2008 was $2,600. We wonder if the mean amount is different this year for Pell grant recipients at San Jose State University. Suppose that we randomly select 50 Pell grant recipients from San Jose State University. For these 50 students, the mean Pell grant award is $2,450 with a standard deviation of $600. Let = the mean amount of Pell grant awards received by San Jose State University Pell grant recipients this year. We test the following hypotheses. H 0: = 2600 H a: 2600 The sample size is greater than 30, so a t-model is a good fit for the sampling distribution. Use this information to answer the next two questions. Flag this Question Question 12.5 pts What is the t-test statistic? If necessary, round to two decimal places. Based on your research, what are the negative effectsof litter in local communities? Check all that apply.Litter cleanup is very expensive.Litter has decreased since 1969.Litter is a constant community problem.Litter causes property in the community to be lessvaluable.Litter contaminates water and has otherenvironmental consequences. What did yellow signify for Vincent Van Gogh? I really need help with this. It is very important to me :(You and a friend are organizing a trip to South America. Write a short description of what you are going to do together. Write two (2) complete Spanish sentences. Include the following details in your description using only material learned from this lesson/course: (4 points)You may copy and paste the accented and special characters from this list if needed: , , , , , , , , , , , , , , .Write one (1) complete sentence to state which country you and your friend are going to visit and what time of the year or season you are going to travel. Remember to use the correct form of the verb ir + a + infinitive. (e.g., My friend and I are going to travel to Ecuador this summer.)Write one (1) complete sentence about something that can be found in the countryside of the country you are going to visit and what it is like. Remember to use the correct form of the verb estar to talk about location and the correct form of the verb ser to describe. Dont forget to make your adjective agree with the noun. (e.g., The Andes mountains are in Ecuador and they are magnificent.) Which expression represents 22 more than the difference between 95 and 63 A. (22+95)B. 22+(95+63)C. (95-63)+22 a. What are the determinants of demand? Instructions: Click the box with a check mark for correct or click a second time to clear the box for incorrect. Income unanswered Price of related goods unanswered A good's own price unanswered Technology unanswered Tastes and preferences unanswered Resource prices unanswered Number of consumers A pack of 4 chocolate bars costs 1.20What is the price per unit?