What are the challenges of giving peer feedback in peer assessment

Answers

Answer 1
Feeling of underachievement
Answer 2

Answer:

There can some challenges when giving and receiving peer feedback in a peer assessment. Some people can be harsh in their assessments of your work. Some students cannot take that and because of that it can cause them to question a lot of their work. People can also be wrong when it comes to the assessment


Related Questions

A line graph is a great tool for showing changes over time. Why is a line graph better than other graphs at showing this type of data?

Answers

Answer:

Line graphs allow us to see overall trends such as an increase or decrease in data over time. Bar graphs are used to compare facts.

Which of the following are advantages of converting analog audio to digital audio? Choose all that apply

Reduction in editing time

Consistently accurate copies of audio recordings

Preservation

Susceptibility to computer viruses

Answers

Answer:

b and c

Explanation:

sorry if there wrong

Answer: A, B, and C

Explanation:

Question # 2
Dropdown
Identify the type of error described.

___5 / 0


___ float('two')

Answers

Answer:

ZeroDivisionError

ValuError

Explanation: Edg 2020-2021

Answer:

1.ZeroDivisionError

2.ValueError

Explanation:

took test

Write a C console application that will be used to determine if rectangular packages can fit inside one of a set of spheres. Your program will prompt the user for the three dimensions that define a rectangular box; the length, the width, and the height. The interior diameter of a sphere is used to identify its size. Spheres are available in the following five sizes: 4- inch, 6-inch, 8-inch, 10-inch, and 12-inch. Your program will execute repeatedly until the user enters a value of zero for one or more of the rectangular box dimensions. After obtaining the dimensions of the rectangular box, your program will call a function named getSphereSize that determines if the box will fit inside one of the five spheres. The formula for calculating the diagonal of a rectangular box is:

Answers

Answer:

#include <cmath>

#include <iostream>

using namespace std;

int getSphereSize(double length, double breadth, double height) {

   double diagonal = sqrt(length * length + breadth * breadth + height * height);

   if (diagonal <= 4)

       return 4;

   if (diagonal <= 6)

       return 6;

   if (diagonal <= 8)

       return 8;

   if (diagonal <= 10)

       return 10;

   if (diagonal <= 12)

       return 12;

   return 0;

}

int main() {

   double length, breadth, height;

   int sphereCounts[5] = {0};

   int sphereSize;

   while (true) {

       // Get dimensions of the box

       cout << "Enter the dimensions of the box:\n";

       cout << "Length: ";

       cin >> length;

       cout << "Breadth: ";

       cin >> breadth;

       cout << "Height: ";

       cin >> height;

       if (length <= 0 || breadth <= 0 || height <= 0)

           break;

       sphereSize = getSphereSize(length, breadth, height);

       if (sphereSize == 0)

           cout << "The box cannot fit in any of the spheres";

       else

           cout << "The box can fit in the " << sphereSize << "-inch sphere";

       // Increment the counter

       if (sphereSize == 4)

           sphereCounts[0]++;

       else if (sphereSize == 6)

           sphereCounts[1]++;

       else if (sphereSize == 8)

           sphereCounts[2]++;

       else if (sphereSize == 10)

           sphereCounts[3]++;

       else if (sphereSize == 12)

           sphereCounts[4]++;

       cout << "\n\n";

   }

   cout << "\nNumber of 4-inch spheres: " << sphereCounts[0];

   cout << "\nNumber of 6-inch spheres: " << sphereCounts[1];

   cout << "\nNumber of 8-inch spheres: " << sphereCounts[2];

   cout << "\nNumber of 10-inch spheres: " << sphereCounts[3];

   cout << "\nNumber of 12-inch spheres: " << sphereCounts[4];

   cout << endl;

   return 0;

}

Explanation:

The "cmath" library is included in the c++ program. The getSphereSize function is used to return the sphere size the rectangle dimension can fit into. It program continuously prompts the user for the length, breadth, and height of the rectangle and passes the values to the getSphereSize function in the while but breaks if any or all of the variable value is zero.

The sizes of the sphere objects in inches are collected in an array of five integer values of zeros and are incremented by one for every match with a rectangle.

Pls awnser I will mark brainliest math

Answers

It’s 34....!!!! i did this before

Answer:

2788 or 116

Explanation:

Is the current month 12?

Answers

No it currently month 2 February have a nice day:)

Suppose end system A wants to send a large file to end system B. At a very high level, describe how end system A creates packets from the file. When one of these packets arrives to a packet switch, what information in the packet does the switch use to determine the link onto which the packet is forwarded

Answers

Answer:

The answer is below

Explanation:

Suppose end system A wants to send a large file to end system B, the large file is first divided into smaller chunks. Each chunk is then assigned a header forming a packet. Multiple packets are being generated with each of the packet containing a unique destination address in its header.

When a packet arrives at the packet switch, the switch uses the unique destination address that is attached in the header of the packet to determine the link onto which the packet is to be forwarded.

Match the data type to the given data.
1. float
2. array
3. Boolean
4. character

false
с
c, o, m, p, u, t, er
26.2

Answers

Float: 26.2
Array: c, o, m, p, u, t, er
Boolean: false
Character: c

What is the correct order for writing the 3 dimensions for a 3D object? Here are the 3 dimensions:


Width


Height


Length


They need to be written in this format: ___________X___________X___________


Fill in the blanks.
for my sibling.

Answers

Answer:

Length x Width x Hight

Explanation:

The objective of this task is to use Scapy to estimate the distance, in terms of number of routers, between your VM and a selected destination. This is basically what is implemented by the traceroute tool. In this task, we will write our own tool. The idea is quite straightforward: just send an packet (any type) to the destination, with its Time-To-Live (TTL) field set to 1 first. This packet will be dropped by the first router, which will send us an ICMP error message, telling us that the time-to-live has exceeded. That is how we get the IP address of the first router. We then increase our TTL field to 2, send out another packet, and get the IP address of the second router. We will repeat this procedure until our packet finally reach the destination. It should be noted that this experiment only gets an estimated result, because in theory, not all these packets take the same route (but in practice, they may within a short period of time). The code in the following shows one round in the procedure. a = IP() a.dst = ’1.2.3.4’ a.ttl = 3 b = ICMP() send(a/b) If you are an experienced Python programmer, you can write your tool to perform the entire procedure automatically. If you are new to Python programming, you can do it by manually changing the TTL field in each round, and record the IP address based on your observation from Wireshark. Either way is acceptable, as long as you get the result.

Answers

Answer:

answer b

is correct

of what is famous Ted Nelson?​

Answers

Answer:

Nelson proposed a system where copying and linking any text excerpt, image or form was possible.

Explanation:

Ted Nelson is one of the theoretical pioneers of the world wide web who is best known for inventing the concept of hypertext and hypermedia in the 1960s. As one of the early theorists on how a networked world would work.

How I know:

I goggle it.

Use three or more sentences to explain to someone why they might need to use a virtual machine.

Answers

Answer:

Benefits of Virtualization

Reduced capital and operating costs.

Minimized or eliminated downtime.

Increased IT productivity, efficiency, agility and responsiveness.

Faster provisioning of applications and resources.

Greater business continuity and disaster recovery.

Simplified data center management.

PLEASE HELP ME WITH THIS i will mark you brainlist

Answers

Answer: you have to check your email and click on the microsoft email they sent you and enter the code in the email.

Explanation: plz mark brainliest

Other Questions
Markus buys an old bike for 50. He cleans it up and sells it for 60. What is his percentage profit? A garden is going to be built in the city park in the shape of a parallelogram with a rectangular walkway through it. The garden region is shown below. Find the area of the garden region by finding the areas of the individual shapes shown in the figure. 78 ft 72 ft 30 ft 20 ft Answer: solve this please log(4x+16)=2 Genevieve deposited $400 into her bank account. The equation A(t) = 400(1.07) can be used to calculathe value of her money after t years. What is the annual interest rate she is earning on her deposit?0.07%1.07%7%O107% Looking out for me balcony the angle of elevation to the top of the next building is approximately 22 in the English depression to the bottom of the building approximately 29 if the building is 200 feet away how tall is the building? Which of the following statements best explains the types of diseases? -Communicable and non-communicable diseases can affect various dimensions of a persons health. -Communicable and non-communicable diseases only affect physical health. two angles of a triangle measure 67 degrees and 90 degrees what is the measure of the third angle? 5 x 2^x= 40 What is the value of x? what was Vladimir Lenin purpose Who is responsible for filing your federal tax return?A. The IRS.B. Your employer.C. The state tax agency.D. You. PLSS HELP the length of a rectangle is 3 meters greater than 2 times the width the perimeter of a rectangle is 30 m what is the length of the rectangle i will give u brainlist pls write the correct answer!!.1. The arms race is when countries:. compete in the Olympicscompete to have the most and biggest weaponscompete in arm wrestling competitions2. What is militarism Provide an example of militarism from WWI as well. 3. Bonus: shell shock was when.Soldiers found shells on the beachthe sound of shelling artillery affected soldiers brainssoldiers were shocked at how big the shells of grenades could be4. Why was WWI considered the first modern war? Explain using an example.. Describe the transformation below. Use words like translated, reflected, rotated, or dilated with a description. Help will mark Brainliest Instructions: You will see there is space to discuss two artworks, with one row corresponding to one work of art. The two works of art are already printed on the page and are pictured below. Complete each block with several phrases or bullet points Be sure to respond to the question at the bottom. In your response of four or five sentences, be sure to mention and compare both works and to cite evidence (that you already noted in the table) Can someone plz help me with this one problem!!!! Im being timed What is the sum of (4x2+5x 12) + (7x2 6x + 7)? What is the meaning of Social and Economic justice? Which of the following BEST describes the rule of four ? What did Harry Hess discover that helped prove that tectonic plates are moving? Steam Workshop Downloader