An operator is a symbol that tells the computer:

A. To shut down
B. What task to perform
C. To complete an equation
D. All of the above​

Answers

Answer 1

Answer: B

Explanation:

Answer 2

An operator is a symbol that tells the computer what task to perform. The correct option is B.

What is an operator?

In a business or organization, the person in charge of monitoring and managing computer systems, particularly mainframe computers, is known as a computer operator.

An operator in computer science is a character or characters that decide the course of action to be taken or factors to be taken.

Programmers utilise three different types of operators: arithmetic operators, relational operators, and logical operators. A computer is given instructions via operators, which are symbols.

Calculations in mathematics are made using operators. A property or variable can be given a value using assignment operators. Text, dates, systems, times, and numeric assignment operators are all possible.

Thus, the correct option is B.

For more details regarding an operator, visit:

https://brainly.com/question/29949119

#SPJ2


Related Questions

In this unit, you expanded your Python skills, and now you can really have some fun! In this lab, you are going to create a game that allows the user to play Rock, Paper, Scissors against the computer. If you aren’t familiar with this classic game, here’s how it works: two people (or a person and a computer!) each select either rock, paper, or scissors. The player who chooses the stronger object wins. Here is how the winner is determined:

Rock beats scissors because a rock can break scissors.
Paper beats rock because paper can cover a rock.
Scissors beats paper because scissors can cut paper.
Your program should do the following:

Randomly choose rock, paper, or scissors for the computer
Ask the user to choose rock, paper, or scissors
Compare the computer’s choice to the player’s choice
Announce whether the computer or the human won

Answers

Answer:

# import random module

import random

# Print multiline instruction

# performstring concatenation of string

print("Winning Rules of the Rock paper scissor game as follows: \n"

       +"Rock vs paper->paper wins \n"

       + "Rock vs scissor->Rock wins \n"

       +"paper vs scissor->scissor wins \n")

while True:

print("Enter choice \n 1 for Rock, \n 2 for paper, and \n 3 for scissor \n")

# take the input from user

choice = int(input("User turn: "))

# OR is the short-circuit operator

# if any one of the condition is true

# then it return True value

# looping until user enter invalid input

while choice > 3 or choice < 1:

 choice = int(input("enter valid input: "))

 

# initialize value of choice_name variable

# corresponding to the choice value

if choice == 1:

 choice_name = 'Rock'

elif choice == 2:

 choice_name = 'paper'

else:

 choice_name = 'scissor'

 

# print user choice

print("user choice is: " + choice_name)

print("\nNow its computer turn.......")

# Computer chooses randomly any number

# among 1 , 2 and 3. Using randint method

# of random module

comp_choice = random.randint(1, 3)

# looping until comp_choice value

# is equal to the choice value

while comp_choice == choice:

 comp_choice = random.randint(1, 3)

# initialize value of comp_choice_name

# variable corresponding to the choice value

if comp_choice == 1:

 comp_choice_name = 'Rock'

elif comp_choice == 2:

 comp_choice_name = 'paper'

else:

 comp_choice_name = 'scissor'

 

print("Computer choice is: " + comp_choice_name)

print(choice_name + " V/s " + comp_choice_name)

# condition for winning

if((choice == 1 and comp_choice == 2) or

(choice == 2 and comp_choice ==1 )):

 print("paper wins => ", end = "")

 result = "paper"

 

elif((choice == 1 and comp_choice == 3) or

 (choice == 3 and comp_choice == 1)):

 print("Rock wins =>", end = "")

 result = "Rock"

else:

 print("scissor wins =>", end = "")

 result = "scissor"

# Printing either user or computer wins

if result == choice_name:

 print("<== User wins ==>")

else:

 print("<== Computer wins ==>")

 

print("Do you want to play again? (Y/N)")

ans = input()

# if user input n or N then condition is True

if ans == 'n' or ans == 'N':

 break

# after coming out of the while loop

# we print thanks for playing

print("\nThanks for playing")

Explanation:

https://www.geeksforgeeks.org/python-program-implement-rock-paper-scissor-game/

Which idea generation method involves keeping ideas in sight and well-organized?
Mind Mapping
Synectics
Brainstorming
Design Boards

Answers

I believe that it would be mind mapping

Answer:

um i pink A, and C cause you can look in your mind to find idea if mind mapping means by that and you can brainstorm for other idea later for other thing that you need idea for that my answer if it not help you then i am sorry if did plz mark me brainliest if you can

Explanation:

Write a small program that takes in two numbers from the user. Using an if statement and an else statement, compare them and tell the user which is the bigger number. Also, consider what to output if the numbers are the same.

Test your program in REPL.it, and then copy it to your Coding Log.

(If you’re up for an extra challenge, try extending the program to accept three numbers and find the biggest number!)

And only give me a good answer not some random letters plz. ty

Answers

Answer:

4. Conditionals

4.1. The modulus operator

The modulus operator works on integers (and integer expressions) and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators:

>>> quotient = 7 / 3

>>> print quotient

2

>>> remainder = 7 % 3

>>> print remainder

1

So 7 divided by 3 is 2 with 1 left over.

The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y.

Also, you can extract the right-most digit or digits from a number. For example, x % 10 yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.

4.2. Boolean values and expressions

The Python type for storing true and false values is called bool, named after the British mathematician, George Boole. George Boole created Boolean algebra, which is the basis of all modern computer arithmetic.

There are only two boolean values: True and False. Capitalization is important, since true and false are not boolean values.

>>> type(True)

<type 'bool'>

>>> type(true)

Traceback (most recent call last):

 File "<stdin>", line 1, in <module>

NameError: name 'true' is not defined

A boolean expression is an expression that evaluates to a boolean value. The operator == compares two values and produces a boolean value:

>>> 5 == 5

True

>>> 5 == 6

False

In the first statement, the two operands are equal, so the expression evaluates to True; in the second statement, 5 is not equal to 6, so we get False.

The == operator is one of the comparison operators; the others are:

x != y               # x is not equal to y

x > y                # x is greater than y

x < y                # x is less than y

x >= y               # x is greater than or equal to y

x <= y               # x is less than or equal to y

Although these operations are probably familiar to you, the Python symbols are different from the mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal sign (==). Remember that = is an assignment operator and == is a comparison operator. Also, there is no such thing as =< or =>.

4.3. Logical operators

There are three logical operators: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, x > 0 and x < 10 is true only if x is greater than 0 and less than 10.

n % 2 == 0 or n % 3 == 0 is true if either of the conditions is true, that is, if the number is divisible by 2 or 3.

Finally, the not operator negates a boolean expression, so not(x > y) is true if (x > y) is false, that is, if x is less than or equal to y.

4.4. Conditional execution

In order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. Conditional statements give us this ability. The simplest form is the ** if statement**:

if x > 0:

   print "x is positive"

The boolean expression after the if statement is called the condition. If it is true, then the indented statement gets executed. If not, nothing happens.

The syntax for an if statement looks like this:

if BOOLEAN EXPRESSION:

   STATEMENTS

As with the function definition from last chapter and other compound statements, the if statement consists of a header and a body. The header begins with the keyword if followed by a boolean expression and ends with a colon (:).

The indented statements that follow are called a block. The first unindented statement marks the end of the block. A statement block inside a compound statement is called the body of the statement.

Each of the statements inside the body are executed in order if the boolean expression evaluates to True. The entire block is skipped if the boolean expression evaluates to False.

There is no limit on the number of statements that can appear in the body of an if statement, but there has to be at least one. Occasionally, it is useful to have a body with no statements (usually as a place keeper for code you haven’t written yet). In that case, you can use the pass statement, which does nothing.

if True:          # This is always true

   pass          # so this is always executed, but it does nothing

Write a summary of five things that you learned about CSS. Do not copy and paste the information. Summarize each point in your own words. Also, try the exercise to expand your understanding.

Answers

Answer:

We don't know what you leaned.

But, I'll do it anyway.

1. Getting id's from html content.

2. Getting classes from html content.

3. changing text fonts.

4. animation.

5. Getting all of one element type from html content.

Explanation:

Start from here.

Answer:

dude, please do it yourself. you are technally cheating, sorry

Explanation:

Other Questions
True or false 19. Closed systems rely on feedback from outside of the system to operate. Butler Corporation is considering the purchase of new equipment costing $84,000. The projected annual after-tax net income from the equipment is $3,000, after deducting $28,000 for depreciation. The revenue is to be received at the end of each year. The machine has a useful life of 3 years and no salvage value. Butler requires a 9% return on its investments. The present value of an annuity of $1 for different periods follows:Periods11 Percent1 0.90092 1.71253 2.44374 3.1024What is the net present value of the machine?a. $(4,502).b. $48,000.c. $5,400.d. $43,498.e. $39,099. Fill in the blanks with the correct forms of ser.Ella____trabajadora. If electric fields of two charged objects form closed pattern of field lines, the objects are charged? What inverse operation is used to solve the equation?2x=10Addition Property: add 2 to both sidesDivision Property: divide both sides by 2Multiplication Property: multiply both sides by 2Subtraction Property: subtract 2 from both sides 1.3 Identify the layer of the earth that is in a semi-molten phase can someone please help me :)Which of the following statements are true (there may be more than one)A.Angles 1 and 2 are adjacent anglesB.Angels 2 and 4 are adjacent anglesC.Angles 2 and 3 are vertical anglesD.Angles 1 and 3 are vertical angles Calculate the distance of line segment AB. Read this excerpt from the text "Not a Dove, But No Longer a Hawk."There were many disappointments those first two years, but when I left Vietnam in 1964, I was still, to use thecurrent parlance, a hawk. I returned to Saigon in 1965 for another year. Now I have left again, and much haschanged. There were 17,000 American servicemen in Vietnam at the time of my first departure and there arenow 317,000 and I, while not a dove, am no longer a hawk....Based on this excerpt, Neil Sheehan would most likely agree thatO initially he believed in the war, but over time he questioned America's involvement.O the use of military force is acceptable when facing communist-run countries.O those who serve in the military should follow the orders of the president without question.O the destructive consequences of war far outweigh any possible benefits. choose all of the countries that can be found in South and East Asia (seen here) *PLEASE ANSWER!!!!*What aspect of The Great Gatsby most reflects the attitudes of the "Lost Generation" after World War I?a.) the cynicism of the charactersb.) the obsession with wealthc.) the idealism of the characters 7x+8y= 8Slope Y intercept PLEASE HELP ASAP WILL GIVE BRAINLY What is the median of the data set represented by the dot plot? 24 + _ = 120 * 3 what is the answer what senators were involved in the creation of the compromise of 1850? Hi can someone paraphrase this or make it sound better? (30 points)George orwells Shooting an Elephant which was written in 1936 posits that when the white man turns tyrant it is his own freedom that he destroys''7 Orwell supports his statement through an overarching allegory to colonialism, ambivalent diction, and extended metaphor of one's free will and power. His purpose is to show the complex nature of imperialism and the negative impact it has, not on the subjected peoples, but on the imperialists as well in order to reveal to the audience that it is an institution of suffering for everyone involved. He conveys his point by explaining the feeling of the pressure of being forced to do what they want him to do despite the fact that it goes against his moral judgement. He undergoes the feeling of being in a position of power and must therefore do what the people want him to do and care for what the other people think of him. Orwells casual and colloquial diction suggests his audience was intended to be broad and varies in order to ensure the reach of his social commentary, A train travels a total of 67 km at a constant speed of 110 km/h. How long is its journey? Give your answer in minutes and seconds, to the nearest second. 46. Yocon mi hermano al acuario el domingo.*fuefuifuistefueron Typically, high inflation is a sign of Mr. Moore planted a tree in his backyard. His tree grew 3 1/3 feet over five years. if his tree grew at the same rate each year, how much did the tree grow per year.A. 1/5 footB. 1/3 foot C. 3/5 footD. 2/3 foot