Select the correct technical term for each definition by using the drop-down menus.
A keyboard, mouse, and microphone are examples of
А
Mis an input device used to display video for video conferencing,
A
is an input device that responds to finger touch.
DONEN

Answers

Answer 1

The answer response are:

A keyboard, mouse, and microphone are examples of input devices.A display device is an output device used to display video for video conferencing.A touchpad is an input device that responds to finger touch.

What are the input devices?

Input devices are devices that allow users to input information into a computer, such as a keyboard, mouse, or microphone.

A display device is an output device that is used to present information in visual form, such as a computer screen or television screen. Display devices are used for video conferencing to show visual information to participants.

In all, a keyboard, mouse, and microphone are examples of input devices, a display device is used for output and video conferencing, and a touchpad is a type of input device that responds to finger touch.

Learn more about input devices from

https://brainly.com/question/12081537

#SPJ1


Related Questions

Which search strategy explores nodes from the initial state as well as the goal state?
OA. uniform-cost search
OB.
breadth-first search
OC. depth-first search
OD.
bidirectional search

Answers

The search strategy explores nodes from the initial state as well as the goal state is bidirectional search.

What is the bidirectional search?

This is known to be a type of search that is used when the initial and goal states are found in a problem.

Here, we often search forward and also backwards from the first  state and the goal state, we often Stop when they meet the middle and it tend to be faster than unidirectional search.

Learn more about search strategy  from

https://brainly.com/question/10055344

riddle


what day of the week does not end in y

Answers

Answer:

lol is it tomorrow

Explanation:

To enable a single hard drive to store more than one operating system, it would need to be ________.

Answers

Answer:My guess would be disk partitioned

Explanation:

because you are basically dividing into separate filesystems. When operating two OS when call it dual booting.

Why is my iphone not notifying me when i receive a text.

Answers

Answer:

It's probably on sleep mode.Notifications are off.Something was altered in the settings.Your phone is updating.If none of these are true, try talking to tech support.

Answer:

it depends on the app you are talking about if its something else thats not imessages then check if you havent already and see if the notifications are off and turn them on and

if its on imessages then go to settings and then click on the notifications and click messages and then after click the ensure allow notifications to make it green

Explanation:

________ involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank. Group of answer choices Adware Spyware Phishing Spam Electronic monitoring

Answers

Answer:

Phishing involves tricking a person into entering sensitive personal or financial information into a form on a website or in an e-mail, typically by convincing the person that she is dealing with a site she normally interacts with, such as her bank.

Explanation:

Adware - When software is installed without consent, and made to show disruptive pop-ups and ads.

Spyware - Records keystrokes, camera and microphone without consent. Can also track activity.

Spam - When the same message is posted several times.

It is clearly not any of these, so it must be Phishing.

- Educator

Identify the part of the information processing cycle described by each of the items below. A student types text into a word processing program. The computer checks and compares all words entered to find misspellings. > The computer shows possible misspellings on the screen. You save the revised document to the hard disk. < CDs and DVDs are examples of DONE 4 of 7​

Answers

the answers are:

- input

- processing

- output

- storage

- storage

Answer:

- input

- processing

- output

- storage

- storage

Explanation:

Which of the following situations is most likely to cause issues arising from the digital divide?
A. A state makes voter registration forms available only by visiting a government website
B. Two internet-connected devices located in different countries and thousands of miles apart attempt to communicate with one another
C. Packets sent from one router to another begin arriving in a different order than they were sent
D. A smartphone attempts to communicate over the Internet with another type of device, like a tablet or laptop

Answers

Answer:

A

Explanation:

Saw it on another brainly

Which statement regarding socializers is true?

Answers

Answer:

The answer is: they are comparable to suit of hearts

Explanation:

The answer is: they are comparable to suit of hearts

In a _________ programming language the data type for a variable will not change after it has been declared.

Answers

Answer: Your answer to your question is b.strongly typed

Hope this helps!

A fair test has many variables.

A.
True

B.
False

Answers

Answer:

A. true (unless directly referencing the independent variable)

Explanation:

A fair test usually has a dependent variable, an independent variable, and a controlled variable. Usually you change the independent variable and see how the dependent variable reacts. Controlled variables are variables that don't get changed at all.

If you want to do a fair test, then you usually only change one thing at a time, which would then be the independent variable. If you had multiple independent variables (things that you change), the results might be warped and you couldn't clearly see how changing something affected the dependent variable.

Which type of protocol provides a way to transfer files from one computer to another over any tcp/ip network, such as a lan or the internet?.

Answers

Answer:

FTP (File Transfer Protocol) is a network protocol for transmitting files between computers over Transmission Control Protocol/Internet Protocol (TCP/IP) connections. Within the TCP/IP suite, FTP is considered an application layer protocol.

Explanation:

hope it helps you mark me as brainlist and follow me

why are wiki's not secure​

Answers

Wikipedia is not a reliable source for citations elsewhere on Wikipedia. Because, as a user-generated source, it can be edited by anyone at any time, any information it contains at a particular time could be vandalism

size = input("Enter your shoe size: ") size = int(size) if size > 12: print(str(size) + " is too high.") elif size < 6: print(str(size) + " is too low.") else: print(str(size) + " is in stock.") What is the output from running the above code if the user enters ten?

Answers

Answer:

It will print that the shoe size is in stock when the user prints 10, too high when the user enters 12, and anything less than 6 would be too low. It's a python program describing how basic input data is interpreted.

In the video game Animal Crossing: New Horizons, villagers are organized by Personality and Hobby.


The 8 Personalities are:


Normal

Lazy

Sisterly

Snooty

Cranky

Jock

Peppy

Smug


The 6 Hobbies are:


Education

Fashion

Fitness

Music

Nature

Playing


Create a program that allows the user to create their own Animal Crossing villager. The user should be able to enter a name, after which the program will choose a random Hobby and Personality for the villager:


"Please enter a Villager Name:

>> Betsy

Betsy is Snooty and into Nature"


The program should store both the Hobbies and Personalities in lists, and when creating a villager it should randomly choose from each list for the personality.



Requirements:

· Both Personalities and Hobbies must be stored in lists

· You must generate a different random number to determine the hobby and personality (that is, don't generate 1 random number and use it for both lists, as that prevents many combinations)

· In randomizing, you should make sure that all combinations are possible (that is, make sure you don't accidentally leave out a personality or hobby from random generation)

· The program shouldn't crash

Answers

The video game program is an illustration of randomization and lists

Randomization involves generating random numbers or selecting random optionsLists are variables that hold multiple values

The video game program

The video game program written in Python, where comments are used to explain each action is as follows:

#This imports the random package

import random

#This creates a list for personalities

Personality = ["Normal","Lazy","Sisterly","Snooty","Cranky","Jock","Peppy","Smug"]

#This creates a list for hobbies

Hobbies = ["Education","Fashion","Fitness","Music","Nature","Playing"]

#This gets input for name

name = input("Please enter a Villager Name: ")

#This generates a random number for personality

personalityNum = random.randint(0, 7)

#This generates a random number for hobbies

hobbiesNum = random.randint(0, 5)

#This prints the the required output

print(name,"is",Personality[personalityNum],"and into",Hobbies[hobbiesNum])

Read more about Python programs at:

https://brainly.com/question/16397886

Can cross browsers be tracked or no? I'm not sure because my regular browser on my pc got tracked by a rando so I'm installing a Cross browser but I don't know if it can be tracked.

Answers

Researchers have developed a way to track a user across different browsers on the same machine by querying the installed applications on the device. Certain applications, when installed, will create custom URL schemes that the browser can use to launch a URL in a specific application.

Word processing software programs can run on smartphones.
True
Or
False

Answers

the answer is false because you can only get word on pc

Select the correct answer.
John recently worked on a project about various programming languages, He learned that though procedural language programs are useful,
they have disadvantages too. What is a disadvantage of programs written in procedural languages?
OA. Programs do not represent data complexity.
OB. Programs take more time to execute.
OC. Programs are prone to security threats.
OD. Programs do not interface with multiple platforms,

Answers

OA. programs do not represent data-rate to xomolemrixjf complexity

How many total numbers can be represented with an 8-bit binary system

Answers

Answer:

256

Explanation:

2^8 = 256, i.e. 2 times 2 times 2 times ... etc.

(1) Output a menu of automotive services and the corresponding cost of each service. (2 pts)Ex:Davy's auto shop servicesOil change -- $35Tire rotation -- $19Car wash -- $7Car wax -- $12(2) Prompt the user for two services. Each service type is composed of two strings. (2 pts)Ex:Select first service: Oil changeSelect second service: Car wax(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)Davy's auto shop invoiceService 1: Oil change, $35Service 2: Car wax, $12Total: $47(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)Ex:Select first service: Tire rotationSelect second service: -Davy's auto shop invoiceService 1: Tire rotation, $19Service 2: No serviceTotal: $19**THIS MUST BE IN THE C LANGUAGE**

Answers

Answer:

Follows are the code to this question:

#include <stdio.h>//header file

#include <string.h>//header file

int main()//main method

{

char f_service[100], s_service[100];//defining character array

int total;//defining integer variable

do

{

   total = 0;//assign value in total variable

   printf("Davy's auto shop services\n");//print message

   printf("Oil change -------- $35\n");//print message

   printf("Tire rotation ------ $19\n");//print message

   printf("Car wash ---------- $7\n");//print message

   printf("Car wax ----------- $12\n");//print message

   printf("Enter first service: \n");//print message

   fgets(f_service, 100, stdin);//use get function for input value

   f_service[strlen(f_service) - 1] = '\0';//use length function for calculate total length

   printf("Enter second service: \n");//print message

   fgets(s_service, 100, stdin);//use get function for input value

   s_service[strlen(s_service) - 1] = '\0';//use length function for calculate total length

   printf("\nDavy's auto shop invoice\n\n");//print message

   if(strcmp(f_service, "Oil change") == 0)//defining if block that check first input Service

   {

     printf("Service 1: %s, $%d\n", f_service, 35);//print service name with rate

     total = total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Tire rotation")== 0)

   {

     printf("Service 1: %s, $%d\n", f_service,19); //print service name with rate

     total = total + 19;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wash") == 0)

   {

     printf("Service 1: %s, $%d\n", f_service, 7);//print service name with rate

     total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(f_service, "Car wax") == 0)

   {

    printf("Service 1: %s, $%d\n", f_service, 12); //print service name with rate

     total = total + 12;//calcaulte value in total variable

   }

   else

   {

     printf("Service 1: Empty\n");//print message

   }

   if(strcmp(s_service, "Oil change") == 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 35);//print service name with rate

     total= total+ 35;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Tire rotation")== 0)

   {

     printf("Service 2: %s, $%d\n", s_service, 19);//print service name with rate

     total = total + 19;//calcaulte value in total variable    

   }

   else if(strcmp(s_service, "Car wash") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 7);//print service name with rate

   total = total + 7;//calcaulte value in total variable

   }

   else if(strcmp(s_service, "Car wax") == 0)

   {

   printf("Service 2: %s, $%d\n", s_service, 12);//print service name with rate

   total= total+ 12;//calcaulte value in total variable

   }

   else if(strcmp(s_service, " ") == 0)

   {

   printf("Service 2: No service\n");//print service name with rate

   }

   else

   {

   printf("Service 2:No service\n");//print message

   }

   printf("Total: $%d\n", total);//print total value

   }

   while(strcmp(s_service, "_"));//defining while that compare second service value

return 0;

}

Output:

Please find the attached file.

Explanation:

In the given C language code, the two-character array "f_service and s_service" and one integer variable "total" is declared, in which character array is used for user input, and the total is used for calculating value.

In the next step, the do-while loop is used, in which we used multiple conditional statements, that check "first and second" both array input value and add values into the total variable.If the first array doesn't take any input value, it will print an "empty" message. Similarly, in the second array, if it can't take any value, it will print a message "No service", and for the exit from the program, we pass the "underscore (_)" symbol.  

_______________ is the practice of using a network of remote servers hosted on the Internet to store, manage, and process data, rather than a local server or a personal computer.

Answers

Answer:
The answer is "Cloud Computing"
Explanation:
Cloud computing refers to the process of storing and accessing data and programs through the internet rather than on your hard disk. I hope this helps! ^-^



What is a project?

Answers

Simply put, a project is a series of tasks that need to be completed in order to reach a specific outcome. A project can also be defined as a set of inputs and outputs required to achieve a particular goal. Projects can range from simple to complex and can be managed by one person or a hundred.

When two methods in a class have the same name they are said to be...

Answers

It’s called overloading. Hope this is useful

answer is overloaded

Describe who was Alan Turing in 100 words.
First to answer will get brainliest.

Answers

Answer:

Alan Turing, in full Alan Mathison Turing, (born June 23, 1912, London, England—died June 7, 1954, Wilmslow, Cheshire), British mathematician and logician who made major contributions to mathematics, cryptanalysis, logic, philosophy, and mathematical biology and also to the new areas later named computer science, cognitive science, artificial intelligence, and artificial life.

Explanation:

Turing was a founding father of artificial intelligence and of modern cognitive science, and he was a leading early exponent of the hypothesis that the human brain is in large part a digital computing machine.Alan Turing was one of the most influential British figures of the 20th century. In 1936, Turing invented the computer as part of his attempt to solve a fiendish puzzle known as the Entscheidungsproblem.

Which of the following can be used to enter or display one complete row of information in a range or table without scrolling horizontally? Question 2 options: Create Home External Data Database Tools.

Answers

The one which is used to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.

What is Microsoft Excel?

Microsoft Excel is the electronic sheet in which the data can be arranged and saved for the future use. This data in a Microsoft excels arranged in the rows and the column of the Microsoft Excel.

The options given in the problem are,

Create-With the help of create tool the, the user can create and control the content.Home-Home menu has many tools to perform different calculations effectively.External Data-The data, which is outside of the sheet, is called the external data. Database Tools-The database tools has the different tools associated with it, to perform the task related to administration. With tool help to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.

The one which is used to enter or display one complete row of information in a range or table without scrolling horizontally is database tool.

Learn more about the Microsoft excel here;

https://brainly.com/question/1538272

Answer:

Correct answer is 'Create'

Explanation:

Took the test.

yall like portal 1 or 2

Answers

Answer:

i like both, but i personally like portal 2 the most.

Explanation:

Being a mason requires a five-year apprenticeship, a program that requires trainees to work for an experienced mason in order to learn the trade. True or False​

Answers

Being a mason requires a five-year apprenticeship, a program that requires trainees to work for an experienced mason in order to learn the trade is a false statement.

Who is a mason?

Mason Apprentice is known to have some skills to carry out some of their responsibilities.

A mason is known to be a profession where one uses bricks, concrete blocks, etc.  to build structures such as walls, walkways, etc. Their training is 3 years.

Learn more about program from

https://brainly.com/question/26134656

which of the following best explains how data is typically assembled in packets for transmission over the internet?

Answers

Answer:

The Internet works by chopping data into chunks called packets. Each packet then moves through the network in a series of hops. Each packet hops to a local Internet service provider (ISP), a company that offers access to the network -- usually for a fee.Explanation:

Answer:

Do you have options given on the question?

Explanation:

The ability to create slide shows is a major advantage of word processing software true or false

Answers

Answer:

True

Explanation:

This ability helps in the symbolic development of the word processing software

Which statements accurately describe arguments? Check all that apply. Arguments are input values for a function. Arguments are enclosed in parentheses. Arguments are enclosed in brackets. Arguments are numbers, text, cell addresses, ranges, and other functions. Arguments are invisible in the formula bar. Arguments are detailed explanations of absolute and relative cell references.

Answers

Answer:

Arguments are input values for a function.

Arguments are enclosed in brackets.

Arguments are numbers, text, cell addresses, ranges and other functions

Explanation:

Arguments are a special kind of instruction to a computer programs in the form of data or variable. Arguments input are independent and they help customize a program for a user. The output for an argument will be displayed based on the set parameters. The arguments can also be in the form of defined codes.

Using an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as

Answers

The use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to us is known as biofeedback.

What is biofeedback?

The Biofeedback is known to be a kind of a mind-body method that is said to often make use of some visual or auditory feedback to lecture people to know the main physical signs and symptoms linked with stress and anxiety, such as increased heart rate, etc.

It is also known to make use of an electronic monitoring device that can detect and amplify internal responses not ordinarily available to man.

Learn more about biofeedback from

https://brainly.com/question/1124510

Other Questions
Transformar.Click each item to hear a sentence and record yourself changing the sentence from masculine to the feminine. Then, compare your answer with the speakers. Modelo: You hear: El chico es mexicano. You say: La chica es mexicana. 1. El ingeniero es espanol. 2. El hijo de Sara es guapo.3. Los ninos son ingleses.4. El profesor es norteamericano.5. Es un conductor bueno. 6. Los turistas alemanes son antipaticos. Find slope and y intercept Measure each angle. Then classify each angle as acute, right, obtuse, or straight. write an expression where you multiply a decimal by 100 in a complete sentence describe which direction and how many places does the decimal move?? what is the value of x Maximo likes to eat cookies for breakfast every day. He eats 2 cookies per day. Three days after opening a box of cookies, there are 6 cookies left on the box. How many cookies were there at the start? Tickets to the zoo cost $12 for adults and $8 for children. The school has a budget of $240 for the field trip. An equation representing the budget for the trip is 240=12x+8y. Let 'x' by the number of adults and 'y' be the number of children. Here is a graph of this equation:Select all the true statements (select 2)Tickets to the zoo cost $12 for adults and $8 for children. The school has a budget of $240 for the field trip. An equation representing the budget for the trip is 240=12x+8y. Let 'x' by the number of adults and 'y' be the number of children. Here is a graph of this equation:Select all the true statements (select 2)If 16 adults go to the zoo, then 9 students can go.If 8 more adults go to the zoo, that means there will be room for 12 fewer students.If no adult chaperones were needed, 30 students could go to the zoo.If ten students go to the zoo, then 15 adults can go. An executive wishes to take out a $1,200,000 mortgage. The yearly interest rate on the loan is 1.95% and the loan is for 20 years. Payments will be made monthly. Calculate the total interest payable. Round your answer to the nearest thousand dollars.Do NOT round until you have calculated the final answer. The second law of thermodynamics tells us that when energy changes forms, ___________.A: It always moves to a lower and then a higher levelB: IT becomes more easily recycledC: Some of it is lost, usually as heat whose duty was it to punish the dishonest shopkeeper? Did Tapan do the rightthing by punishing him? Why? If six model cars cost $12 what is the price for the model cars Refer to the Newsela article, "Shelter Dog Protects Owner with Epilepsy." How does this article develop the idea in the beginning that Toby might not be right for Parker? A.by mentioning that the "Labrador Retriever Rescue of Fresno had scooped him up recently" B.by describing Toby as "a thin, hyper, dirty dog" with "a plastic cone around his neck" C.by including that Parker's mother "was convinced that this was not going to be their dog" D.by saying "It startled Mandy Rogers the first time Toby tried to help" Brainlyest + 50 points what is the unit price at the print shop? Which best describes the result of Mendels work with pea plants Which phrase best describes economic context? a) information about how wealth and social status affect characters and plot eventsb) information about how history and time relate to the social status of characters c) information about how the physical environment of a story affects characters and plot d) information about how culture affects relationships between characters in a story How is the burning candle similar to a living organism? Whats the answer???? In the alternation of generations life cycle present in plants, a multicellular diploid stage called the alternates with a multicellular haploid stage called the . Which movement will require the greatest amount of work to be done?A a force of 10N moving an object a distance of 3.0mB a force of 10N moving an object a distance of 5.0mC a force of 15N moving an object a distance of 3.0ma force of 15N moving an object a distance of 5.0mDAB Which linear equation represents the data given in the table?A) y = 7x + 4B) y = 4x + 7C) y = 7x 4D) y = 4x 7