The instruction set is of _____________ importance ingoverning the structure and function of the pipeline.
a Least
b Primary

c Secondary

d No

Answers

Answer 1

Answer: a) Least

Explanation: Pipelining is the process where multiple instruction are to be processed in a parallel way . The most important steps in this process include step like fetching the instruction, decoding it, executing ,reading the instruction and writing it to the memory. So,instruction set is not a very important in the structure of the pipeline.


Related Questions

What are the two main functions of user accounts in Active Directory? (Choose all that apply.) Allow users to access resources method for user authentication to the network Provide detailed information about a user Provide auditing details

Answers

Answer:

method for user authentication to the network

Provide detailed information about a user

Explanation:

An in AD, a user account consists of all the information that includes user names, passwords, and groups. All these information defines a domain user in which a user account has membership access to. With the advanced features of Kerbos, mutual authentication in user accounts to a service is achieved.

Answer:

-Allow users to access resources

-Method for user authentication to the network

Explanation:

User accounts in Active Directory give people and programs the access to resources in a windows domain. These accounts are used to allow people to access resources, manage the access users have to resources like files and directories and allow programs to be able to run in a particular context. According to this, the answer is that the two main functions of user accounts in Active Directory are: allow users to access resources and method for user authentication to the network.

Write a program that will compare two names. The program prompts the user to enter two names for a comparison. If the names are same, the program states that. If the names are different, the program converts both names to UPPERCASE, and compares then again. If they are equal, the programs displays a message stating that names are equal if CASE is ignored. Otherwise, the program prints names with a message that names are not equal.

Answers

Answer:

We can use comparison operator 'Equals to' (==) to compare two strings.

Explanation:

We can use conditional statement 'if else' to put conditions. If statement contains boolean expression.If statement is followed by else block. If the boolean expression evaluates to true, then the if block of code is executed, otherwise else block of code is executed.

If we want to compare two strings with uppercase, then we can convert the input strings given by users using ToUpper() string function.

For example,

 string abc;

string uppercase= abc.ToUpper(); // gives ABC as result

I have written a program using c# as a  programming language in a word document and attached the same. Please find. Thank you!

Motivational appeals refer to

a- Values

b- Psychological needs

c- Emotions

d- All of thegiven options

Answers

Answer: D) All of the given options

Explanation:

Motivational appeals refers to the an emotional nature developed to increase individual values. It is a tool of emotions which target the psychological needs. It is a visualization of someone's desire and values and method of satisfying the emotions. Motivational appeals are divided into many categories like motivation and emotions.

. Two or more functions may have the same name, as long as their _________ are different.

Answers

Answer:

Number of parameters.

Explanation:

The function is a block of the statement which performs the special task.

Syntax:

type name(parameter_1,parameter_2,...){

statement

}

we can define any number of function in the code and also with the name as well.

But when we define the function with same name the number of parameter define in both function must be different.

for example:

1. int print(int a){

statement;

}

2. int print(int a, int b){

statement;

}

first has one parameter and second has two parameters.

Both are valid in the code.

How are information technology services delivered in anorganization?

Answers

Answer:

The information technology services are delivered in many ways in an organisation as:

The information technology services are referred the plans and the process of the organisation which are used for design and manages the service delivery in the organisation and its services are basically depend upon the client needs.  IT can significantly improved the profitability by shortening the material search and the delivery time, it is used for improving the decision making and accelerating the schedules. IT management are the vision into the some valuable reality.

Implement RandMultipByVal function, which gets one integervariable as its argument
and multiply it by a random number between 1 to10 (use call-by-value approach).

Answers

Answer:

#include <iostream>

#include <stdlib.h>

#include <time.h>

using namespace std;

void RandMultipByVal(int number){

   srand(time(NULL));

   int random = rand()%10+1;

   cout<<random*number;

}

int main()

{

 

  RandMultipByVal(4);

  return 0;

}

Explanation:

Include the three libraries, iostream for input/output, stdlib.h for rand() function and time.h for srand() function.

Create the function with one integer parameter.

Then, use srand() function. It is used to seed the rand() function or locate the starting point different in different time.

rand(): it is used to generate the random number between the range.

for example:

rand()%10  it gives the random number from 0 to 9.

if we add 1, then it gives from 1 to 10.

After that, multiply with parameter value and then print the result.

For calling the function create the main function and call the function with pass by value.

______ is the ability of a system to do more than one thing at a time. A. Multibusing c. online processing b. Multiprocessing d. Batch processing

Answers

Answer:

Multiprocessing.

Explanation:

In multiprocessing the system uses two or more processors to do more tasks simultaneously.

Final answer:

The ability of a system to do more than one thing at a time, known as multiprocessing, allows for the concurrent execution of multiple tasks by using multiple processing units or cores.

Explanation:

The ability of a system to do more than one thing at a time is known as multiprocessing. Multiprocessing systems have multiple processing units, commonly referred to as cores, which can execute tasks simultaneously. Unlike single-core systems, which can only handle one operation at a time, multiprocessing systems can perform multiple tasks concurrently, improving overall system efficiency and performance.

In the context of computers and operating systems, this capability allows a computer to run different processes at the same time, such as running a web browser while also running a spreadsheet application or virus scan. The operating system manages these processes and allocates processor time in such a way that users experience the tasks as though they are happening simultaneously.

By contrast, multibusing refers to a system where multiple buses allow many devices to connect and communicate with the CPU at the same time, while online processing is processing that is active and connected to a network. On the other hand, batch processing is a method of processing data in which transactions are collected and processed all at once at a particular time.

A pointer is the memory address of a variable. FALSE TRUE

Answers

Answer:

False

Explanation:

Because pointer itself is a variable that holds the memory address of  a variable as it's content.

write a program for TIC TAC TOE in PYTHON

Answers

Answer: much too long to write here: see attached

Explanation:

Answer:hehe, sorry im a year late

board = ["-", "-", "-",

        "-", "-", "-",

        "-", "-", "-"]

current_player = 'X'

running = True

WINNER = None

def display_board():

   print(board[0] + ' | ' + board[1] + ' | ' + board[2])

   print(board[3] + ' | ' + board[4] + ' | ' + board[5])

   print(board[6] + ' | ' + board[7] + ' | ' + board[8])

def play():

   display_board()

   while running:

       handle_turns(current_player)

       switch_turns()

       check_if_game_over()

   if WINNER == 'X':

       print("The Play X won!")

   elif WINNER == 'O':

       print("The play O won!")

def handle_turns(player):

   position = int(input('Choose a location from 1-9: ')) - 1

   board[position] = player

   display_board()

def switch_turns():

   global current_player

   if current_player == 'X':

       current_player = 'O'

   else:

       current_player = 'X'

# Check to see if the game should be over

def check_if_game_over():

 check_for_winner()

 check_for_tie()

# Check if there is a tie on the board

def check_for_tie():

 # figure out the conditions for a tie

 global running

 if '-' not in board:

   running = False

# Check to see if somebody has won

def check_for_winner():

 global WINNER

 row_winner = check_rows()

 column_winner = check_columns()

 diagonal_winner = check_diagonals()

 if row_winner:

   WINNER = row_winner

 elif column_winner:

   WINNER = column_winner

 elif diagonal_winner:

   WINNER = diagonal_winner

 else:

   WINNER = None

# Check the rows for a win

def check_rows():

 global running

 if board[0] == board[1] == board[2] != '-':

   running = False

   return board[0]

 elif board[3] == board[4] == board[5] != '-':

   running = False

   return board[3]

 elif board[6] == board[7] == board[8] != '-':

   running = False

   return board[6]

 else:

   return None

# Check the columns for a win

def check_columns():

 global running

 if board[0] == board[3] == board[6] != '-':

   running = False

   return board[0]

 elif board[1] == board[4] == board[7] != '-':

   running = False

   return board[1]

 elif board[2] == board[5] == board[8] != '-':

   running = False

   return board[2]

 else:

   return None

# Check the diagonals for a win

def check_diagonals():

 global running

 if board[0] == board[4] == board[8] != '-':

   running = False

   return board[0]

 elif board[6] == board[4] == board[2] != '-':

   running = False

   return board[6]

 else:

   return None

play()

A trust domain is defined as Select one: a. The agreed upon, trusted third party b. A scenario where one user needs to validate the other’s certificate c. A construct of systems, personnel, applications, protocols, technologies, and policies that work together to provide a certain level of protection d. A scenario in which the certificate’s issuer and subject fields hold the same information

Answers

Answer:

A construct of systems, personnel, applications, protocols, technologies, and policies that work together to provide a certain level of protection

Explanation:

Creation of dynamic Trust Domains can be realized through collaborative, secure sharing solutions. The local system is able to trust a domain to authenticate users. If an application or a user is authenticated by a trusted domain, all domains accept the authenticating domain. For instance, if a system trust domain X, it will also trust all domains that domain X trusts. It is a two-way trust relationship and is transitive.

Answer:

A construct of systems, personnel, applications, protocols, technologies and policies that work together to provide a certain level of protection

Explanation:

A trust domain is a certificate that entities or users gain and is granted by a trusted domain this is that when you enter another software or other systems you will be recognized as a trusted character or user and gives protection between systems and softwares and provides protection for the users.

A final class can't be extended.TrueFalse

Answers

Answer:

True

Explanation:

A final class is something like sealed one and no one can inherit that further.

it is useful to lock our code or functionality from others

Deleting anitem from a linked list is best when performed using two pointersso that the deleted item is freed from memory.
a.True
b. False

Answers

Answer:

a.True.

Explanation:

To delete a node from linked list it is best to do it by using two pointers suppose say prev and curr. Iterating over the linked list while curr is not NULL and updating prev also.On finding the node to be deleted we will set the prev so that it points to the next of curr and after removing the link we will free curr from memory.

line of code for deleting a node in c++:-

prev->next=curr->next;

delete curr;  or  free(curr);

There is a relationship between the grain and thedimensionso Trueo False

Answers

Answer:

True.

Explanation:

There is a relationship between the grain and the dimensions.

Which logical relationship does the PDM usemost often?

Start to finish
Start to start
Finish to finish
Finish to start

Answers

Answer:

Finish to Start.

Explanation:

Finish to Start dependency also known as FS is most commonly used dependency type used between activities in PDM(Precedence Diagramming Method).For example :- in a software you cannot test a screen before it is developed,in construction you cannot paint a building before it is constructed. So we conclude that Finish to start is most commonly used.

Answer:

Finish to start

Explanation:

I looked it :) hoped it helped

Analytical processing uses multi-levelaggregates, instead of record level access.? True? False

Answers

Answer:

True.

Explanation:

Analytical processing uses multi-levelaggregates, instead of record level access.

The factorial of a number n, written in math as n!, is the product of all the numbers from 1 to n or 1*2*3* … *n. Write a C++ program that requests a number from the user and then displays the factorial of that number. The program should only accept positive integers greater than 0.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

   int factorial=1;

   int num;    

   

   cout<<"Enter any Number: ";    

   cin>>num;  

   

   for(int i=1;i<=num;i++){    

     factorial=factorial * i;    

   }    

   

   cout<<"The factorial of the number is "<<factorial<<endl;  

 

  return 0;

}

Explanation:

Create the main function and declare the variable.

then, print the message by using the cout instruction.

store the value enter by user in the variable.

After that, take a for loop from 1 to user value both are included.

and multiply the value with previous value and it happen until the condition in the loop true.

for example:

i=1

fact = 1*1=1

i=2

fact =  1*2=2

i=3

fact= 2*3=6  and so on....

finally print the result.

Final answer:

A C++ program to calculate the factorial of a positive integer uses a loop to successively multiply the numbers from 1 up to the input number. The program checks that the user input is a positive integer since the factorial is only defined for non-negative integers.

Explanation:C++ Program to Calculate Factorial

To calculate the factorial of a number in C++, we can ask the user to input a positive integer and then calculate the factorial by multiplying all the integers from 1 up to the number provided. The factorial of a number n, written as n!, is the product of all positive integers less than or equal to n. Below is a simple C++ program that calculates the factorial:

#include
using namespace std;

int main() {
  unsigned int number;
  unsigned long long factorial = 1;

  cout << "Enter a positive integer: ";
  cin >> number;

  if (number < 0) {
      cout << "Factorial of a negative number doesn't exist.";
  } else {
      for(int i = 1; i <= number; ++i) {
          factorial *= i;
      }
      cout << number << "! = " << factorial << endl;
  }
  return 0;
}

The program uses a loop to repeatedly multiply the factorial variable by each number up to the input number. We use an unsigned long long for the factorial variable to handle potentially large numbers, although there is still a limit to how large a number this data type can store. The program also includes a basic check to ensure that a negative number is not input, as factorials are only defined for non-negative integers.

When developing e-business systems, an in-house solution usually requires a ____ for a company that must adapt quickly in a dynamic e-commerce environment.
Answer
smaller initial investment and provides more flexibility
smaller initial investment but provides less flexibility
greater initial investment but provides more flexibility
greater initial investment and provides less flexibility

Answers

Answer:

greater initial investment but provides more flexibility

Explanation:

Write a c++ program to compute a water andsewage bill. The inputis the number of gallons consumed. The bill is computed asfollows:

water costs .21dollars per gallon of water consumed

sewage service .01dollars per gallon of water consumed

Answers

Answer:

#include<iostream>

using namespace std;

//main function

int main(){

   //initialization

   float gallonConsume;

   //print the message

     cout<<"Enter the number of gallons consumed: ";

     cin>>gallonConsume;   //read the input

   float waterCost = 0.21 * gallonConsume;   //calculate the water cost

   cout<<"The water cost is: "<<waterCost<<endl;  //display

   float sewageService = 0.01 * gallonConsume;   //calculate the sewage service cost

   cout<<"The sewage service cost is: "<<sewageService<<endl;  //display

   return 0;

}

Explanation:

Include the library iostream for using the input/output instruction.

Create the main function and declare the variables.

then, print the message on the screen by using cout instruction.

the value enters by the user is read by cin instruction and store in the variable.

After that, calculate the water cost by using the formula:

[tex]Water\,cost = 0.21 * water\,consume[/tex]

then, display the output on the screen.

After that, calculate the sewage service cost by using the formula:

[tex]sewage\,service\,cost = 0.01*water\,consume[/tex]

finally, display the output on the screen.

The true or false questions.

Given the command: find /home -name 'f*' If there are matched files, then all the printed paths of the matched files will start with /home

Answers

Answer:

true

Explanation:

The command:

find /home -name 'f*'

will match all the files starting with the character 'f' which are present in the /home directory.

Hence, all the printed paths of the matched files will start with /home.

For example:

/home/funny.txt

/home/function.log

/home/free.py

The operation ____ is used to remove the top element from the stack.

A.
pop

B.
push

C.
peek

Answers

Answer:

pop

Explanation:

stack is a data structure perform the operation in specific order. The order stack follow is last in first out (LIFO).

push function is used to insert the element at the top of the stack.

peek is used to retrieve or fetch the element at the top.

pop is used to remove or delete the top element from the stack.

Therefore, the option A is correct.

What does it mean to catch an exception?

Answers

Answer:

An exception is an event, which occurs during the execution of a program, that disrupts the normal flow of the program's instructions. When an error occurs within a method, the method creates an object and hands it off to the runtime system. ... This block of code is called an exception handler.

What is the output of the following program segment?

int x = 0;

++x;

x++;

++x;

x++;

++x;

Answers

Answer:

5

Explanation:

The operator 'x++' is called the post increment operator, it is assign first and then increment.

The operator '++x' is called the pre increment operator, it is increment first  and then increment.

So, both are increment operator which increment the value by one.

initially the value of x is zero,

++x increase the value to 1 and than assign to x.

then, x++ it assign to x first then increment by 1 means x=2

and so on.....

Their are five increment operator are used. so, the result is 5.

If you're adding an image to your report, you'll be working on the Layout Tools _______ tab.

A. Page Setup
B. Arrange
C. Design
D. Format

Answers

Answer:

the answer is design tab

Answer:

design

Explanation:

Write the following method to display three numbers in increaseing order:

public ststic void displaySortedNumbers(
double num1, double num2, double num3)

Answers

//Assuming your code is in C#
using System;
using System.Collections.Generic;
public static void displatSortedNumbers(double num1, double num2, double num3){
List list1 = new List {num1,num2,num3};
foreach( int g in list1 )
{
// Display sorted list
Console.WriteLine(g);
}
}

What is the data rate of a DS0 signal?

Answers

Answer: 64 Kbps

Explanation:

When security issues are a special concern, companies want to take extra steps to make sure that transmissions can’t be intercepted or compromised. In these situations they will use a network that encrypts the packets before they are transferred over the network. This solution is called a(n) ___________________.

Answers

Answer:

VPN(virtual private network)

Explanation:

A VPN or Virtual Private Network enables you to establish a safe Internet connection to another network. You can use VPNs to access regional websites, shield your browsing activity from government Wi-Fi prying eyes, and more.

For security purposes organization uses different methodologies to secure their data. VPN encrypts the packets before they are transferred over network.

Unlike the climate of the other islands of Hawaii, ________Kona contains 54 different temperate zones.
that of
this is
these are
those that

Answers

Answer:

None

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

Unfortunately, none of these answers would be factually nor grammatically correct. For Starters Kona is not an island Kailua-kona is the capital town of the Big Island in Hawaii.

Regardless of that fact, none of the answers given would make the sentence make sense grammatically. The Only way for the sentence to make sense grammatically, the answer either needs to stay blank or be Kailua. Like so...

Unlike the climate of the other islands of Hawaii, Kailua Kona contains 54 different temperate zones.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

The sentence should be completed with 'that of,' making it read 'Unlike the climate of the other islands of Hawaii, that of Kona contains 54 different temperate zones.' Hawaii's diverse climates are heavily influenced by altitudinal variations and topographical features, leading to a range of climatic zones across its islands.

The correct completion for the sentence provided is that of. Hence, the complete sentence reads: Unlike the climate of the other islands of Hawaii, that of Kona contains 54 different temperate zones.

Hawaii is known for its diverse climate conditions. While most islands in the Pacific have a tropical type A climate, Hawaii has a variety of climatic zones due to its topography and altitudinal variation. For instance, Kauai, one of the Hawaiian Islands, is one of the wettest places on Earth, receiving more than 460 inches of rain per year. This high level of precipitation is due to the rain shadow effect caused by Mt. Wai'ale'ale. The windward side of this mountain receives substantial rainfall while the leeward side remains semi-desert due to the rain shadow.

Japan, another island group, also presents diverse climates. One of its islands, Hokkaido, features a type D climate and is known for snowfall that supports activities like downhill skiing. Japan's diverse climate is a result of its mountainous terrain, with active volcanoes like Mount Fuji influencing the regional climate conditions.

Write a value-returning function isVowel that returns the value true if a given character is a vowel and otherwisereturns false.

Answers

Answer: Following is the function isVowel written in python:-

def isVowel(check):#defining isVowel function with parameter check

#following are the nested if else if for checking that check is a vowel or not if yes returning True if not returning False.

   if check == "A" or check =="a":

       return True

   elif check == "E" or check =="e":

       return True

   elif check == "I" or check =="i":

       return True

   elif check == "O" or check =="o":

       return True

   elif check == "U" or check =="u":

       return True

   else:

       return False

Explanation:

In the function we are checking in each if or elif statement that check is a vowel or not if it is a vowel then returning True if not returning False.

Solve the following system of algebraic equations: Y = 1-x^2 and y = 1+x

Answers

Answer:

x=0;   x=1

Explanation:

The system presents a quadratic equation and a linear equation. Therefore, the result will have two solutions.

The first step is to match the two equations:

[tex]1+x=1-x^{2}[/tex]

Then we clear the equation by zeroing.

[tex]0=x^{2} +x+1-1[/tex]

Now we perform indicated operations

[tex]x^{2} +x=0[/tex]

We factor with the common factor method

x(x+1)=0

We equal each factor to zero and get the results

x=0

(x+1)=0

x=-1

The two values ​​that satisfy both equations are 0 and -1

Write a C++ program that stores information (name, gender, birthday, phone number, civil status, religion, college course, nationality) of a student in a structure and displays it on the screen.

Answers

#include
class Student
{
public:
Student(std::string name, std::string gender, std::string phonenumber, std::string civilstatus, std::string religion, std::string course, std::string nationality)
{
Student::name = name;
Student::gender = gender;
Student::phoneNumber = phonenumber;
Student::civilStatus = civilstatus;
Student::religion = religion;
Student::collegeCourse = course;
Student::nationality = nationality;
}
void displayOnScreen()
{
std::cout << "Name: " << name << std::endl
<< std::cout << "Gender: " << gender << std::endl
<< std::cout << "Phone Number: " << phoneNumber << std::endl
<< std::cout << "Civil Status: " << civilStatus << std::endl
<< std::cout << "Religion: " << religion << std::endl
<< std::cout << "College Course: " << collegeCourse << std::endl
<< std::cout << "Nationality: " << nationality << std::endl;
}
std::string name, gender, phoneNumber, civilStatus, religion, collegeCourse, nationality;
};
Other Questions
Who is the thirty ninth president of United States of America Suppose that a company will select 3 people from a collection of 15 applicants to serve as a regional manager, a branch manager, and an assistant to the branch manager. In how many ways can the selection be made? Explain how you got your answer. Which graph shows the line y-2 = 2(x + 2)?A/B/coA. Graph AB. Graph BC. Graph DD. Graph c Supposed you invested in $10,000, part at 6% annual interest and the rest at 9% annual interest. If you received a total of $684 in interest after one year, how much did you invest at each rate?Anyone got a way to remember how to set up these word problems, or any other Algebra-Pre/Calc word problems. It's been 20 years since I learned and taught it. And word problems have always been an issue for me. An ant can run an inch per second. How long will it take the same ant to run a foot? The first step in managing time effectively is to investigate The __________ circulation collects nutrient-rich venous blood draining from the digestive viscera. Steps for solving 3x + 18 = 54 are shown.Explain how Step 1 helps solve the equation.3x+18 = 543x + 18-18 = 54 -183x = 363x_3633X = 12Original equationStep 1Step 2Step 3Step 4) A. Adding 18 to both sides undoes the subtraction.OB. Adding 18 to both sides combines like terms.OC. Subtracting 18 from both sides isolates the variable term.OD. Subtracting 18 from both sides isolates the variable. Determine if the two figures are congruent and explain your answer. Kevins car requires 5 liters of diesel to cover 25 kilometers. How many liters of diesel will Kevin need if he has to cover 125 kilometers? What is the solution of 4.5x-100>125 which of the following recursive formulas represent the same arithmetic sequence as the explicit formula an=5+(n-1)2a. a1=5an=an-1+2b. a1=5an=(an-1+2)5c. a1=2an=an-1+5d. a1=2an=an-1*5 The term "response" as used in the National Response Framework includes: A. Actions of private sector entities responsible for critical infrastructure but not actions of public service agencies. B. Actions that relate to only to the emergency responders. C. Actions to save lives, protect property and the environment, stabilize communities, and meet basic human needs prior to an incident. D. Actions to save lives, protect property and the environment, stabilize communities, and meet basic human needs following an incident. Read this stanza from the poem Dreams, by Paul Laurence Dunbar.Which figure of speech is used in the bold line?***The waning wealth, the jilting jade***A.personificationB.onomatopoeiaC.metaphorD.alliteration According to John Holland's personality type theory, people who are down-to-earth, practical problem solvers, and physically strong, but have mediocre social skills, are best described as (A) conventional(B) enterprising(C) realistic(D) intellectual If a scalene triangle has its measures 4 m, 11 m and 8 m, find the largest angle.A. 129.8B. 90.0C. 34.0D. 16.2 Which of the following has a negative connotation? A. Frank lost a lot of weight. He looks really thin now. B. Frank lost a lot of weight. He looks really trim now. C. Frank lost a lot of weight. He looks really healthy now. D. Frank lost a lot of weight. He looks really skinny now. CompletarCompleta cada oracin con la forma correcta del verbo apropiado de la lista.word bank haber ir llegar querer resolver ser 1. No creo que el gobierno _______ el problema de la contaminacin rpidamente. 2. Es imposible que los senadores _______ a un acuerdo sobre la ley de la ecologa. 3. No estoy seguro de que ________ un centro de reciclaje por aqu. 4. Es posible que los hermanos Reyes _______ a estudiar ecologa en vez de filosofa. 5. El gobierno niega que la situacin ______ tan grave. 6. Es obvio que nadie _____ contaminar el medio ambiente A recent article in the paper claims that business ethics are at an all-time low. Reporting on a recent sample, the paper claims that 41% of all employees believe their company president possesses low ethical standards. Suppose 20 of a company's employees are randomly and independently sampled. Assuming the paper's claim is correct, find the probability that more than eight but fewer than 12 of the 20 sampled believe the company's president possesses low ethical standards. How can you use a defenition from somone else or from a different source (ex: google) without plagiarizing?