What do digital signals tum sounds into?
A. analog signals
B. interference
C. continuity
D. zeros and ones​

Answers

Answer 1
Digital signals turn sounds into analog signals

Related Questions

You can expect to see ________.
A. STOP signs or traffic lights on limited access highways
B. only traffic lights on limited access highways
C. only STOP signs on limited access highways
D. no STOP signs or traffic lights on limited access highways

Answers

Answer:

You can expect to see no stop signs or traffic lights on limited access high way.

Which type of design is used when a web site is correctly and effectively displayed on small, mobile devices (as well as desktop devices)

Answers

Answer:

system analysis and design

Explanation:

a broad term for describing methodologies for developing high quality information Sytem which combines Information Technology, people and Data to support business requirement...A methodology is essentially a procedure to get something done.

Which of the following statements is true?
1. Computers have only been around since the 1940's
II. One reason computers were first developed was to do mathematical computations faster
III. Some modern computers include laptops, cell phones, and tablets
IV. Computers are able to perform tasks by using logic

Answers

Answer: The correct answer is II, III, and IV.

Explanation: The correct answer is 2,3,4. Number 1 is wrong because computers were made in 4000BC. II is right because since the beginning of time. Hand made computers were used more as of caculators. III is right because laptops, cell phones, tablets and even toys all have digital coding that originated since 1940 when the first digital computer was made. IV is right partially. Computers do certain tasks set by humans and use's logic to complete them. (Depends). II, III, IV, are the correct answers

Controlling the physical world with sensors and digital devices depends on bandwidth and the ability to analyze data in real time. Select one: True False

Answers

Answer:

The answer is "True".

Explanation:

A sensor is a tool, that senses environmental changes, and reacts to the certain activity of the other machine. It converts a physical event through an analog or sometimes an electronic signal, which is translated or displayed for reading and further analysis.

It also controls the bandwidth and also the ability to analyze information in real-time rely mostly on physical universe monitoring with sensors, that's why it is true.

Given an array, x of references to objects that implement the Comparable interface, two int variables k and j that contain valid indices to x, write some statements that exchange (or swap) the contents of the elements referenced by the integers.

Answers

Answer:

Following are the code to this question:

Comparable t; //defining interface variable t

t = x[k]; //use t variable that holds array value

x[k] = x[j]; //use array to store x[j] value

x[j] = t;//use x[j] to assign value in the t

Explanation:

In the given question it is already defined " x" is an array that is the reference object, that defines the Comparable interface "t", and in the next line, two integer variable "k and j"  is defined, that swap the values.  

In the above code, the Comparable interface "t" is defined, which uses the t variable to store array x[k] value, and x[k] stores the x[j] value, and x[j] stores t value, and perform the swapping.

Mention any three features of an antivirus software? ​

Answers

Answer:

Real-time Scanning

Automatic Updates

Protection for Multiple Apps

Auto-Clean

Fights Against All Types of Malware

HOPE I HELPED

PLS MARK BRAINLIEST  

DESPERATELY TRYING TO LEVEL UP

✌ -ZYLYNN JADE ARDENNE

JUST A RANDOM GIRL WANTING TO HELP PEOPLE!

                     PEACE!

The three attributes of antivirus software include auto-cleaning, automatic updates, and real-time scanning.

The information regarding the three attributes of antivirus software is as follows:

The work of the antivirus software discovered malicious software. In the auto-cleaning, it rid of the viruses that could come in the laptops.In real-time scanning, it regularly checks whether there is any malicious software or not due to this the laptop does not damage.The antivirus software required regular updates so that they could track the new threats if any also at the same time it protects your laptops.

Therefore we can conclude that the three attributes of antivirus software include auto-cleaning, automatic updates, and real-time scanning.

Learn more about the software here: brainly.com/question/15937118

With _____, human thinking and problem-solving is performed by a machine, including learning, reasoning, and self-correction. wearable technologies quantum computers artificial intelligence Moore's Law

Answers

Answer:

THE ANSWER IS B

Explanation:

What do we call the time it takes for all of the sub-pixels on the panel to go from pure black to pure white and black again

Answers

Answer:

response rate

Explanation:

The term being described in the question is known as the response rate. In other words, this is the amount of time it takes for your monitor to shift from one color to another. This is data tends to be measured in milliseconds with the average response times of typical LCD monitors being ten milliseconds (10ms) and the fastest response times of higher-end displays being as fast as one millisecond (1ms)

An error condition consisting of an error in the passing of parameters -- a method passes or returns an unexpected value such as a negative price -- is usually found in what kind of testing?

a. Unit testing
b. Integration testing
c. System testing
d. Acceptance testing

Answers

Answer:

b. Integration testing.

Explanation:

An error condition consisting of an error in the passing of parameters; a method passes or returns an unexpected value such as a negative price, is usually found in Integration testing.

Integration testing can be defined as a phase in software applications testing, which typically involves the process of testing the interface between two software module combined as a group.

The main purpose of an integration testing is to determine the correctness of this interface and expose any fault existing between integrated modules.

Write a method mirror that accepts an ArrayList of Strings as a parameter and produces a mirrored copy of the list as output, with the original values followed by those same values in the opposite order. For example, if an ArrayList variable called list contains the values ["a", "b", "c"], after a call of mirror(list); it should contain ["a", "b", "c", "c", "b", "a"].

Answers

Answer:

Here is the JAVA program:

private static void mirror(ArrayList<String> list) { // method mirror that accepts ArrayList of Strings as a parameter

       for (int i = list.size() - 1; i >= 0; i--) {//iterates through the array list

           list.add(list.get(i));        } //produces a mirrored copy of the list

       System.out.println(list);    } ///prints the mirrored copy of list

Explanation:

This is the complete program:

import java.util.ArrayList; //to use dynamic arrays

public class MirroredArraylist{

private static void mirror(ArrayList<String> list) {    //method to produce mirrored copy of the list

       for (int i = list.size() - 1; i >= 0; i--) {  /          

           list.add(list.get(i));        }            

       System.out.println(list);    }

public static void main(String[] args) {    

     ArrayList<String> list = new ArrayList<String>();//creates a String type array list  

//adds values to the Arraylist i.e list

               list.add("a"); .

               list.add("b");

               list.add("c");        

       mirror(list); }} //calss mirror method passing list to it

The method works as follows:

For loop variable i is initialized to the list.size() - 1 which means 1 less than the size of the ArrayList i.e list. For example the list contains the following values ["a", "b", "c"]. So

i = list.size() - 1

 = 3-1

i = 2

so i is set to the last element/value of list i.e. "c"

Then the for loop checks if the value of i is greater than or equals to 0 which is true because i = 2

So the program control enters the body of the for loop

list.add(list.get(i)); This statement has two methods; add() and get()

add() method is used to add the value/element to the ArrayList, list.

get() method is used to get the element/value in list at i-th index

So the element at i=2 means element at 2nd index is "c"

Hence value "c" is added to the list.

Then the value of  i is decremented to 1. So i=1

At next iteration

i is set to the second last element/value of list i.e. "b"

Then the for loop checks if the value of i is greater than or equals to 0 which is true because i = 1

So the program control enters the body of the for loop and gets the value of list i.e "b" and adds it to the list. Next the value of "a" is get and added to the list. So the list becomes:

["c", "b", "a"]

In the main() method

               list.add("a"); .

               list.add("b");

               list.add("c");    

The above three statements adds the values to list that are "a", "b" and "c". So the list becomes:

["a", "b", "c"]

Next statement mirror(list); calls the method mirror which returns the mirrored copy of the list. So the output is:

["a", "b", "c", "c", "b", "a"].

The screen shot of the program along with its output is attached.

Disk ___________________ helps improve the speed and efficiency of a hard disk.

Answers

Disks “Response Time” and “Disks Throughput” have great impact on speed and efficiency of a hard disk.

Answer:

Defragmentation

Explanation:

PLATO - correct answer

Which of the following options allow you to access a computer remotely? Check all that apply.

Answers

What are the options?

Which of the following is true about STEM education? STEM education is focused on understanding rather than applying scientific concepts. STEM students are told to focus on a subject area and work within a certain specific field. STEM students are encouraged to blend and expand their knowledge of all four subject areas. STEM education prepares students to work in science- and math-related jobs.

Answers

Answer:

C). STEM students are encouraged to blend and expand their knowledge of all four subject areas.

Explanation:

STEM education is characterized as a learning and development approach that focuses upon an amalgamation of four subject areas including science(S), technology(T), engineering(E), and Mathematics(M). Thus, each letter stands for a subject domain and this integration of four subjects primarily aims to 'blend and expand the knowledge of the students in these areas' integratively. It helps in developing and sustaining the interests of young learners through this integrated approach which also assists them with unique opportunities. Thus, option C is the correct answer.

The answer is:

D) STEM students are encouraged to blend and expand their knowledge of all four subject areas.

what is the types of the structured programming

Answers

Answer:

I guess 1 3 4 options are true.....

I think 1,3,4 is true thank me tomorrow

Which protocol enables the secure transfer of data from a remote PC to a server by creating a VPN across a TCP/IP network

Answers

Answer:

"Point-to-Point Tunneling Protocol" is the right choice.

Explanation:

PPTP seems to be a service provider protocol which provides the protected processing of information from some kind of different client to something like an application framework through the creation of a VPN around through TCP/IP databases. It perfectly captures PPP transactions for transmission and storage and perhaps other standard TCP/IP based connections through Ip packets.

Define stubs for the functions get_user_num() and compute_avg(). Each stub should print "FIXME: Finish function_name()" followed by a newline, and should return -1. Each stub must also contain the function's parameters.

Answers

Answer:

Following are the code to this question:

def get_user_num():#defining a method

   return -1#return value -1

def compute_avg(n1, n2):#defining method compute_avg that accepts two parameters  

   return -1#return value -1

user_num1 = user_num2= get_user_num()#defining user_num1 and user_num2 variable that calls method get_user_num

avg_result = compute_avg(user_num1, user_num2)#defining avg_result that calls compute_avg method and store its value

print('The average value is:', avg_result)#use print method to call avg_result

Output:

The average value is: -1

Explanation:

In the given python code,  two methods "get_user_num and compute_avg" is defined, in which the second method "compute_avg" accepts two parameters that are "n1 and n2", and both methods will return its value, that is "-1".

In the next step, "user_num1 and user_num2" is defined, that calls method "get_user_num" and stores its value, and the variable avg_result is defined, which calls the "compute_avg" method and stores its value and use the print method is defined, that calls its value.

Define what is a PC?

Answers

PC stands for Personal Computer (generic term) This definition appears very frequently and is found in the following Acronym Finder categories: Information technology (IT) and computers.

PC stands for personal computer and can be used for anything from desktops to laptops

the_______ is a documents , spreadsheet or database that contain personalized information or data base such as name address phone number​

Answers

Answer:

Is called "data source"

the data source is the answering o

The __________ process is designed to find and document vulnerabilities that may be present because there are misconfigured systems in use within the organization. a. ISP b. PSV c. SVP d. ASP

Answers

Answer:

Isp

Explanation:

An Internet service provider is an organisation that provides services for accessing,

using, or participating in the Internet. Internet service providers can be organised in

various forms

The platform security validation (PSV) procedure is made to identify and record vulnerabilities that can exist as a result of incorrectly configured systems being used by the company. Thus, option B is correct.

What PSV process is designed to find and document?

The preparedness and review domain's major objective is to maintain the information security program's intended functionality and ongoing improvement.

An organization that offers services for utilizing, accessing, or engaging on the Internet is known as an Internet service provider. There are several ways that internet service providers might be organized.

Therefore, The PSV process is designed to find and document vulnerabilities that may be present because there are misconfigured systems in use within the organization.

Learn more about PSV here:

https://brainly.com/question/22444527

#SPJ5

if lain and Wi-Fi were to go out at the same would the circuit break

Answers

Answer:

yes and no because the LAN circuit would stop the connection and the Wi-Fi circuit would fry

Measurement consists of:__________

a. the assignment of numbers (representing quantities of attributes) to objects or events according to rules.
b. using a given scale to make comparisons.
c. determining the frequency of a particular attribute.
d. assigning numbers solely for identification purposes.

Answers

Answer:

The answer is choice "a".

Explanation:

Measurement is a number allocation in which the entity or event attributes that would be comparable with other objects or events. Its scope and implementation depending on context and discipline.  

Its main purposes could be defined as measurements for efficiency, tracking, health, fitness (design, mounting), and solving problems.  Its calculation consists of the numerical assignment, representing attribute amounts according to the rules for objects and events.

While the Tor network does provide a level of anonymity, the user never knows what other computers the request will go through; data sent and received can be captured by any of these computers.

a. True
b. False

Answers

Answer:

The answer is "Option a"

Explanation:

The Tor is the free web browser, that encrypts your request but it's also slow to allow you to access every site, and it can't be a cause of legal problems. It aims to cover up the identity, information, and internet activity via the secession of classification and routing from monitoring as well as traffic analysis, that's why it is known as the onion mapping execution.  

It encodes and rebounds communication systems by the supernatural power of a relay system controlled by volunteer staff worldwide.  These internet activities couldn't be traced back to you via the Tor Network. Its browser wasn’t fully safe, therefore. There are some faults in the system, that's why it can be captured by other systems.

Which definition of AI do you like best? How would you define AI? Let's first scrutinize the following definitions that have been proposed earlier: "cool things that computers can't do" machines imitating intelligent human behavior autonomous and adaptive systems Your task: Do you think these are good definitions? Consider each of them in turn and try to come up with things that they get wrong - either things that you think should be counted as AI but aren't according to the definition, or vice versa. Explain your answers by a few sentences per item (so just saying that all the definitions look good or bad isn't enough). Also come up with your own, improved definition that solves some of the problems that you have identified with the above candidates.

Explain with a few sentences how your definition may be better than the above ones?

Answers

Answer:

1. "Cool things that computers can't do"

AI is Artificial Intelligence, which can involve anything from robots to programs on computers/websites. Sure, AI can learn things and adapt in ways unlike computers, but they are still quite similar in the fact that they both are technology.

2. "Machines imitating intelligent human behavior"

This is a bit closer to the definition of AI. However, AI does not necessarily have to imitate humans - rather, it's most known for being able to adapt and learn (which is the part where this definition is correct). Also, our current AI is nowhere near the level of mimicking intelligent human behavior enough to fool us.

3. "Autonomous and adaptive systems"

This is, by far, the best definition given here yet. Most AI are autonomous and/or adaptive systems, used to automate tasks which would take time for us humans. I suppose one thing that could be wrong with it is that not all AI are made to be autonomous systems.

Use the drop-down menus to explain how Angelina
should complete this process.
What is her next step?
What should she do next?
What should she do last?

Answers

Answer: what is her next step: click page number

What should she do next: click current position

What should she do last: click plain number 1

Explanation:

Answer:

A, C, B

Explanation:

Which of the following statements are true about the Internet?
1 - The Internet connects devices and networks all over the world
II - The Internet helps people collaborate to solve problems
III - The Internet helps people communicate
IV - There are no negative consequences of the Internet, it is purely positive

Answers

1, 2, and 3 are true

when classified information is in an authorized individuals hands, why should the individual use a classified document coversheet

Answers

Answer:

Following are the answer to this question:

To inform holders of the existence of data.  To avoid misuse by unapproved employees of confidential information.

Explanation:

The classified information is also known as sensitive information, which is access to specific classes of individuals is constrained by rule or policy. It manages the classified documents or accesses the data.

It's also a formal security clearance, that has been required for the satisfying background research that is needed for the screening process.It tells the owners that confidential data is provided and avoid accidental disclosure by the unauthorized staff of classified information.

"An internal system behind a firewall needs to be configured for remote access. How should Network Address Translation be configured?"

Answers

Answer:

The appropriate answer will be "Port forwarding ".

Explanation:

Port forwarding seems to be a network security strategy whereby a gateway or equivalent system communicates all intercepting communication/traffic from a specific address to some of the same port on just about any interior single node.This allows the connection of an entity in this context device that is connected to an inner reference node/port usually connecting to Internet infrastructure as well as an internal private local area network.

A ________ uses multiple systems to attack one or more victim systems or websites with the intent of denying service to legitimate users wishing to log on or utilize the attacked server.

Answers

Answer: Botnet

Explanation:

Which best described most television in the 1940s and 1950s? color cable 24 hour black and white

Answers

Answer:

The answer is "black and white".

Explanation:

During this period of live TV output in the United States, from the late 1940s to late 1950, the era between the 1940s and 1950s is often regarded as the first Golden Age of Television.  

It is the monochrome broadcast tv signal transmission and reception system. At the end of the 1940s, in 50 major cities, there were 98 commercial tv channels. TV sets costs also reduced by 1949.

The ________ is responsible for the Internet's domain name system and the allocation of IP addresses. ICANN W3C ISOC IAB

Answers

Answer:

ICANN

Explanation:

It handles the installation and processing of various databases related to network domains and provides a consistent and secure networking service and there are incorrect options are described as follows:

IAB, which provides a protocol for managing IETF, is therefore incorrect. W3C is used in web development. ISOC is used to provide Internet access.
Other Questions
The following information was available for the year ended December 31, 2016: Net sales $ 857,750 Cost of goods sold 609,550 Average accounts receivable for the year 39,900 Accounts receivable at year-end 29,400 Average inventory for the year 174,000 Inventory at year-end 157,800 Required: a. Calculate the inventory turnover for 2016. (Round your answer to 2 decimal places.) b. Calculate the number of days' sales in inventory for 2016, using year-end inventories. (Use 365 days a year. Round your answer to 1 decimal place.) c. Calculate the accounts receivable turnover for 2016. (Round your answer to 1 decimal place.) d. Calculate the number of days' sales in accounts receivable for 2016, using year-end accounts receivable. (Use 365 days a year. Round your answer to 1 decimal place.) 9. What was the name of the first meeting of colonial leaders where they wrote a letter to theking?A. The Stamp ActB. The Tea ActC. The Coercive ActsD. The First Continental Congress HELP ASAP!!!!!!! Third person omniscient is the _____ that is most likely to be that of a reliable narrator. personification part of speech point of view paraphrase The components that a cell can contain are (check all that apply) which two techniques do writers employ to draw a readers attention to symbols in their stories If you were to open an account that will pay you 3.5% interest with a deposit of $150 so find the following ending amount for each period at the end of 2 years Evaluate n/6+2when n=12 can someone PLEASE help me with these two ill mark them as brainliest!!!!! Good-bye in Spanish Unit TestUnit Test Active12345678In order to end the recession in the early 1990s, President Clintondecreased government spending.increased government spending.made the government less like a business.raised taxes on the wealthy to raise money. (3x2+2x+ 4)- (x2+ 2x+1)= Which of the following citations BEST supports the CENTRAL idea that Simone developed her own unique style of music?ABy the mid 1960s, Simone had became known as the voice of the civil rights movement.BHer classical training showed through, no matter what genre of song she played, and she drew from a well of sources that included gospel, pop and folk.CTouring periodically, Simone maintained a strong fan base that filled concert halls whenever she performed.DTurning away from classical music, she started playing American standards, jazz and blues in Atlantic City clubs in the 1950s. Which statement best describes anecdotal evidence 1). It is convincing, reliable, and accepted. 2). It is entertaining, memorable, and relatable. 3). It is insightful, undeniable, and entertaining. 4). It is likely dry, impersonal, and unconvincing Points P, Q, and R are shown on the number line. What is the distance between point P and point R? what is the density of carbon dioxide gas if 0.196 g occupies a volume of 100ml? Square RSTU is inside trapezoid RSVU. What is the measure, in degrees, of angle VSR? R. REN T Only 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -, -, and / are allowed in your answer. Answers that are mixed numbers must be entered as an improper fraction or decimal. Your answer The people of a political party work together to elect people of their party into government office. Political parties in the United States nominate, or choose, the people they want to elect. Based on this information, who do political parties nominate for a government office? A.people from another country B. people of a different political party C. people of their own political party 25,000cg is equal to _g Which of the following budgets must managers prepare before they can prepare a direct materials purchases budget? a. Labor budget b. Overhead budget c. Production budget d. Cost of goods manufactured budget Gerritt wants to buy a car that costs $30,750. The interest rate on his loan is 5.65 percent compounded monthly and the loan is for 7 years. What are his monthly payments