What is another name for a switch A.Number system B.Variable C.Logic Gate D.Boolean

Answers

Answer 1

Answer:

logic gate

Explanation:

took the test lol


Related Questions

1. The jargon for navigating on the Internet is called: A. surfing B. selecting C. clicking D. analyzing​

Answers

Answer:

A. surfing

Explanation:

Browsing the internet is known as surfing the internet.

You should move around and take a rest for 30 minutes every 5 minutes.

True Or False​

Answers

Answer:

obviously true.........

A field name can be up to 64 characters long

Answers

Answer:

Explanation:

cool ..........................,...............................

Question
What protocol is used to discover the hardware address of a node with a certain IP address?

Answers

Answer:

ARP is a simple query–response packet protocol used to match workstations hardware addresses to IP addresses. In other words, ARP is the protocol used to identify nodes in a LAN. ARP is described in RFC 826

phân tích cạnh tranh của cocacola và pepsi

Answers

I don’t understand please speak English

What kind of loop repeats until something else (determined by the program) happens?
iterative number loop
condition-controlled loop
count-controlled loop
forever loop

Answers

Answer:

The Condition-controlled loop

Explanation: Because its called a Condition and it does not stop untill something happens thats why its called "condition".

Answer: It's Condition-controlled loop

Explanation: The meaning of condition-controlled loop is Blocks will keep repeating until a condition is satisfed, Also beacuse I already did the quiz.

Hey all! How would you write write this code?

Write a C++ program using variables and loops in order to implement the Hi-Low strategy of card counting and keep a running count. The Hi-Low strategy of card counting assigns one of three values to a card, based on its face value. The table below breaks down these values. FACE VALUE ASSIGNEDVALUE 2, 3, 4, 5, 6 +1 7, 8, 9 0 10, J, Q, K, A -1 In a typical game of Blackjack, a card counter will start with a fresh deck and a count of 0. Each time a card is played, its assigned value is added (or subtracted) from what is known as the running count. The running count rolls over from hand to hand. For instance, if the first 7 cards of a game were: Queen, Jack, 4, 6, 7, Jack, 9, then the running count would be (0) -1 -1 + 1 + 1 + 0 –1 + 0 =-1

Answers

The program is an illustration of loops.

Loops are used to perform repetitive actions.

The program in C++ where comments are used to explain each line, is as follows:

#include <string>

#include <iostream>

using namespace std;

int main(){

   //This declares all variables

   int n, count = 0; string k;

   //This gets input for the number of cards

   cin>>n;

   //The following is repeated n-times

   for(int i = 0;i <n;i++){

       //This gets input for the current card value

       cin>>k;

       //If the card is a digit

       if(isdigit(k[0])){

           //This checks if the card number is between 2 and 6 (inclusive)

           if(stoi(k) >= 2 && stoi(k) <= 6){

               //If yes the face value is increased by 1

               count+=1;

           }

           //This checks if the card number is 10

           else if(stoi(k) == 10){

               //If yes the face value is decreased by 1

               count-=1;

           }

       }

        //This checks if the card number is J, Q, K or A

       else if (k == "J" || k == "Q" || k == "K" || k == "A") {

           //If yes the face value is decreased by 1

           count-=1;

       }

   }

   //This prints the face value

   cout<<count;

   return 0;

}

At the end of the program, the face value is printed.

Read more about similar programs at:

https://brainly.com/question/24578223



does industry-recognized certifications (microsoft office suite) boost your resume and
increase your earning potential?

Answers

Answer:Having Microsoft Office training can make you more productive, confident, and satisfied with your job. ... Productivity is crucial to success in the administrative assisting field, and your employers will thank you for it. 3. Industry-recognized certification will boost your resume and increase your earning potential.

Explanation: i no it

Please answer the following question in Verilog.

To test our functions we will generate a 3-bit vector that counts up by one every cycle which we will use as the inputs to the decoder. The decoder output will then be fed into the inputs of the encoder to produce an inverted version of the original 3-bit test vector. For every input vector you should toggle the enable signal to both the encoder and decoder function which can be easily done by using the clock waveform used to determine when to increment the input vector as the enable signal as well.

Answers

Answer:

345678909 my number

Explanation:

what are the components of computer system??

Answers

Answer:

1. A motherboard.

2. A Central Processing Unit (CPU)

3. A Graphics Processing Unit (GPU), also known as a video card.

4. Random Access Memory (RAM), also known as volatile memory.

5. Storage: Solid State Drive (SSD) or Hard Disk Drive (HDD)

(Please give me brainliest)

Complete the following sentences by either filling in the blank or writing out the rest of the sentence (when there is a … ):

The internet is made up of _________ networks that all connect together to make a ____________ network.

The job of a router on the internet is to…


Clients allow people to…


Servers store _____________________ and send those to _____________ over the internet.


The internet is physically connected across the world using _______________


Computers break up information, like photos and emails, into ________________



The ___________ protocol tells computers how to break up the information and orders it.


The ________________ protocol tells the packets where they are going and where they are coming from.


The packets get to their destination by…


When the packets get to their destination, the __________ protocol…



Computers get the _______________ of servers by asking the ______________



Computers use the _____________ protocol to display a webpage.

Answers

Answer

hundreds,  massive, connect to the internet gigabytes, people, computers,

bytes, TCP/IP, TCP, internet, TCP, answers, questions, HTTP

Explanation:

Which of the following expressions in Java is equal to 4?

3% 7
7 % 3
17 % 7
11 % 7
28 % 7

Answers

Answer:

3% 7

Explanation:

because 7 because seven ate nine and three was lonely so seven decided to also eat three and became a lesser number somehow because three apparently was not as big as the number 9 so maybe eating three caused him to go down to 4

The expression "11 % 7" in Java is equal to 4.

The "%" operator calculates the remainder of a division operation.

In Java, the "%" operator is used to calculate the remainder of a division operation.

So, let's evaluate each expression and see which ones equal 4:

3 % 7 = 3 (remainder of dividing 3 by 7)

7 % 3 = 1 (remainder of dividing 7 by 3)

17 % 7 = 3 (remainder of dividing 17 by 7)

11 % 7 = 4 (remainder of dividing 11 by 7)

28 % 7 = 0 (remainder of dividing 28 by 7)

Based on these evaluations, the expression "11 % 7" is equal to 4.

To learn more about programming visit:

https://brainly.com/question/14368396

#SPJ3

When you use a library in your code, how do you give attribution?

Answers

When you use a library in your code, you give attribution: by writing the source, title, author and license in your code.

Attribution can be defined as a process which typically involves the citation (reference) of an original source of information such as a library, quote, paraphrase or summary, especially by using the author's full name, source, and job title (position) as the case may be.

In software development, you give attribution when you use a library in your code by writing the following:

The source in your code.The title in your code.The author in your code.The license in your code.

Read more: https://brainly.com/question/21172316

Language is Python
9.9 LAB: Count input length without spaces, periods, exclamation points, or commas

Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas.

Ex: If the input is:

Listen, Mr. Jones, calm down.
the output is:

21

Answers

Answer:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

Explanation:

i answered this same exact question the other day.

line by line, the first line asks for input with a prompt.

the second line replaces spaces, the next one replaces periods, the next exclamation marks, the next commas. then the last line prints the total number of characters

In this exercise we have to use the computer language knowledge in python to write the code as:

the code is in the attached image.

In a more easy way we have that the code will be:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

See more about python at brainly.com/question/26104476

IT professionals ensure servers connected to the network operate properly. (2 points) True False

Answers

Answer:

True

Explanation:

Thats one of their most important jobs

Write a program that can add, Subtract, multiply and divide entered numbers.

Answers

In Python:

def add(x, y):

   return x + y

def subtract(x, y):

   return x - y

def multiply(x, y):

   return x * y

def divide(x, y):

  return x / y

ctivity 2: irections: Convert the given value to unit asked. 1. 1 tb 2. 500 mb 3. 200 kb 4. 1,000,000 bytes 5. 500 gb mb gb byte gb mb

help please​

Answers

Answer:elab

Explanation:

ACTIVITY NI MATCHING TYPE Directions: Match Column A with Column B. Write the letter of the correct answer on the space provided before the number a. Trion your nails b. visits the dentist c. scrub your hands with soap and water d. wear deodorant taking a bath 18111411 hely wear suitable clothes at work g. avoidis open wounds while working with food h. Regularly out your hair. 1. Use a seperate towel or cloth wiping hands. . keep sanitizer. 10.​

Answers

Answer:

Mark me a brainless plss i need that i am blink plss

What are the data type(s) will be used to declare the variable(s) needed to
create the algorithm?*

1.. integer only
2.. real only
3..integer and real
4..real and string

Answers

The three primitive data types used in this course are int (integer numbers), double (decimal numbers), and boolean (true or false). Each variable has associated memory that is used to hold its value.

Identify the following verb by number and person by checking on the appropriate boxes.

SHE WANTS!!


second person
singular
plural
same form for both singular and plural
third person
first person PLEASE HELP!!!!!! LAUNGUAGE ARTS

Answers

second person ig Imao yeah

Answer:

Singular and third person

Explanation:

Second person: this answer is not correct as second person refers to pronouns such as “you, yourself” like in a recipe.

Singular: this is correct as a singular verb is when there is only one subject. You can also tell it’s a singular verb as the present tense ends with a “s”.

Plural: this is not plural because there is only one subject. Plus the present tense of the verb ends with an s so it’s not a plural verb. Plural verb’s present tense never ends with an s.

Third person: this is correct because the subject of the sentence is someone else. Third person pronouns include: “her, she, he, him, they, then” basically, third person is when you talk about someone else.

First person: this answer is not correct because first person refers to one’s self. So first person pronouns are: “I, me, myself”

A reference is _____.

Answers

Answer:

a written or spoken comment that mentions somebody/something

the action of mentioning or alluding to something.

What is a segmentation?

Answers

Answer:

Segmentation means to divide the marketplace into parts, or segments, which are definable, accessible, actionable, and profitable

Which of the following factors is most likely to result in low shipping and handling costs? A higher than average hourly pay rate for material handlers A rare but high-in-demand packaging material A promotion for free shipping on orders over a predetermined order total All of the above​

Answers

Answer: A higher than average hourly pay rate for material handlers

Explanation:

Shipping and handling cost describes costs related to the total cost of an ordered item which are included in the fees used to deliver the item to the buyer. Hence, the correct option is C

Shipping and handling cost usually depend on the size of the item, the buyer's location and fragility of the item purchased.

From the options given, handling and shipping fee may be reduced as a result of free promotional shipping on orders.

Handler and drivers who are paid above average will result in increased shipping fee and rare in-demand items won't come cheap either.

Hence, low shipping fee will most likely be as a result of promotion for free shipping on orders over a predetermined order total.

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

List the steps you would take to create folders/directories in different operating system environments.

Answers

In Linux we use the terminal to create files and folders.

To create a folder:

1. Open a terminal

2. Go to a directory where you want to create the folder

3. Use the change directory command to go to the directory.

4. Use the mkdir command to make a folder

To create a file:

1. Open a terminal

2. Go to a directory where you want to create a file.

3. use the touch command followed by the filename.

Example to create a directory:

mkdir foldername

Example to create a file:

touch file.txt

Answer:

Various operating systems have different ways of creating folders or directories. Here are steps to create folders or directories in some of the most common operating systems.

Windows  

You can create a new folder in Windows by following the two different ways stated below.

These are the steps for creating a new folder through using the File menu.

Open the location where you want to create the new folder.

Then, select the File menu and click New.

Finally, select the Folder option.

These are the steps to create a folder using the right-click method.

Open any location where you want to save your new folder.

Right-click on any blank area of the screen.

This opens a menu. Select New from the menu.

Lastly, from the menu that opens after you select New, and click Folder.

MS-DOS

These are the steps to create directories in MS-DOS.

Click the Start menu.

Click All Programs and then select on Accessories.

Then, select Command Prompt.

Navigate to the location you want to save your new folder. For example, if you want to open the C drive, the command will be: C:

To create a new directory, type mkdir followed by the folder name of your choice. For example, if I want a folder named projects, I will enter the command, “mkdir projects”.

To create multiple new directories in the newly created directed directory, you can use the md MS-DOS command. For example, if you want to make sub-directories named project1, project2, and project three, your command will be md project1 project2 project3.

Mac OS X

There are three ways to create a new folder in the MAC OS X

These are the steps for creating a new folder through using the File menu.

Open any location where you want to save your new folder.

Afterwards, select the File menu and click New Folder

These are the steps to create a folder using the right-click method.

Open any location where you want to save your new folder.

Right-click on any blank area of the screen.

This option opens the folder menu. Select New Folder from the menu.

These are the steps to create directories in Terminal.

Open the Utilities folder. Start the Terminal program.

Navigate to the location where you want to save your new folder.

To create a new directory, type mkdir followed by the folder name of your choice. For example, if I want a folder named projects, I will enter the command, “mkdir projects”.

To create multiple new directories in the newly created directed directory, you can use the -p Terminal command. For example, if you want to make sub-directories named project1, project2, and project three, your command will be -p project1/project2/project3.

Linux

There two ways of creating a new folder in Linux.

These are the steps for creating a new folder using the right-click method.

First, open the file manager.

Then, proceed to the location where you want to save your new folder.

Next, right-click on a blank spot.

Finally, select Create New Folder from the drop down menu.

These are the steps for creating a new folder using Terminal.

Open Terminal by using the Ctrl+Alt+T combination of keys.

To create a new directory, type mkdir followed by the folder name of your choice. For example, if I want a folder named projects, I will enter the command, “mkdir projects”.

To create multiple new directories in the newly created directed directory, you can use the -p Terminal command. For example, if you want to make sub-directories named project1, project2, and project three, your command will be -p project1/project2/project3.

Explanation:

for plato

Give short introduction of profession and make a list of its types. ​

Answers

are you asking for a list of professional jobs or?…..

What is printed when the following code has been executed?
int x = 15;
int y = 4;
System.out.println((2 * x + y) % x);
15
4
34
2
19

Answers

Hey it is 15 hope this helps

explain how communication in fuses management efficiency​

Answers

Explanation:

Effective communication is pivotal in increasing productivity because it directly influences the behavior of the staff and the way they perform. ... That is why it is essential that you practice communicating with your staff. It will improve understanding and, in the result, will elevate productivity and efficiency.

In which of these images would lines become an evaluating factor?

Answers

Answer: The fish?

Explanation:

Answer:

birds in flight  and railroad tracks

Explanation:

i got it right

CPU is also called RAM.
True or false.​

Answers

Answer:

False

Explanation:

RAM works in conjunction with the central processing unit (CPU). If RAM is the temporary memory, you can think of the CPU as the brain of the computer. The CPU chip retrieves data from the RAM

FALSE ...

BECAUSE RAM IS A MEMORY AND CPU IS A UNIT OF COMPUTER THAT'S WHY IT IS FALSE

In order to get the maximum functionality out of a device that is plugged in, a user should download the specific ___ for that device.

Answers

I think the answer they are looking for is drivers. You need to download specific drivers for the device to function to its max potential
the answer to that question is Drivers
Other Questions
who did the cat in the hat invite into the childrens house? The String otherObjects() method relies on the ____________.a) name.indexOf() methodb) name.equals() methodc) name.compareTo() methodd) name.length() Please help I been getting bots lol I need help asap Which might be aAfter reading the passage about acupuncture, identify which statement supports theclaim that acupuncture relieves pain. Question 14 (1 point) Canada needs immigration to support its low fertility rate due to an aging population among other factors.Question 14 options: A) True B) False HELPPPPPP !!!! You are creating your own real-world problem or word problem using Pythagorean Theorem. You create the problem and solve it. Use what you find to help you create your own problem. It does not have to be a really hard problem. Hello, I'm in 7th grade! Will someone help me with this question? (the question is down below!) 5. He was sure that he had been ___ many times. a) here b) there 6. Dad said wed go to the beach later ___a) that day b) today A bowling alley charges a flat fee to rent shoes. There is an additional fee for each game played. The function y=2.5x+3 represents the cost y of bowling x games. Interpret the parameters of the function.represents the shoe rental charge.represents the price per game. Mientras jugabas futbol con unusual amigos recibiste algunas heridas. Instrucciones: En 5 oraciones en espanol, describele tus heridas al doctor. Utiliza el vocabulario, los adjetivos y adverbios de esta unidad. Asegurate de incluir estos detalles: una descripcion de 3-4 partes del cuerpo que tienes lastimadas y lo que NO puedes hacer a causa de tus heridas. ( Will Mark Brainliest). A circle has an area of 256 square inches. If the radius of the circle is multiplied by 4, what will be the area of the new circle formed.*First correct answer gets Brainliest* Entre las personas , la practica de estilos de vida denominados saludables que consecuencias tiene sobre su metabolismo? A = {1, 3, 5, 7, 9}B = {2, 4, 6, 8, 10}C = {1, 5, 6, 7, 9}A (B C) = could a nuecleus of more than one proton but no neutron exsist? explain suppose that . what is the average rate of change of over the interval to ? How was the civilization of Sumer organized?A:into roving bands of hunter-gatherersB:into small temporary villagesC:into separate city-statesD:into one central city and surrounding farmsPLS ANWER ASAPPP!!!!!!! A group of scientists is studying a certain species of mouse. Previous genetic analysis has shown that fur color in this species is controlled by a single gene that has two alleles: a dominant allele (FF) that is associated with dark fur, and a recessive allele (ff) that is associated with light fur. The scientists collected data about a population of these mice to help determine the population's fur color allele frequencies. They found that out of 952 mice in the population, 238 mice had light fur. Assuming that the population is in Hardy-Weinberg equilibrium, which of the following is the number of mice in the population that have the genotype FfF, f?50238476952 I don't understand this!!! rearrange the following words success /a good/ best road/ education/is the/ to / in life Desperate, Will Mark Brainllest and Give Thanks for Correct AnswerWhat was James Montgomery Flaggs input towards the war?