The ________ function reads a piece of data that has been entered at the keyboard and returns that piece of data, as a string, back to the program.
A. string_input
B. output
C. input
D. eval_input

Answers

Answer 1

A piece of data typed at the keyboard is received by the input function, which then sends the data back to the programme as a string.

How can I utilise Python's input function?

When using the keyboard to enter data, the input function reads that data and returns it as a string. Get the user's name by reading the string. input = name ("Enter your name: ") # Send the user a greeting in print.

How does one read keyboard input?

reading keyboard input When using the keyboard to enter data, the input function reads that data and returns it as a string. Get the user's name by reading the string. input = name ("Enter your name: ") # Send the user a greeting in print.

To learn more about Python visit:

brainly.com/question/28691290

#SPJ4


Related Questions

I NEED HELP ksdnkdcnfsvxn

Answers

Note that where 32 teams qualified for the 2014 World Cup. If the names of the teams were arranged in sorted order (an array), the number of items in the array that binary search would have to examine to find the location of a particular team in the array, in the worst case at most 6 (Option C).

What is an array?

An array is a data structure in computer science that consists of a collection of items, each of which is identifiable by at least one array index or key. A mathematical method is used to determine the location of each element from its index tuple in an array.

Because they hold items of the same kind, arrays are categorized as Homogeneous Data Structures. Numbers, strings, boolean values (true and false), characters, objects, and other data can be stored in them. However, once you specify the kind of data your array will contain, all of its components must be of the same type.

Learn more about Array:
https://brainly.com/question/19570024
#SPJ1

in a syslog implementation, which of the following component is an agent that collects the information from various devices and servers on the network? syslog collector syslog server syslog forwarder syslog analysis submit

Answers

System Logging Protocol enables the transmission of data in a specific message format from network devices to a central server, also known as a Syslog server. By making log message handling simpler.

A Syslog collector is what?

The Syslog collector or receiver is another name for the Syslog server. The producing device transmits Syslog messages to the collector. On the device itself, either through a conf file or the command line, the IP address of the destination Syslog server must be specified.

Why is the Syslog needed, and why is it important for administrators to understand how to use it?

Network devices can connect with a logging server using a common message format by using the System Logging Protocol (Syslog). It was created primarily to make monitoring network devices simple. A Syslog agent can be used by devices to transmit notification messages in a variety of distinct circumstances.

to know more about the Syslog server here:

brainly.com/question/29556656

#SPJ1

A structure pointer contains
A. the address of a structure variable
B. the name and address of the structure tag
C. the dereferenced address of a structure tag
D. e address of a structure tag
E. none of the answers

Answers

A structure pointer contains a structure variable's address. The memory address of any variable or member field can be obtained in C. (of struct). To do this, we cast the address to (void*) and utilize the address of the (&) operator, the%p specifier to print it, and the address.

What is the address of a variable?

In C, each variable is given a memory address when it is created. The variable's position on the computer is indicated by its memory address. This memory address is where the variable's assigned value is saved. The structure's variables collectively are referred to as its members. In contrast to an array, a structure can hold a wide variety of data types (int, float, char, etc.).

Unless you have a pointer referring to the local variable, the address of a local variable is not stored anywhere. On most contemporary systems, the actual local variables are often stored on the stack.The function receives the memory addresses of the struct variables during pass by reference.

Therefore the correct answer is option A) the address of a structure variable.

To learn more about structure pointer refer to :

https://brainly.com/question/18798792

#SPJ4

When investigating a Windows System, it is important to view the contents of the page or swap file because:PrepAway - Latest Free Exam Questions & AnswersA.Windows stores all of the systems configuration information in this fileB.This is file that windows use to communicate directly with RegistryC.A Large volume of data can exist within the swap file of which the computer user has no knowledgeD.This is the file that windows use to store the history of the last 100 commands that were run from the command line

Answers

When investigating a Windows System, it is important to view the contents of the page or swap file because a large volume of data can exist within the swap file of which the computer user has no knowledge.

What is swap file in a windows system?

When the system's memory is low, a swap file is a system file that generates temporary storage space on a solid-state drive or hard disk. The file frees up memory for other programs by swapping a portion of RAM storage from an inactive program.

The computer can use more RAM than is actually installed by employing a swap file. In other words, it can run more applications than it could with just the installed RAM's constrained resources.

Swap files are a form of virtual memory because they are not kept in actual RAM. A computer's operating system (OS) can seem to have more RAM than it actually does by using a swap file.

To know more about swap file refer:

https://brainly.com/question/9759643

#SPJ4

your network configuration needs to be configured to alllow two disparate networks to be connected together, allowing a free flow of traffic

Answers

To do this, brctl commands would be employed.

Explain about the network configuration?

A network's settings, policies, flows, and controls are assigned through the process of network setup. As physical network equipment are replaced by software in virtual networks, the requirement for labor-intensive manual configuration is eliminated. As a result, network configuration changes are simpler to implement.

A network can be classified as either a LAN (Local Area Network) or a WAN (Wide Area Network). These are two significant basic sorts of networks, and they are the two categories into which networks are separated.

By using a single management console, network administrators are able to analyze and make significant changes to the network's overall structure. Permission levels must be set up as part of configuration management to prevent accidental changes by other authorized users.

The complete question is,

In order to join two different networks, your network setup must be set up to let unfettered traffic flow across your server from one network to the other. Which of the aforementioned commands would be used to make this happen?

To learn more about network configuration refer to:

https://brainly.com/question/24847632

#SPJ4

Recall that a contiguous subarray is all of the elements in an array between indices
i
and
j
, inclusive (and if
j we define it to be the empty array). Call a subarray is nearly contiguous if it is contiguous (i.e. contains all elements between indices
i
and
j
for some
i,j
) or if it contains all but one of the elements between
i
and
j
. For example, in the array
[0,1,2,3,4]
, -
[0,2,3]
is nearly contiguous (from 0 to 3 , skipping 1 ), sum is 5 -
[0,1,2,3]
is nearly contiguous (because it is contiguous from 0 to 3 ), sum is 6 . -
[2,4]
is nearly contiguous (from 2 to 4 , skipping 3 ), sum is 6 . - [3] is nearly contiguous (because it is contiguous from 3 to 3 ), sum is 3 . - [] is nearly contiguous (because it is contiguous from 1 to 0 ), sum is 0 . -
[0,2,4]
is not nearly contiguous (because you'd have to remove two elements). The sum of a nearly contiguous subarray is the sum of the included elements. Given int [] A, your task is to return the maximum sum of a nearly contiguous subarray. For example, on input
[10,9,−3,4,−100,−20,15,−5,9]
your algorithm should return 24 (corresponding to
i=
6,j=8
and skipping the
−5
). (a) Define one or more recurrences to solve this problem. (b) Give English descriptions (1-2 sentences each should suffice) for what your recurrences calculate. Be sure to mention what any parameter(s) mean. (c) How do you caclulate your final overall answer (e.g. what parameters input to which of your recurrences do you check). (d) What memoization structure(s) would you use? (e) What would the running time of your algorithm be (you do not have to write the code). Justify in 1-3 sentences.

Answers

(a) One possible recurrence to solve this problem is:

Let f(i, j) be the maximum sum of a nearly contiguous subarray ending at index j and starting at index i or before.

Then the recurrence can be written as:

f(i, j) = max(f(i, j-1), f(i, j-2) + A[j])

This recurrence calculates the maximum sum of a nearly contiguous subarray ending at index j and starting at index i or before by considering two possibilities:

The subarray does not include the element at index j. In this case, the maximum sum is the same as the maximum sum ending at index j-1.

The subarray includes the element at index j, but skips the element at index j-1. In this case, the maximum sum is the sum of the elements ending at index j-2 plus the element at index j.

(b) Another possible recurrence to solve this problem is:

Let g(i, j) be the maximum sum of a contiguous subarray ending at index j and starting at index i or before.

Then the recurrence can be written as:

g(i, j) = max(g(i, j-1) + A[j], A[j])

This recurrence calculates the maximum sum of a contiguous subarray ending at index j and starting at index i or before by considering two possibilities:

The maximum sum of the subarray includes the element at index j. In this case, the maximum sum is the sum of the maximum sum ending at index j-1 plus the element at index j.

The maximum sum of the subarray does not include the element at index j. In this case, the maximum sum is simply the element at index j.

(c) To calculate the final overall answer, we can input the values 0 and n-1 into both recurrences, where n is the length of the array A. This will give us the maximum sum of a nearly contiguous subarray that starts at the beginning of the array and ends at the end of the array.

(d) To implement these recurrences using memoization, we can use a two-dimensional array to store the calculated values of f and g. The array can be initialized with values of 0 for all indices, and then we can fill in the values starting from the bottom right corner and working our way towards the top left corner.

(e) The running time of this algorithm would be O(n^2), because we need to calculate the values of f and g for every possible pair of indices i and j. This requires O(n^2) time in the worst case.

IMAPThis protocol will allow users to maintain messages stored on an email server without removing them from the server.

Answers

The Internet Message Access Protocol (IMAP) is a protocol for gaining access to email or message boards from a mail server or service that may be shared. A client email application can access remote message repositories just like they were local thanks to IMAP.

What does IMAP stand for?

The Internet Message Access Protocol (IMAP) is a protocol for gaining access to email or message boards from a mail server or service that may be shared. A client email application can access remote message repositories just like they were local thanks to IMAP.

We utilize IMAP protocol, but why?

With IMAP, you may use any device to access your email from anywhere. Instead of downloading or saving an email message on your computer when you use IMAP, you read it directly from the server.

To know more about IMAP protocol visit;

https://brainly.com/question/14009005

#SPJ4

T F a) Void Functions can use reference parameters.

Answers

Function Calls Using Value and Reference Parameter Examples: Void function call using value parameters (can use expression, constant, or variable)

What is void function in C programming?

Except that they do not return a value when the function executes, void functions are constructed and used just like value-returning functions. The term "void" is used by void functions in place of a data type. A void function does a job before returning control to the caller; nevertheless, it does not return a value.Statements that are void functions are independent. When the function return type in computer programming is void, it means the function doesn't return a value. The word void indicates that a pointer is universal when it appears in a pointer declaration.A function called void *function() in the C programming language returns a value that, when dereferenced, is of the type void.

Learn more about void function refer to :

https://brainly.com/question/25644365

#SPJ4

The __________ coding scheme contains a set of 128 numeric codes that are used to represent characters in the computer's memory.Choose matching terma. TWO'S COMPLEMENTb. ASCIIc. ASSEMBLYd. CONTROL

Answers

In computers and telecom devices, text is represented using ASCII codes .The 128 English characters are represented by integers in ASCII.

What is a binary coding scheme?

There are only two possible values for each digit in the binary numbering system, 0 or 1, hence all binary code used in computing systems is based on this numbering scheme. These systems make use of this code to decipher user input and operational directives and provide the user with the desired result.

Which coding system uses 8 bits?

IBM computers generally use the 8-bit Extended Binary Coded Decimal Interchange Code (EBCDIC) character coding system. Using this approach, 256 (28) characters can be coded.

To know more about character visit:-

https://brainly.com/question/13141964

#SPJ4

Are the following statements coutably infinite, finite, or uncountable?
1. Points in 3D(aka triples of real numbers)
2. The set of all functions f from N to {a, b}
3. The set of all circles in the plane
4. Let R be the set of functions from N to R which are θ(n^3)

Answers

The answer is

1 Points in 3D --- uncountably infinite /Finite

2.The set of all functions-- uncountably infinite

3.The set of all circles in the plane--- uncountable

4 . R =the set of functions from N to R which are θ(n^3) --   Uncountable

Cardinality of Set

The quantity of items in a mathematical set is known as a set's cardinality. It may be limited or limitless. For instance, if set A has six items, its cardinality is equivalent to 6: 1, 2, 3, 4, 5, and 6. A set's size is often referred to as the set's cardinality. The modulus sign is used to indicate it on either side of the set name, |A|.

A finite set is a set with a finite number of elements and is countable. An infinite set, on the other hand, has an infinite number of elements, and an infinite set may be countable or uncountable.

According to the cardinality a set can be identified as many types ,they are,

Countable setsUncountable SetsPower Set Finite SetInfinite Sets

To know more about cardinality of sets refer to :

https://brainly.com/question/22719073

#SPJ4

given the below code segment, which of the following would allow you to deallocate all memory allocated to the pointer numbers?int* numbers

Answers

The standard library function realloc will be utilised to deallocate previously allocated memory (). The "stdlib. " declaration of the "realloc()" function.

To deallocate memory in C, which of the following do you use?

To allocate a block of memory on the heap in C, use the library function malloc. Through a pointer that malloc returns, the programme can access this block of memory. The pointer is supplied to free, which dealslocates the memory when it is no longer required so that it can be utilised for other things.

Which of the following operators dealslocates runtime allocated memory?

Using the "new" operator in C++, memory can be allocated dynamically.

To know more about pointer numbers visit :-

https://brainly.com/question/29009051

#SPJ4

An example of a digital data structure that originates in a field based model of spatial information

Answers

An example of a digital data structure that originates in a field based model of spatial information raster.

What is digital data structure?Overall, databases and data structures are two methods of data organization. The key distinction between a database and a data structure is that a database is a collection of data that is maintained in permanent memory, whereas a data structure is a method of effectively storing and organizing data in temporary memory. The organization of data in secondary storage devices into file structures reduces access times and storage requirements. A file structure consists of procedures for accessing the data and representations for the data contained in files. The ability to read, write, and alter data is provided by a file structure.A raster graphic is a representation of a two-dimensional image in computer graphics and digital photography that can be viewed on paper, a computer display, or another display medium.

To learn more about digital data structure refer to:

https://brainly.com/question/24268720

#SPJ4

transmission often is called fixed wireless. group of answer choices microwave infrared coax fiber-optic

Answers

Signals are sent from one microwave station to another during microwave transmission, also known as fixed wireless (shown in Figure 8-1 on page 296). A dial-up modem cannot send data as quickly as a microwave, which can do it up to 4,500 times quicker.

Which alternative name for transmission data is appropriate?

It makes it possible for devices to move between and communicate with one another in point-to-point, point-to-multipoint, and multipoint-to-multipoint environments. Digital communications and transmission of data are other names for these processes.

Is fiber-optic fixed-wireless?

Internet access using fixed wireless is frequently used in rural areas and other places without fiber-optic infrastructure. Although portable and mobile systems can be employed in fixed sites, their efficiency and bandwidth are limited in comparison to stationary systems.

To know more about fixed wireless visit;

https://brainly.com/question/13010901

#SPJ4

Where is it unnecessary to have a mobile platform?

Answers

Answer:

There may be situations where a mobile platform is unnecessary or not applicable. Some examples of such situations may include:

When the target audience or user base does not use mobile devices or does not require access to the information or services on the go

When the cost of developing and maintaining a mobile platform is not justified by the expected benefits or return on investment

When the content or functionality of the platform is not suitable for a mobile platform, or when a desktop or web-based platform is more suitable

When there are regulatory or compliance requirements that prohibit or restrict the use of mobile platforms

It is important to carefully evaluate the needs and requirements of the target audience and the business objectives before deciding whether or not to develop a mobile platform.

There may be situations where a mobile platform is unnecessary or not applicable. Some examples of such situations may include:

When the target audience or user base does not use mobile devices or does not require access to the information or services on the go.When the cost of developing and maintaining a mobile platform is not justified by the expected benefits or return on investment.When the content or functionality of the platform is not suitable for a mobile platform, or when a desktop or web-based platform is more suitable.When there are regulatory or compliance requirements that prohibit or restrict the use of mobile platforms.

What is a mobile platform?

A mobile application platform is a collection of software tools for designing, developing, and managing mobile applications.

There may be times when a mobile platform is inappropriate. Here are some examples of such situations:

When the target audience or user base does not use mobile devices or requires on-the-go access to information or services.When the cost of developing and maintaining a mobile platform is insufficient to justify the expected benefits or return on investment.When the platform's content or functionality is incompatible with a mobile platform, or when a desktop or web-based platform is preferable.When regulatory or compliance requirements prevent or limit the use of mobile platforms.

Therefore, it is important to carefully evaluate the needs and requirements of the target audience and the business objectives before deciding whether or not to develop a mobile platform.

To learn more about mobile platform, click here:

https://brainly.com/question/20813382

#SPJ2

cryptographic hash fuctions generally executes faster in software then convential encryption algorrithms such as des

Answers

Software often runs cryptographic hash functions more quickly than traditional encryption algorithms like DES. This claim is untrue.

What are hash functions used in cryptography?

A cryptographic hash function (CHF) is a hash algorithm that has unique characteristics that make it useful for cryptography. It maps any binary string to a binary string with a predefined size of n bits.

What is an algorithm for encryption?

A mathematical technique known as an encryption algorithm transforms plaintext into ciphertext with the aid of a key. They also enable the process to be reversed, turning plaintext back into ciphertext. Examples of popular encryption methods include RSA, Blowfish, Twofish, DES, and Triple DES.

To learn more about encryption visit:

brainly.com/question/17017885

#SPJ4

In memory based on DRAM a memory request that fall on the same row as the previous request can be served ______ as fast as one to a different row.

Answers

In memory based on DRAM a memory request that fall on the same row as the previous request can be served just as fast as one to a different row.

What is  DRAM?
When using Dynamic Random Access Memory (DRAM), each piece of data is kept in its own capacitor inside of an integrated circuit. This form of memory, which is frequently used as the system memory in computer systems, is volatile, suggesting that this really needs a constant source of power to keep its contents. DRAM is frequently set up into memory cells, which are made of a single diode as well as a capacitor and can each hold one bit of data. The bit is seen as being a one when the capacitor is loaded, and as a zero whenever the capacitor is discharged. DRAM is utilised in a variety of devices and systems, such as personal computers, workstation, servers, cell phones, and digital cameras.

To learn more about DRAM
https://brainly.com/question/14845501
#SPJ4

Complete the function to determine which variable in a dataframe has the highest absolute correlation with a specified column. 1 import pandas as pd 2 def find_highest_correlated(df, column): 3 ## Write your code here... 5 solution=None 6 return solution 8 \#\#\# Click 'Run' to execute test case 9 test_case = find_highest_correlated(hr_df, 'left')

Answers

The solution is def find_highest_correlated(df, column): corr_list = df.corr()[column].abs().sort_values(ascending=False) solution = corr_list.index[1] return solution.

How to determine the function which variable in a dataframe has the highest absolute correlation ?

1. Calculate the correlation coefficient between each variable in the dataframe.

2. Take the absolute value of each correlation coefficient.

3. Sort the absolute values in descending order.

4. The variable with the highest absolute correlation is the one at the top of the list.

5. The function of this variable can be determined by looking at the correlation coefficient sign. If the sign is positive, the function of the variable is positively correlated with the other variables. If the sign is negative, the function of the variable is negatively correlated with the other variables.

# Write your code here...

corr_df = df.corr()

solution = corr_df[column].abs().sort_values(ascending=False).index[1]

return solution

To learn more about dataframe refer to:

https://brainly.com/question/29682397

#SPJ4

You need to duplicate a large number of files from your PC to a network server. Due to the number of files, you start the process and go home for the evening. When you return the next day, you find that only part of the files were duplicated to the server due to the router being temporarily unplugged by the janitor while cleaning.To prevent this type of glitch from happening again, which of the following Windows command line tools would have been BEST to use?

Answers

Since you need to duplicate a large number of files from your PC to a network server. The Windows command line tools that would have been BEST to use is robocopy

What is Robocopy used for?

It is one that is similar to rsync on UNIX, Robocopy is a powerful file-copying application that is incorporated into Windows. It is an excellent tool for data backup and a much better way to copy huge datasets or lots of files between drives. It has a number of choices, the capacity to continue halted copies, and the ability to log while copying.

Robocopy, which stands for "Robust File Copy," is a directory and/or file replication command for the Microsoft Windows operating system. Xcopy is functionally replaced by Robocopy, which has additional features.

Therefore, one can run this command to copy a folder's contents, including all of its files and subfolders: Robotic copy /E /DCOPY:DAT /R:10 /W:3 c:temp source c:temp destination. Robocopy is instructed to copy every subfolder, even empty ones, when the /E flag is used. Use the /S switch to avoid copying empty subfolders. 1

Learn more about robocopy from

https://brainly.com/question/15231158
#SPJ1

Chinh wants to have a program print “Sorry, but that isn’t one of your options” until the user enters the correct information. What should be used to do this?

A.
database

B.
import

C.
while loop

D.
for loop

Answers

Answer:

C, while loop.

Explanation:

In a while loop, the program repeats itself until the given condition is met. In pseudocode, you could represent this as:

while input is not an option:

print Sorry, but this isn't one of your options.

Brainliest would be appreciated if this answer helped you :)

Using the spreadsheet above, what formula is in cell C3 to calculate the percentage of the total bushels that oranges are? The formula should be written in a way that it can be readily copy-and-pasted into cells C2, C4 and C5 to calculate the percentage of the total bushels of other fruits.)

Answers

Cell C3 has the formula =B3/$B$6 to determine how many bushels of oranges there are overall.

Which two methods are there for copying the cell's formula?

To pick the formula cell, click on it. To copy the formula, press Ctrl + C. Wherever you want to paste the formula, choose a cell or range of cells (to select non-adjacent ranges, press and hold the Ctrl key). To paste the formula, press Ctrl + V.

What is the proper format for writing a formula?

The ideal solution is It must always start with the equals (=) symbol. Simple formulas always begin with the equal sign (=), are composed of numeric constants, and then include calculation operators like plus (+), minus (-), and an asterisk (*).

To know more about spreadsheet visit :-

https://brainly.com/question/8284022

#SPJ1

Choose the correct term to complete the sentence.
A_____ search compares the first item to the goal, then the second, and so on.

linear or binary?

Answers

Answer:

Linear

Explanation:

In a linear search, you're going through each element, for example in an array. This is done in O(n) time complexity, n being the amount of elements in the array. You go through each elements comparing if it is the goal.

In a binary search, you divide and conquer until you reach your answer, making the question into smaller subproblems until you solve it. Note that you can only perform a binary search on a sorted array and it is in O(log(n)) (base 2) time complexity.

prove that the safety algorithm presented in section banker's algorithm requires an order of operations.

Answers

Bankers algorithm is mostly used in banking systems to determine whether or not to grant a loan to a certain applicant.

How do you find the safe sequence in Banker's algorithm?

For this reason, we use the banker's algorithm to identify the safe state and the safe sequence, such as P2, P4, P5, P1, and P3. In order to grant the Request (1, 0, 2), we must first verify that Request = Available, which means that (1, 0, 2) = (3, 3, 2) since the condition is true. Thus, the request is received instantly by process P1.

The banker's algorithm is a resource allocation and deadlock avoidance algorithm that simulates resource allocation for predetermined maximum possible amounts of all resources, performs a "s-state" check to look for potential activities, and then determines whether allocation should be permitted to continue. The Banker's Algorithm is frequently used in the banking sector to prevent gridlock. You can use it to determine if a loan will be approved or not.

To learn more about Banker's algorithm refer to :

https://brainly.com/question/28236065

#SPJ4

Windows Network Diagnostics, a GUI tool included with Windows 7 and Windows 8.x, will diagnose a network problem and instruct you on how to solve the problem. True or False

Answers

A GUI application called Windows Network Diagnostics that comes with Windows 7 and Windows 8.x will diagnose a network issue and provide you instructions on how to fix it. The assertion is accurate.

What is the purpose of GUI?

Choice points will be shown to the user that are easy to spot, understand, and utilize. In other words, GUI makes it possible for you to control your device using a mouse, a pen, or even your finger. GUI was created because text command-line interfaces were convoluted and difficult to comprehend.

What GUI examples are there?

Computer monitors, mobile devices like smartphones and tablets, and gaming consoles are a few examples of GUIs. The software on the gadget continuously scans the screen to ascertain where and how the pointing devices are moving.

To know more about GUI tool visit:

https://brainly.com/question/10729185

#SPJ4

Listen The principle of limiting users' access to only the specific information required to perform their assigned tasks. 1) Blueprint 2) Framework 3) Least privilege 4) Need-to-know 5) Security model Question 3 (1 point)

Answers

Least privilege is the principle of limiting users' access to only the specific information required to perform their assigned tasks.

What is a leat privilege?The idea that a security architecture should be built so that every entity is given the minimal system resources and authorizations necessary for them to carry out their function.Information security is a complicated, diverse discipline that is based on numerous fundamental ideas. Any information security programme should aim to achieve the three most crucial ones: confidentiality, integrity, and availability (also known as the CIA triad).The cyberattack surface is smaller as a result.Least privilege enforcement contributes to lowering the overall cyber attack surface by reducing super-user and administrator privileges (which provide IT administrators unrestricted access to target systems).The two terms' purviews differ, and this is why: The idea of least privilege also applies to non-human users such as system accounts, programmes, services, and devices, whereas need-to-know only considers how many people can read a given piece of information.

To know more about leat privilege refer to:

https://brainly.com/question/29793574

#SPJ4

watch with native subtitles then watch it with subtitles in target language then watch it with no subtitkes

Answers

Studies have shown that, in general, it is preferable to employ foreign-language subtitles when watching foreign-language content as opposed to native-language subtitles, however the advantages of doing so are limited to certain components of the learning process.

Do you need subtitles to view in the target language?

It is often preferable to watch movies, TV shows, and other media with subtitles than without them if they are in your target foreign language. Subtitles in a foreign language often function as a study aid a little bit better than subtitles in a native language.

Is it better to watch a show with or without subtitles?

If you're a total newbie, it's a good idea to watch an episode of a show first with subtitles in your native language, and then without any subtitles.

To know more about language subtitles visit :-

https://brainly.com/question/14277448

#SPJ4

in python
The program is the same as shown at the end of the Merge sort section, with the following changes:
Numbers are entered by a user in a separate helper function, read_nums(), instead of defining a specific list.
Output of the list has been moved to the function print_nums().
An output has been added to merge_sort(), showing the indices that will be passed to the recursive function calls.
Add code to the merge sort algorithm to count the number of comparisons performed.
Add code at the end of the program that outputs "comparisons: " followed by the number of comparisons performed (Ex: "comparisons: 12")
Hint: Use a global variable to count the comparisons.
Note: Take special care to look at the output of each test to better understand the merge sort algorithm.
Ex: When the input is:
3 2 1 5 9 8
the output is:
unsorted: 3 2 1 5 9 8
0 2 | 3 5
0 1 | 2 2
0 0 | 1 1
3 4 | 5 5
3 3 | 4 4
sorted: 1 2 3 5 8 9
comparisons: 8
main.py
# Read integers into a list and return the list.
def read_nums():
nums = input().split()
return [int(num) for num in nums]
# Output the content of a list, separated by spaces.
def print_nums(numbers):
for num in numbers:
print (num, end=' ')
print()
def merge(numbers, i, j, k):
merged_size = k - i + 1
merged_numbers = []
for l in range(merged_size):
merged_numbers.append(0)
merge_pos = 0
left_pos = i
right_pos = j + 1
while left_pos <= j and right_pos <= k:
if numbers[left_pos] < numbers[right_pos]:
merged_numbers[merge_pos] = numbers[left_pos]
left_pos = left_pos + 1
else:
merged_numbers[merge_pos] = numbers[right_pos]
right_pos = right_pos + 1
merge_pos = merge_pos + 1
while left_pos <= j:
merged_numbers[merge_pos] = numbers[left_pos]
left_pos = left_pos + 1
merge_pos = merge_pos + 1
while right_pos <= k:
merged_numbers[merge_pos] = numbers[right_pos]
right_pos = right_pos + 1
merge_pos = merge_pos + 1
merge_pos = 0
while merge_pos < merged_size:
numbers[i + merge_pos] = merged_numbers[merge_pos]
merge_pos = merge_pos + 1
def merge_sort(numbers, i, k):
j = 0
if i < k:
j = (i + k) // 2
# Trace output added to code in book
print(i, j, "|", j + 1, k)
merge_sort(numbers, i, j)
merge_sort(numbers, j + 1, k)
merge(numbers, i, j, k)
if __name__ == '__main__':
numbers = read_nums()
print ('unsorted:', end=' ')
print_nums(numbers)
print()
merge_sort(numbers, 0, len(numbers) - 1)
print ('\nsorted:', end=' ')
print_nums(numbers)

Answers

To add code to the merge sort algorithm to count the number of comparisons performed and  at the end of the program that outputs "comparisons: " followed by the number of comparisons performed check the code given below.

What is sort algorithm?

A sorting algorithm is a set of instructions that takes an input array, applies certain operations to the array (also known as a list), and outputs a sorted array.

Sorting algorithms are frequently covered early on in computer science courses because they offer a simple way to introduce other important concepts like Big-O notation, divide-and-conquer strategies, and data structures like binary trees and heaps.

When selecting a sorting algorithm, many factors need to be taken into account.

"""

Python version: 3.6

Python program to sort a list of numbers in ascending order using merge sort

"""

# add a global variable to count number of key comparisons in merge sort and initialize it to 0

comparisons = 0

def read_nums():

"""

Function that takes no inputs and returns a list of integers entered by the user

"""

# read a string of integers and split it into list of strings using default delimiter whitespace

nums = input().split()

# convert the list of strings to list of integers and return it

return [int(num) for num in nums]

def print_nums(numbers):

"""

Function that takes as input a list of numbers and display the

numbers on screen in one line separated by space ending with a newline

"""

for num in numbers:

 print (num, end=' ')

print()

def merge(numbers, i, j, k):

"""

Function that takes as input a list of numbers and 3 integers

representing the start and ends of the sorted left[i, j] and sorted right[j+1, k] sublists

"""

global comparisons # use the global variable comparisons

# calculate the total size of the list after merging the sublists

merged_size = k - i + 1

# create a list of size merged_size and initialize all elements to 0

merged_numbers = []    

for l in range(merged_size):

 merged_numbers.append(0)

 

# set merge_pos to start index of merged_numbers, left_pos to start index of left sublist and right_pos to start index of right sublist

merge_pos = 0  

left_pos = i

right_pos = j + 1  

# loop until end of a sublist is reached

while left_pos <= j and right_pos <= k:

 comparisons += 1 # increment comparisons by 1

 # current element of left sublist is less than current element of right sublist

 if numbers[left_pos] < numbers[right_pos]:

  # insert current element of left sublist into merged_numbers and increment left_pos by 1

  merged_numbers[merge_pos] = numbers[left_pos]

  left_pos = left_pos + 1

 else:

  # else insert current element of right sublist into merged_numbers and increment right_pos by 1

  merged_numbers[merge_pos] = numbers[right_pos]

  right_pos = right_pos + 1

 merge_pos = merge_pos + 1 # increment merge_pos by 1

# loop to copy the remaining elements of left sublist to merged_numbers

while left_pos <= j:

 merged_numbers[merge_pos] = numbers[left_pos]

 left_pos = left_pos + 1

 merge_pos = merge_pos + 1

 

# loop to copy the remaining elements of right sublist to merged_numbers

while right_pos <= k:

 merged_numbers[merge_pos] = numbers[right_pos]

 right_pos = right_pos + 1

 merge_pos = merge_pos + 1

 

# loop to copy the sorted list from merged_numbers to numbers in the range [i, k]

merge_pos = 0

while merge_pos < merged_size:

 numbers[i + merge_pos] = merged_numbers[merge_pos]

 merge_pos = merge_pos + 1

 

def merge_sort(numbers, i, k):

"""

Function that takes as input an unsorted list of numbers and start and end index

of the list to sort and sorts the list in ascending order using merge sort

"""

j = 0

# current list range contains at least 1 element

if i < k:

 # get the index of middle element of the current range

 j = (i + k) // 2

 # output the range for the left and right sublists to sort

 print(i, j, "|", j + 1, k)

 

 # recursively sort the numbers in the range [i,j] and [j+1, k]

 merge_sort(numbers, i, j)

 merge_sort(numbers, j + 1, k)

 

 # merge the sorted lists [i,j] and [j+1,k] to get the sorted list in the range [i,k]

 merge(numbers, i, j, k)

 

if __name__ == '__main__':

# get the list of numbers entered by the user

numbers = read_nums()

# display the unsorted list

print ('unsorted:', end=' ')

print_nums(numbers)

print()

# sort the list in ascending order using merge sort passing the numbers list and 0 and 1 less than size of list as i and k

merge_sort(numbers, 0, len(numbers) - 1)

# display the sorted list

print ('\nsorted:', end=' ')

print_nums(numbers)

# display the number of comparisons using the global variable

print("comparisons:",comparisons)

# end of program

Learn more about sorting algorithm

https://brainly.com/question/14698104

#SPJ4

Which of the following statements describes a limitation of using a computer simulation to model a real-world object or system?(A) Computer simulations can only be built after the real-world object or system has been created.(B) Computer simulations only run on very powerful computers that are not available to the general public.(C) Computer simulations usually make some simplifying assumptions about the real-world object or system being modeled.(D) It is difficult to change input parameters or conditions when using computer simulations.

Answers

A major drawback of simulations is that they are not realistic. People may react differently when faced with real-world situations.

What are the limits of computer simulation?

A good simulation model can be very expensive. Simulations are often expensive because they require significant computational time.

Simulation produces a way to evaluate the solution, but not the solution itself.

Will the simulation affect real-world systems?

Simulations can usually be done manually or with a small calculator. The simulation does not interfere with the real system.

Why are there restrictions on computer models?

All models have limitations as they are not representative of all possible scenarios. They use current knowledge and scientific data, which is subject to change, and therefore models based on that knowledge and data.

To know more about computer simulation visit;

https://brainly.com/question/15494529

#SPJ4

look and clook differ from scan and cscan in that they examine the queue of requests and move the head to the nearest track request first. T/F

Answers

False. Unlike scan and cscan, look and clook scan the queue of requests instead of moving the head to the nearest track request first.

What distinguishes the look and Clook algorithms?

scheduling technique for C-LOOK disk. The head fulfills the last request in one direction, then jumps in the opposite direction to advance toward the remaining requests, fulfilling them in the same manner as previously. It satisfies requests just in one direction, unlike LOOK.

How do SCAN and Cscan vary from one another?

A longer waiting period is offered when requesting locations using the SCAN Algorithm. In comparison to the elevator algorithm, the C-SCAN algorithm offers uniform waiting times when seeking locations.

To know more about queue requests  visit :-

https://brainly.com/question/15351801

#SPJ4

What is the term for words having different meanings and outcomes based on their capitalization within the Python language?

Answers

truecasing...................

Truecasing is the term for words having different meanings and outcomes based on their capitalization within the Python language.

What is Python language?

Python is a popular computer programming language used to create software and websites, automate processes, and analyze data.

Python is a general-purpose language, which means it may be used to make many various types of applications and isn't tailored for any particular issues.

Python is used for data analytics, machine learning, and even design in addition to web and software development.

Python's capitalization() function copies the original string and changes the first character to an uppercase capital letter while leaving the rest of the characters in lowercase.

The NLP challenge of truecasing involves determining the appropriate capitalization of words in a text in the absence of such information.

Thus, the answer is truecasing.

For more details regarding python, visit:

https://brainly.com/question/18502436

#SPJ2

can value 9 represented in excess 8 notation?

Answers

Negative numbers are listed below it while positive numbers are listed above it. The pattern for eight is represented by the value zero in excess 8 notation.

What does life have worth?

Your truly value you hold dear in terms of how you live and do business. They should serve as the foundation for your priorities, and you probably use them to determine if your life is heading in the right way.

Why are values crucial?

Our behaviors, words, and ideas are influenced by our values. Our beliefs are important because they support our personal growth. They aid us in constructing the future we desire. Every person and every organization participates in

To know more about value visit:

https://brainly.com/question/10416781

#SPJ1

Other Questions
which size of particulates are the most harmful to human health? group of answer choices greater than 4.0 microns 2.0 microns to 4.0 microns 0.1 micron to 2.0 microns 0 microns to 0.1 microns A volunteer for a political campaign makes phone calls to raise funds for the candidate. The number of calls that she has left to make can be estimated with the equation C = 80-7h, where C is the number of calls left to make that day and h is the number of hours she has worked that day. How many calls does she have to make per day? A retina of a human eye can detect light when radiant energy incident on it is at least 4.0 x 10^-17 J. For light of 600-nm wavelength, how many photons does the correspond to? write a story and create a star schema in erwin: you need to add attributes to each entity (table) your model should include at least one fact and four dimensions you must submit your solution using erwin (as a .erwin file) and a pdf file. the erwin includes star schema and pdf file includes the story. Identify the type of biobank that is usually found in hospitals and clinics and generally stores leftover samples collected during routine medical care (for example, tissue from a biopsy or blood draw):Residual Sample Biobank Consider the poem in Just by E.E. Cunnings. Then, in a response of two well developed paragraphs, explain the connection between the poem and Greek myth, before describing how the two works differ.in JustBy E.E. Cunningsin Justspring when the world is mudluscious the littlelame balloon manwhistles far and weeand eddie and bill comerunning from marbles andpiracies and it'sspringwhen the world is puddle wonderfulthe queerold balloon man whistlesfar and weeand betty and disbel come dancingfrom hopscotch and jump rope andit'sspringandthegoat footedballoon Man whistlesfarandwee Mycotoxins are most commonly found in. A) hamburger and sausage. B) spinach and tomatoes. C) milk and cheese. D) peanuts and grains. What is Black Boy by Richard Wright about? Short summery Ben has a barrel in his garden to collect rainwater. The barrel can hold less than 42 gallons of water. Which inequality represents this situation? Ow> 42 Ow< 42 w 42 Ow 42 what method of gang enforcement relies on police, armed with arrest and search warrants, to enter a neighborhood to make as many arrests of gang members as possible? If f(x) = x + 14x + 61x + 84, which of the following is not a factor of f(x)? complete the following table, which lists information about the measured acid dissociation constants of three unknown weak acids. Which of the following is NOT an effective way to manage stress? A)Eat a healthy dietB)Exercise regularlyC)Keep feelings privateD)Make time for hobbies which of the following is necessary in order to establish that a mutual mistake involving a basic assumption about the subject matter of a contract was made? question 44 options: the mistake involved a misunderstanding regarding the applicability of the uniform commercial code (ucc) to the contract the mistake involved the existence, quality, or quantity of the items to be exchanged the mistake involved the identity of parties to the contract or whether a party misunderstood the time constraints involved in the contract the mistake involved whether a party could profit from the contract the mistake involved whether a party could profit from the contract or whether a party misunderstood the time constraints involved in the contract which element of gothic fiction is a writer using in a story about a man searching for gold who keeps having dreams that the mine caves in on him PLEASE HELP QUICK IT'S FOR MY EXAM PLEASEEEEWhat geographic tool creates an image of Earth that shows it's physical features and altitude more realistically than a map or a globe?A: Satellite ImagesB: 3-D modelsC: Charts and GraphsD: Global Positioning images when kendra challenged her friends on their prejudicial thinking, she was rejected by her group and no longer gets invitations to go out with them. this is a consequence of . urgent!!In gravitropism, auxin affects the cells in shoots and roots in opposite ways.How are the two effects different?OA. In stems, more auxin causes cells to grow longer. In roots, lessauxin causes cells to grow longer.B. In stems, less auxin causes cells to strengthen. In roots, moreauxin causes cells to strengthen.C. In stems, less auxin causes cells to shorten. In roots, more auxincauses cells to shorten.OD.stems, more auxin causes cells to grow wider. In roots, lessauxin causes cells to grow wider. Match each of the following terms to its definition:I. office support system (OSS)II. natural language processing (NLP)III. management information system (MIS)IV. decision support system (DSS)V. enterprise resource planning (ERP) systemA. provides managers with timely and accurate informationB. software system that integrates multiple system data sources and ties together the various processes of an organizationC. helps managers develop solutions for specific problemsD. assists employees in day-to-day tasks and communicationE. communicates with computer systems using a natural spoken or written language In the context of data backup and recovery, the activities of a _____ includes the DBA operations that are classified as disaster management.