1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
ExtremeBDS [4]
4 years ago
8

Which of the following should get a Page Quality (PQ) rating of Low or Lowest? Select all that apply. True False A page with a m

ismatch between the location of the page and the rating location; for example, an English (UK) page for an English (US) rating task. True False A file type other than a webpage, for example: a PDF, a Microsoft Word document, or a PNG file. True False A page that gets a Didn't Load flag. True False Pages with an obvious problem with functionality or errors in displaying content.
Computers and Technology
1 answer:
Vikki [24]4 years ago
6 0

The statement “All queries have only one intent: Know, Do, Website or Visit-in-Person intent” is True.

The statement “The intent of a Do query is to accomplish a goal or engage in an activity on a phone” is True.

The statement “The intent of a Website query is to find information” is True.

The statement “There is absolutely no information about who is responsible for the content of the website on a YMYL topic” is True.

The statement “All the Main Content(MC) of the page is copied and created with deceptive intent” is True.

The statement “A page with a mismatch between the location of the page and the rating location; for example, an English page for an English rating task’ is True.

“A file type other than a web page, for example; a PDF, a Microsoft Word document or a PNG file” is False.

<u>Explanation:</u>

The searcher tries to find out the Know queries. The action is taken by the searcher using the Do queries. The searcher looks for a site/ page using Website queries. The queries which are the same as they appear to be are Visit-in-Person queries.

The statement is true because in Do queries, the action is taken like the control of the smartphone is given to Google.

The search for a page or a site takes place using Website queries.

It is not always true that the Wikipedia pages should get high ratings for all user intents because information is helpful.

There is no surety that who will update the content of the website on a YMTL topic.

The Main Content (MC) of the low quality YMYL page helps the page to achieve its purpose. For YMYL the content is created with deceptive intent. The pages manipulate users to take action which will not help the users .

The PQ rating is lowest when there is a mismatch between the location of the page and the rating location, for example, an English rating task. Here, the purpose of the page is required to be understood to determine the rating.

The PQ rating is not determined by the type of the page but by the purpose of the page.

You might be interested in
Which of the following is NOT an example of soft skill?
Klio2033 [76]
I think it’s A. Leadership
7 0
3 years ago
Read 2 more answers
100 students were asked to fill out a form with three survey questions, as follows: H: Honor Roll C: Club membership (Robotics C
finlep [7]

Answer:

1. 45

2. 9

3. 11

4. 17

Explanation:

Given  the following:

28 checked H

26 checked C

14 checked D

8 checked H and C

4 checked H and D

3 checked C and D

2 checked all.

Hence N(H) = 28

N(C) = 26

N(D) = 14

N(H U C) = 8

N(H U D) = 4

N(C U D) = 3

N(H U C U D) = 2

We also know that

Total = N(H) + N(C) + N(D) - N(H U C) - N(H U D) - N(C U D) + N(H U C U D)

Substituting the given values, we obtain

Total = 55

1. Students that didn't check any box = 100 - 55 = 45 students

2.  Students who checked exactly two box

=  N(H U C)  + N(H U D) + N(C U D) - 3N(H U C U D) (from probability theorem)

Substituting the values, we have 8 + 4 + 3 - 6 = 9 students

3. Students who checked atleast two box =

The people who have checked all three are needed to be calculated once. Earlier, we subtracted them thrice so we add one time

 N(H U C)  + N(H U D) + N(C U D) - 2N(H U C U D) = 8 + 4 + 3 - 4 = 11 students

4.  Given N(C) = 26

We subtract N(CUD) and N(HUC) as they have checked another apart from club.

 26 -8 - 3 = 15

Now we could notice we have subtracted N(HUCUD) twice in both categories, so we add one time to neutralise

15 + 2 = 17

Hence N(only C) = 17 students.

7 0
4 years ago
A) Suppose a computer has an instruction pipeline with 4 phases. How many cycles (if there are no delays) would it take to compl
Reika [66]

Answer:

Explanation:

(a) Given data:

Instruction pipeline with 4 phases.

80 instruction

The number of cycles if the processor were pipelined :

80-1 = (79) instruction takes only 1 extra cycle to complete.

So, cycles counts = 4 + (79) = 83 cycles.

The number of cycles if the processor were not pipelined.  

Each instruction takes 4 cycles to complete.  

So, cycle counts = 80 * 4 = 320 cycles.

(b) One of the main problems of conditional branching in pipelines is the delay it gives even after the branch target buffer.

In pipeline, conditional branches depend on the codes which are still in estimation.

(c) Two ways to deal with problem arising due to conditional branching are as follows :

1. Delayed Branching    

2. Multiple Condition Codes

3 0
3 years ago
Rock climbing fun html
Delicious77 [7]

Answer:

Ok....? Imma just fill out something more so I can get the points. ☺

5 0
3 years ago
Define a member function PrintAll() for class PetData that prints output as follows. Hint: Make use of the base class' PrintAll(
PilotLPTM [1.2K]

Answer:

Following are the program in the C++ Programming Language.

//set header file

#include <iostream>

//set header file for string

#include <string>

//set namespace

using namespace std;

//define class

class AnimalData

{

//set access modifier

public:

//define function

void SetName(string givenName)

{

//initialize the value of function's argument

fullName = givenName;

};

//define function

void SetAge(int numYears)

{

//initialize the value of function's argument

ageYears = numYears;

};  

//here is the solution

//define function

void PrintAll()

{

//print output with message

cout << "Name: " << fullName<<endl;

//print output with message

cout << "Age: " << ageYears<<endl;

};

//set access modifier

private:

//set integer data type variable

int ageYears;

//set string data type variable

string fullName;

};

//define class and inherit the parent class

class PetData: public AnimalData

{

//set access modifier

public:

//define function

void SetID(int petID)

{

idNum = petID;

};

//override the function for print id

void PrintAll()

{

AnimalData::PrintAll();

cout << "ID: " <<idNum ;

};

//set access modifier

private:

//set integer type variables

int idNum,fullName,ageYears;

};

//define main method

int main()

{

//create object of the child class

PetData userPet;

//call function through object

userPet.SetName("Fluffy");

//call function through object

userPet.SetAge (5);

//call function through object

userPet.SetID (4444);

//call function through object

userPet.PrintAll();

cout << endl;

return 0;

}

<u>Output</u>:

Name: Fluffy

Age: 5

ID: 4444

Explanation:

<u>Following are the description of the program</u>:

  • Set required header file and namespace.
  • Define class 'AnimalData' and inside the class, set integer data type variable 'ageYears', string data type variable 'fullName'.
  1. Then, define function 'SetName()' with string data type argument 'givenName' and initialize the value of argument in the string variable.
  2. Then, define function 'SetAge()' with integer data type argument 'numYears' and initialize the value of the argument in the integer variable.
  3. Define function 'PrintAll()' to print the value of the following variables with message.
  • Define class 'PetData' and inherit the parent class in it, then set integer data type variable 'idNum'.
  1. Then, define function 'SetID()' with integer data type argument 'petID' and initialize the value of the argument in the integer variable.
  2. Override the function 'PrintAll()' to print the value of the following variable with message.

Finally, define main method and create the object of the child class, then call the following functions through the class object.

8 0
3 years ago
Other questions:
  • In this project, you’ll create a security infrastructure design document for a fictional organization. The security services and
    5·1 answer
  • You are attempting to open a file containing a list of integer numbers, each on a separate line, and read them into Python as in
    6·1 answer
  • Title text boxes on every slide must be the same format.<br><br> A) True<br> B) False
    8·2 answers
  • Why are agorithms important?
    8·1 answer
  • What are the disadvantages of plasma display?
    9·1 answer
  • You are managing an FTP server installed in Ubuntu Server. The server has created a very large log le, vsftpd.log. Which command
    14·1 answer
  • Write a method that evaluates to true or false depending on whether a box completely fits inside another:
    12·1 answer
  • Which statement about technology before the invention of the printing press is true?
    8·1 answer
  • Which of the following safety and privacy features is not included in a P2P app or service?
    5·2 answers
  • What are two benefits of defining a function?
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!