To find a value in an ordered array of 100 items, how many values must binary search examine at most? A) 7. B) 10. C) 50. D) 100. E) 101.

Answers

Answer 1

The values that binary search must examine at most is A. 7.

What is binary search?

Binary search is a type of search for array in many programming language. Binary search work is to divide the array into two part repeatedly until the value is found.

Examined process of binary search can be calculated mathematically using [tex]log_2[/tex]. Then, [tex]log_2[/tex] (100) is equal to 6.64, we round up so we get 7.

For visualization the logic we only need to divide the amount of item in array by 2 until the result is approximately 1. So,

100 / 2 = 50

50 / 2 = 25

25 / 2 = 12.5 (round up to 13)

13 / 2 = 6.5 (round up to 7)

7 / 2 = 3.5 (round up to 4)

4 / 2 = 2

2 / 2 = 1

So, we divide 100 item array by 2 for 7 times. Then, the values must binary search examine at most is 7.

Learn more about array here:

brainly.com/question/28565733

#SPJ4


Related Questions

write a function called checkfactor that takes two arrays of positive numbers, firstnumberrow and secondnumberrow. checkfactor checks if the first entry in firstnumberrow is divisible by the first entry in secondnumberrow, and performs the same operation on the next array elements until all entries have been checked. all the numbers are positive and the number of entries in the arrays are the same. the function should return the identified divisible numbers in two row arrays named firstdivisible and seconddivisible. restrictions: branches or loops should not be used. the code must use the internal mod function.

Answers

To write a function called checkfactor that takes two arrays of positive numbers, firstnumberrow and secondnumberrow.

What is arrays?

A group of related data elements stored in close proximity to one another in memory is known as an array. Each data element can be accessed directly by using only its index number, making it the simplest data structure.

For instance, defining separate variables for each subject is not necessary if we want to store a student's grades across 5 subjects. Instead, we could define an array that would keep the data elements in close proximity to one another.

Each subject's marks are located at a specific location in the array, i.e., marks[0] denote the marks scored in the first subject, marks[1] denote the marks scored in the second subject, and so on. This defines the marks that a student earned in each of the five subjects that make up the array marks[5], which is where the student's scores are defined.

↓↓//CODE//↓↓

function [firstDivisible, secondDivisible] = checkFactor(firstNumberRow, secondNumberRow)

     

             testArray = ~logical(rem(firstNumberRow,secondNumberRow));

             firstDivisible = firstNumberRow(testArray);            

             secondDivisible = secondNumberRow(testArray);

mod(3,1);

end

Learn more about arrays

https://brainly.com/question/26134656

#SPJ4

Which of the following statements are TRUE?
I Password-protected websites are defined as Advertising
II Password-protected websites are defined as Sales Literature
III Password protected websites can be required to be filed with the Administrator
IV Password protected websites cannot be required to be filed with the Administrator
A I and III
B I and IV
C II and III
D II and IV

Answers

II and III are the real answers to the above question.

Websites that need a password are seen by a certain audience and are thus considered sales material. However, a website that is not password-protected is known as advertising since it is open to the whole public.

Describe sales literature.

Including but not limited to prospectuses, pamphlets, circulars, forms, material published in or intended for use in a newspaper, magazine, or other periodicals, radio, television, telephone, or tape recording, videotaped display, signs, billboards, motion pictures, telephone directories (other than routine listings), other public media, or any other written communication, sales literature is any written communication distributed or generally available to customers or the public.

Sales literature includes circulars, form letters, brochures, telemarketing scripts, seminar texts, published articles, and press releases that are typically distributed or made broadly available to customers of the bank or the general public, aside from advertisements. 

To know more about literature visit:

https://brainly.com/question/10426739

#SPJ4

You are creating a new Active Directory domain user account for the Rachel McGaffey user account. During the account setup process, you assigned a password to the new account. However, you know that the system administrator should not know any user's password for security reasons. Only the user should know his or her own password-no one else. Click the option you would use in the New Object-User dialog to remedy this situation.User must change password of next at next logon

Answers

User must modify the next logon's password. "Logon procedure" is another phrase that uses logon as a modifier. To log on is the two-word verb form.

The process of login is used to access an operating system or application, typically on a distant computer. A user almost always has to have both a user ID and a password in order to log on. Simply put, logging in implies confirming the identity of the user. It denotes that a user has been recognized and given permission to enter a website or program where they have already registered. Both web portals and web apps support login. There is no difference in meaning between the spellings login and log-in. They allude to entering a password and username when login into a computer or system, and are from a more recent, technological era.

Learn more about logon here

https://brainly.com/question/14454005

#SPJ4

which of the following can be used to replace so that the program works as intended for every possible list of positive n

Answers

This code can be used to replace "for n in list:" so that the program works as intended for every possible list of positive n.

What is code?
A code is a set of rules used in communications and data processing to change information, such as a letter, word, audio, image, or gesture, into a different form, sometimes shortened as well as secret, for transmission thru a communication channel as well as storage inside a storage medium. An early example is the development of language, which made it possible for someone to verbally express what they were feeling, thinking, or seeing to others. Speech, however, is limited in its audience to those present at the time the speech is delivered and in its range of communication to the range of a voice. The development of writing, which transformed verbal communication into visual symbols, increased the potential for communication across time and space.

for n in range(1, len(list) + 1):

This code can be used to replace "for n in list:" so that the program works as intended for every possible list of positive n. This is because the range() function generates a sequence of numbers starting from the first argument (in this case, 1) and ending at the second argument (in this case, the length of the list plus 1). This means that the loop will iterate through each number in the sequence and thus through each element in the list.

To learn more about code
https://brainly.com/question/29433728
#SPJ4

The query [windows], English (US) can have two common interpretations: the operating system and the windows in a home.

Answers

The query [windows], English (US) can have two common interpretations: the operating system and the windows in a home.

to remove all the even numbers from input row array inrowarray, which contains integer numbers. the function removeevens should use the mod internal function and operate on a row array of any length. hint: logical indexing and the double square brackets [] should be used. the mod function should be used to identify even numbers, along with combination with logical indexing, and the empty array operator [] to remove the even numbers. restrictions: loops should not be used. ex: inputrowarray

Answers

The program below is to remove even numbers:

% Define the function.

function [ output_args] = removeEvens( input_args)

%UNTITLED Summary of this function goes here

% Detailed explanation goes here

%Remove the even number from the array using mod function.

output_args = input_args (mod(input_args,2)~=0);

%Display the message.

disp('odd Values are');

%Display the results.

disp(output_args);

%Terminate the function.

end

Function Call:

%Function Call

inputRowArray = [1,2,3,4,5]

removeEvens(inputRowArray)

To know more about function call click on the below link:

https://brainly.com/question/29847161

#SPJ4

issues with online learning, as students encounter network problems and lack high-quality technological learning tools, and not all students have access to a decent internet connection. doi

Answers

Communication is frequently asynchronous in an e-learning environment, which causes a chasm between the teacher and the learner.

In these spaces, it's simple for misunderstandings to arise, often causing a problem to worsen before it can be fixed. Communication is frequently asynchronous in an e-learning environment, which causes a chasm between the teacher and the learner. In these spaces, it's simple for misunderstandings to arise, often causing a problem to worsen before it can be fixed. When you take classes online rather than in a traditional classroom, this is known as online learning. Online learning can be right for you if your schedule makes it difficult for you to attend classes, if you prefer to learn at your own pace, or if you live far from the campus.

Know more about e-learning here:

https://brainly.com/question/15288314

#SPJ4

isabella and three of her friends were comparing their typing speeds as measured by an online typing test. the average (arithmetic mean) of the 4 speeds was 45 words per minute (wpm), the range of the 4 speeds was 40 wpm, and the median of the 4 speeds was equal to isabella's speed. in a manner that is jointly consistent with the given information, select for slowest a speed that could be the slowest of the 4 speeds, in wpm, and select for median a value that could be the median of the 4 speeds, in wpm. make only two selections, one in each column

Answers

Choose a number for Median that may be the median of the four speeds, in wpm, and for Slowest that could be the slowest of  speeds, in wpm. Only two choices should be made, one for each column.

What do you mean by Median ?

A data set's median value is the point where 50% of the data points have values that are lower or equal to it, and 50% of the data points have values that are higher or equal to it. To arrange the data points in ascending order for a small data set, count the number of data points (n).Check to see if n is an even number of values. Find the two numbers that are in the centre of the table of data. Adding the two middle numbers together and dividing the result by two will get the average of the two numbers. Sentence two splits into three parts, but the commas make it simple to distinguish the ideas: The standard rate was 45 wpm.

Learn more about Median refer to ;

https://brainly.com/question/26940257

#SPJ4

[true of false] consider sending a tcp segment from a host in 172.16.1/24 to a host in 172.16.2/24. suppose the acknowledgment for this segment gets lost, so that tcp resends the segment. because ipsec uses sequence numbers, r1 will not resend the tcp segment.

Answers

This statement is false. because ipsec uses sequence numbers, r1 will not resend the tcp segment.

Transmission: Encrypted IPsec packets tour throughout one or more networks to their vacation spot using a delivery protocol. At this level, IPsec site visitors differs from normal IP traffic in that it most customarily makes use of UDP as its delivery protocol, rather than TCP.

IPsec is a collection of protocols broadly used to comfortable connections over the internet. The three important protocols comprising IPsec are: Authentication Header (AH), Encapsulating protection Payload (ESP), and net Key change (IKE).

IPsec VPN is a protocol, includes set of requirements used to set up a VPN connection. A VPN affords a way by way of which far off computer systems talk securely across a public WAN inclusive of the net. A VPN connection can hyperlink  LANs (site-to-web site VPN) or a far flung dial-up user and a LAN.

To know more about ipsec, visit:-

https://brainly.com/question/29487470

#SPJ4

write a method named evennumbers that takes two integer arguments (say, num1 and num2) and prints all even numbers in the range {num1, num2}. the method does not return any value to the caller. (10) call the above evennumbers method from main by passing two numbers input by the user. java

Answers

#include "studio.h" the main function () "%d%d", printf ('%d', 'num1*num1'); return 0;.

Calculating the sum of even integers from 2 to infinity is easy when using the formula for the sum of all natural numbers and arithmetic progression.

To read a number from the user's keyboard, a Java program creates a Scanner object, reader. The variable num then stores the entered number.

Now, we use the% operator to compute the remainder of num and check to see if it is even or odd by seeing if it is divisible by two.

This is done using the if...else expression in Java. "num is even" is printed if num is divisible by two. Printing a num is strange, if anything.

To determine whether num is even or odd in Java, use the ternary operator.

Know more about Java here:

https://brainly.com/question/12978370

#SPJ4

a business owner that needs carefully normalized tables would likely need a relational database instead of a nosql database.

Answers

Relational databases are a powerful tool for businesses, providing an efficient way to store and manage data. They are designed to store data in normalized tables, which makes them ideal for businesses that require a large amount of organized data.

The Benefits of Using Relational Databases for Businesses

Relational databases are designed to store data in normalized tables, which means that data is stored in a consistent, organized structure that minimizes data redundancy and ensures data integrity. This is ideal for businesses that require a large amount of structured data, such as:

Customer informationInventory recordsSales data

A nosql database, on the other hand, is designed for unstructured data and does not require careful normalization. It is better suited for applications that require quick access to large amounts of data, such as web or mobile applications.

Learn more about Database: https://brainly.com/question/518894

#SPJ4

an area to position fields that you want to display as columns in the pivottable is called .

Answers

column space. a location where you can place the fields that you want to appear as columns in the PivotTable report. If field names are added here, they become column titles and are used to organize the data into columns.

What do the columns in a pivot table mean?

The Task Pane for PivotTable Fields includes PivotTable regions. You can create alternative PivotTable layouts by placing the chosen fields in the appropriate locations.

Which PivotTable option can be found in the PivotTable fields area?

The pivot table's four sections, Report Filter, Column Labels, Row Labels, and Values, can be found at the bottom of the PivotTable Field List window. The fields from that layout will appear in those places if you utilized a Recommended PivotTable layout.

To know more about PivotTable visit :-

https://brainly.com/question/19787691

#SPJ4

Q1) You are given two sets of 100 points that fall within the unit square. One set of points is
arranged so that the points are uniformly spaced. The other set of points is generated from a
uniform distribution over the unit square.
(a). Is there a difference between the two sets of points?
(b). If so, which set of points will typically have a smaller SSE for K = 10 clusters?
(c). What will be the behavior of DBSCAN on the uniform dataset? The random dataset

Answers

(a) Yes, there is a difference between the two sets of points. The first set of points is arranged so that they are uniformly spaced, while the second set of points is generated from a uniform distribution over the unit square. This means that the points in the first set will be more regularly spaced, while the points in the second set will be more randomly distributed.

(b) The set of points that will typically have a smaller SSE for K = 10 clusters will be the set of points that are uniformly spaced. This is because when the points are more regularly spaced, it is easier for the clustering algorithm to identify the clusters and to minimize the SSE.

(c) The behavior of DBSCAN on the uniform dataset will likely be different than its behavior on the random dataset. Because the points in the uniform dataset are more regularly spaced, DBSCAN may be able to more easily identify clusters and to assign points to those clusters. In contrast, the points in the random dataset are more randomly distributed, which may make it more difficult for DBSCAN to identify clusters and to assign points to those clusters.

DBSCAN (Density-Based Spatial Clustering of Applications with Noise) is a popular clustering algorithm used in data mining and machine learning. It is a density-based algorithm, meaning that it can identify clusters of varying densities (unlike hierarchical clustering, which is based on distance measures and creates clusters with a uniform density). DBSCAN works by identifying points in a dataset that are densely packed together and using them as "core" points to define clusters. It then includes all points that are reachable from the core points within a specified distance (called the "eps" parameter) as part of the cluster. Points that are not part of any cluster are considered "noise" and are typically ignored.

Learn more about DBSCAN, here https://brainly.com/question/29350094

#SPJ4

Each grammar in the following exercise is proposed as generating the set L of strings over {a, b} that contain equal numbers of a’s and b’s. If the grammar generates L, prove that it does so. If the grammar dons not generate L, give a counterexample and prove that your counterexample is correct. In each grammar, S is the starting symbol.
S→abS | baS | aSb |bSa | λ

Answers

It can be written as s1bs2 with the same number of a's and b's for each s. (and is possibly empty). The induction hypothesis holds true for each sisi because S and L are strictly shorter than L and we are done.

What is string?

A string is any group of characters that a script interprets literally. Examples of strings include "hello world" and "LKJH019283." A string is associated with a variable in computer programming.

In the majority of programming languages, a string can either be all letters or all numbers (alphanumeric). Many languages also allow for a string to contain only numbers, but if this is the case, the string is frequently categorized as an integer.

↓Answer↓

d. {{a,b}* : the number of a’s = the number of b’s }

V = {S, A, B, a, b }

∑ = { a,b }

R = {

S → ε

S → SASBS

S → SBSAS

A → a

Induction can be used to demonstrate how to derive any balanced word ww (one with an equal number of as and bs) from S in the opposite direction.

It is obviously feasible if the length L of ww is less than 2 to say: There are no words in the language with a length of 1, and is created by

S→abS

based on the letter L's first sound Let's say L is the first letter. (The symmetrical alternative case.) Then

S→abS | baS | aSb |bSa | λ

We now have a word L in a way that S→abS | baS | aSb |bSa | λ

and a  has one more b than it has a's.

Learn more about strings

https://brainly.com/question/25324400

#SPJ4

if you are creating an object and you want to inherit properties and methods from another object, you can set the object equal to an instance of the object that you want to inherit.

Answers

All enumerable properties of one or more source objects are copied to the destination object using the Object. assign() method. The changed target object is returned by this function.

If the destination object's properties and sources' properties have the same key, the sources' properties take precedence. An object's new attributes and methods can be added using prototype. The process of copying properties from one object to another without maintaining a reference between the two objects is known as concatenative inheritance. It makes use of the dynamic object extension capability of JavaScript. To find out the class of the object that was created, use println(this. getClass(). getName()); void public static main (String[] args) The construction of an object is indicated by InheritanceObjectCreation obj = new InheritanceObjectCreation().

Learn more about string here-

https://brainly.com/question/27832355

#SPJ4

soft assignment (gaussian mixtures) in clustering helps reduce overfitting compared with hard assignment (k-means).

Answers

Although K-Means is an easy and quick clustering technique, it might not fully account for the heterogeneity present in Cloud workloads.

Complex patterns can be found using Gaussian Mixture Models, which can then be combined into cohesive, homogenous components that closely resemble the data set's actual patterns. The shape of the decision boundaries is the first discernible distinction between K-Means and Gaussian Mixtures. With a covariance matrix, we may create elliptical borders for GMs rather than circular limits for K-means, which are more rigid. The fact that GMs is a probabilistic algorithm is another issue.

Unsupervised clustering methods include K-Means and the Gaussian Mixture Model (GMM). Using distance from the cluster centroid, K-Means organizes data points. GMM assigns data points to clusters in a probabilistic manner through. Various Gaussian distributions are used to describe each cluster.

Know more about data here:

https://brainly.com/question/14581918

#SPJ4

If you define a different column span settings for the medium display size, that width setting will persist throughout the large and extra-large sizes unless you define different settings for those displays as well.
True

Answers

The correct answer is True  a different column span settings for the medium display size.

I refer to computers with screens larger than those on MacBooks or Windows laptops when I talk about huge desktops. IMacs and monitors with displays of at least 20 inches are considered giant desktops. Remain indoors or open Display options To scale and layout, scroll. Then, in Choose an option to change the font size for text, applications, and other objects. The text, applications, and icon sizes are controlled by the DPI setting. They will seem smaller and bigger respectively with a lower and higher DPI level. Windows is configured at 96 DPI by default.A mainframe computer, often known as a mainframe or big iron, is a type of computer used largely by large enterprises to process massive amounts of data for projects like censuses.

To learn more about span click the link below:

brainly.com/question/13678908

#SPJ4

Assume that an ArrayList named salarySteps whose elements are of type Integer and that has exactly five elements has already been declared. Write a single statement to assign the value 30000 to the first element of this array.

Answers

An ArrayList named salarySteps whose elements are of type Integer and that has exactly five elements has already been declared salarySteps[0] = 30000;

The number zero (0), a positive natural number (1, 2, 3, etc.), or a negative integer denoted by a minus sign (1, 2, 3, etc.) are all examples of integers. The inverse additives of the equivalent positive numbers are the negative numbers. The boldface Z is a common mathematical symbol for the set of integers. The lowest group and ring of the natural numbers are formed by the integers. To distinguish them from the more generic algebraic integers, the integers in algebraic number theory are occasionally designated as rational integers. In actuality, (rational) integers are rational numbers that are also algebraic integers.

Learn more about Integer here

https://brainly.com/question/929808

#SPJ4

7.26 lab: vending machine given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a vendingmachine object that performs the following operations: purchases input number of drinks restocks input number of bottles reports inventory the vendingmachine is found in vendingmachine.java. a vendingmachine's initial inventory is 20 drinks.

Answers

The VendingMachine class is a Java class that represents a vending machine. It has three methods: purchase, restock, and reportInventory. The purchase method takes in an integer and subtracts the number of drinks from the vending machine's inventory.

public class VendingMachine {

   

   private int drinks;

   private int bottles;

   

   public VendingMachine() {

       this.drinks = 20;

       this.bottles = 0;

   }

   

   // Purchases input number of drinks

   public void purchase(int drinks) {

       if (this.drinks >= drinks) {

           this.drinks -= drinks;

       } else {

           System.out.println("Not enough drinks in inventory to purchase.");

       }

   }

   

   // Restocks input number of bottles

   public void restock(int bottles) {

       this.bottles += bottles;

   }

   

   // Reports inventory

   public void reportInventory() {

       System.out.println("Drinks: " + this.drinks);

       System.out.println("Bottles: " + this.bottles);

   }

}

The VendingMachine class is a Java class that represents a vending machine. It has three methods: purchase, restock, and reportInventory. The purchase method takes in an integer and subtracts the number of drinks from the vending machine's inventory. The restock method takes in an integer and adds the number of bottles to the vending machine's inventory. The reportInventory method prints out the number of drinks and bottles in the vending machine's inventory. The vending machine's initial inventory is 20 drinks.

What is VendingMachine?
A vending machine is an automated machine that provides items such as snacks, beverages, cigarettes and lottery tickets to consumers after money or a credit card is inserted into the machine. Vending machines are popular in locations where people have to wait for a long time such as hospitals, airports, railway stations, schools or offices. The idea of a vending machine was first proposed in the first century A.D. by Hero of Alexandria, a Greek mathematician and engineer. Since then, the concept of a vending machine has been implemented in various forms around the world. These machines are now equipped with the latest technology to offer a variety of products and services. They are also used to dispense medicines and other medical products. Vending machines are a convenient way to purchase items and services without having to wait in line or interact with a salesperson.

To learn more about VendingMachine
https://brainly.com/question/28287124
#SPJ1

When selecting a suitable enclosure for a forensic workstation there are several factors to consider. Select some appropriate factors from the following list that are essential.
⸠Sufficient drive bays
⸠Hot swap capability for some drive bays
⸠A locking front panel
⸠Quiet cooling fans
⸠A decent number of slots for expansion cards

Answers

Plenty of drive bays some drive bays have the hot swap capability, sufficient spaces for expansion cards.

What are the main tasks involved in planning for forensic readiness?

Find any necessary or relevant prospective evidence for an incident. Find the evidence's original source. Create a policy that establishes the least disruptive approach to legally obtaining electronic evidence.

What are forensics' "big 4"?

There will be a forensic accounting department in the big accounting firms. Forensic accounting departments, for instance, are available at all four of the Big 4 accounting firms: Deloitte, PwC, Ernst & Young, and KPMG. Additionally, BDO International is a significant accounting business with forensic accountants on staff.

To know more about drive bays visit :-

https://brainly.com/question/28270958

#SPJ4

write the following method that returns true if the list is already sorted in increasing order. public static boolean issorted(int[] list) write a test program that prompts the user to enter a list and displays whether the list is sorted or not. here is a sample run. note that the first number in the input indicates the number of the elements in the list. enter list: 8 10 1 5 16 61 9 11 1 the list is not sorted enter list: 10 1 1 3 4 4 5 7 9 11 21 the list is already sorted starter files public class test { public static void main(string[] args) { // fill in the code here

Answers

CODE IN JAVA: SortingDemo.java file: import java.util.Scanner; public class Problem3 { public static void main(String[] args) { Scanner scanner = new Scanner(System.

What does code in Java mean?

Java code runs on any device that has JVM on it, while not having any unique software. This lets in Java builders to create “write once, run anywhere” programs, which make collaboration and distribution of thoughts and packages easier.

What are the three varieties of Java?

Java Platform include: Java EE (Enterprise Edition Java Platform), Java SE (Standard Edition Java Platform) and Java ME (Micro Edition Java Platform).

How to jot down a code in Java?

The simple steps to create the Hello World application are: Write the Java Source Code. Save the File. Open a Terminal Window. The Java Compiler. Change the Directory. Compile Your Program. Run the Program.

To learn more about Java visit:

https://brainly.com/question/5326314

#SPJ4

after you have attempted to open a file, you can test the as if it were a boolean expression, to determine whether the file was successfully opened.

Answers

By using the Boolean expression test after making an attempt to open a file, you may detect whether the file was opened successfully or not. in the field of computing.

A Boolean expression is a type of expression used in programming languages that, upon evaluation, returns a Boolean value. The value of a Boolean is either true or false. The true or false Boolean constant, Boolean-typed variables, Boolean-valued operators, and Boolean-valued functions are all examples of Boolean expressions. Information, automation, and computation are the subjects of computer science. Algorithms, computation theory, information theory, automation, and other theoretical and practical fields are all part of computer science (including the design and implementation of hardware and software).

Learn more about boolean expression here

https://brainly.com/question/13265286

#SPJ4

The complete question is-

after you have attempted to open a file, You can determine whether the file was successfully opened or not by the test which expression?

the amount of radioactive substance leaked into the environment from a damaged nuclear waste storage container.

Answers

Environment pollution results from it. Radioactive pollution can readily travel throughout the environment and into different ecosystems if it is not adequately secured. Pollution in the water, land, and air can all be harmful to people and other living things.

According to the definition of environmental pollution, it is "the contamination of the earth and atmosphere system's physical and biological components to the point where normal environmental processes are severely impacted." The introduction of toxins into the environment that have a negative impact on it is known as pollution. Pollution can be any kind of material or energy. Both naturally occurring contaminants and imported substances/energies can be considered pollutants, which are the elements of pollution. Pollutants are emitted by automobile exhaust pipes. Air pollution results from burning coal to produce energy. Garbage and sewage from homes and businesses can contaminate the land and water. Pesticides affect animals by leaking into streams and killing vegetation and insects with chemical poisons.

Learn more about Environment pollution here

https://brainly.com/question/21513047

#SPJ4

jane, an employee in the human resources department, has created several important pdf documents on her computer that all office managers in her building must read. she would like to make locating these files simple and maintain them as little as possible. it is important that no other users are permitted to view these documents. as the it technician for your company, jane has asked you to make this possible. which of the following would most likely fulfill jane's request?

Answers

A network share is likely to satisfy Jane's needs.

A feature that makes it possible to share resources via a network is referred to as network sharing. Over a network, resources like movies, files, folders, and documents may be exchanged.

This suggests that a network share may be used to distribute multiple significant PDF files that Jane prepared on her computer to other office managers in the same building.

Jane will need to connect her device to a network and get permission for the office managers to utilize the same network in order to complete the task. Everyone will be able to share and trade information across this network thanks to network sharing.

Network sharing may, however, take place at several levels. The primary levels are:

specific system level

various systems level

An organization will be required to set up public folders containing information that may be accessed by any employee under the individual system level.

However, by connecting to Wi-Fi or a LAN, or both, other computers may access the public folder via a network share.

If a firm switched on network sharing, it would imply that other users may access files other than the public directories under a multi-system level.

To know more about networks click on the link below:

https://brainly.com/question/28342757

#SPJ4

Design a program that plays the following game. At the beginning of the game M players each has N points. The game evolves as a sequence of rounds. In a round, the players each toss a coin. They then count the number of heads and the number of tails that appear. If the heads predominate, the players who tossed heads gain a point and the players who tossed tails lose a point. If tails predominate then the players who tossed tails gain a point and the players who tossed heads lose a point. If a player has zero points then the player leaves the game. The players play rounds until two players remain. Then the player with the most point wins. Your solution should contain modules with parameters. Do not use any global variables in your design. Do try to translate your design to a program because the game will play millions or perhaps billions of rounds before there is a winner.

Answers

Using the knowledge in computational language in python it is possible to write a code that the beginning of the game M players each has N points.

Writting the code:

MODULE game(M, N):

//M is the number of players and N is the number of points each player has at the beginning of the game

 SET totalHeads = 0

 SET totalTails = 0

 REPEAT

   FOR each player

     TOSS coin

     IF coin == heads

       totalHeads += 1

     ELSE

       totalTails += 1

   END FOR

   

   IF totalHeads > totalTails

 FOR each player who tossed a head

 Increment their point count by 1

     END FOR

 FOR each player who tossed a tail

Decrement their point count by 1

     END FOR

   ELSE IF totalTails > totalHeads

 FOR each player who tossed a tail

  Increment their point count by 1

     END FOR

FOR each player who tossed a head

 Decrement their point count by 1

     END FOR

   END IF

   //Terminate players with zero points

   FOR each player

     IF points == 0

       Remove player from the game

     END IF

   END FOR

 UNTIL only two players remain

 

 //Find winner

 SET maxPoints = 0

FOR each player

   IF currentPlayerPoints > maxPoints

     maxPoints = currentPlayerPoints

   END IF

 END FOR

 

 FOR each player

IF currentPlayerPoints == maxPoints

     Declare winner

   END IF

 END FOR

END MODULE

See more about C++ at brainly.com/question/18502436

#SPJ1

in a switch statement, if two different values for the caseexpression would result in the same code being executed, you must have two copies of the code, one after each caseexpression.

Answers

The switch statement does not check the character's case when testing character values. Each case value in a switch statement has to be distinct.

If the boolean expression in the if-else statement is true, a group of statements will be executed; if it is false, a different group of statements will be executed. A relational operation ascertains whether two values have a certain relationship. Theorem: If an if-else statement's condition is true, it will execute one block of statements; if it is false, it will execute a different block. When you wish to repeatedly run a series of statements until a condition is met, use the loop structure. The statements should be repeated a specific number of times.

Learn more about operation here-

https://brainly.com/question/28335468

#SPJ4

r1 and r2 attach to the same ethernet vlan, with subnet 10.1.19.0/25, with addresses 10.1.19.1 and 10.1.19.2, respectively, configured with the ip address interface subcommand. the routers use an fhrp. host a and host b attach to the same lan and have correct default router settings per the fhrp configuration. which of the following statements is true for this lan?

Answers

Both hosts will utilize the lone router that is still operational as a default router if one router fails.

What is the HSRP default priority for a router?

Priority is set at 100 by default. The HSRP group's active router is the router with the greatest priority value. Preempt setup HSRP-enabled router tries to take over as the primary router when its priority is higher.

What happens if both HSRP routers become active due to some reason?

You might have an interesting situation where the host's ARP cache is continually updated as a result of both HSRP-routers being operational. Since both active routers would respond to the ARP request from the active HSRP-router, the host would receive two replies—one from each HSRP-router.

To know more about hosts visit :-

https://brainly.com/question/28742495

#SPJ4

1 pts cross-licensing often occurs in the semiconductor and chemical industries, and other intellectual property is acquired in reciprocal licensing arrangements between firms in order to

Answers

Reciprocal licensing arrangements between firms in order to avoid research duplication and build on each other's innovations.

what is innovations?

For its part, innovation might relate to a brand-new item or a modification applied to an already-existing concept, product, or industry.The first telephone was undoubtedly an invention, the first cell phone was either an invention or an innovation, and the first smartphone was undoubtedly an advancement.The process of turning an idea or invention into a product or service that adds value and/or attracts customers is known as innovation.Examples of innovation come in a wide variety of forms, including social innovation, incremental innovation, and open innovation, among others.A new or altered entity that realizes or redistributes value is what is meant by the definition of innovation.

To learn more about innovations refer to

https://brainly.com/question/17931211

#SPJ4

Consider a neural network with two hidden layers: p= 4 input units, 2 units in the first hidden layer, 3 units in the second hidden layer, and a single output. (a) Draw a picture of the network, similar to Figures 10.1 or 10.4.
(b) Write out an expression for f(x), assuming ReLU activation functions. Be as explicit as you can! (c) Now plug in some values for the coefficients and write out the value of f(X).
(d) How many parameters are there?

Answers

Estimates for w10, w15, w50, and w55 would need to be made for w0, w3, and w5. There are 42 parameters altogether, or 6 + (6x6). Deep learning and neural networks didn't become widely used in research until the previous 15 to 20 years.

How can you figure out how many neurons are in a buried layer?

Input layer and output layer sizes should be balanced out by the number of hidden neurons. The number of hidden neurons should be equal to the sum of the input layer's and output layer's sizes, divided by 3.

How many neurons make up the second hidden layer?

You may create a second hidden layer with two hidden neurons as a workable network architecture.

To know more about neural network visit :-

https://brainly.com/question/14632443

#SPJ4

You want to implement an authentication method so that different password attacks, like dictionary attacks, brute force attacks, etc., will not result in unauthorized access to the web application hosted by your enterprise. You want to do this by not using any specialized hardware or making any changes to the user's activity during the authentication process. Which of the following methods should you apply? You should implement keystroke dynamics. You should implement fingerprint authentication. You should implement iris scanning. You should implement facial recognition.

Answers

You should implement keystroke dynamics. Keystroke dynamics is an authentication method that relies on the unique pattern of how a user types on a keyboard. It does not require any specialized hardware or changes to the user's activity, making it suitable for protecting a web application.

What is keystroke dynamics?
Keystroke dynamics
is a biometric method of user authentication that uses the pattern of a user's keystrokes to identify them. It looks at the timing and duration of each key press and release, as well as the order of the keys pressed. This data is then analyzed to create a unique profile for the user and is used to authenticate them when they log into a system. Keystroke dynamics is an inexpensive way to secure access to a system, as no additional hardware or software is needed. It can also be helpful in deterring fraud, as it is difficult for an unauthorized user to mimic someone else's keystroke pattern. Keystroke dynamics is becoming increasingly popular and is being used in many industries, such as banking, healthcare, and government.

To learn more about keystroke dynamics
https://brainly.com/question/9411517
#SPJ1

Other Questions
meeting competition and nonprice competition are types of _____ pricing objectives. efferson City Computers has developed a forecasting model to estimate its AFN for the upcoming year. All else being equal, which factor is most likely to lead to an increase of the additional funds needed?a. a sharp increase in its forecasted salesb. a sharp reduction in its forecasted salesc. a reduction in its dividend payout ratiod. excess capacity in its fixed assets The Labor Market - End of Chapter Problem Consider the labor market for workers who build boats. For each of the given scenarios, graphically show the effect on the market for boat-builders. a. Boat manufacturers begin using more efficient robots on the assembly line, and the substitution effect dominates the scale effect. Labor supply Wage ($ per hour) X Labor demand b. There is an increase in the wage of automobile manufacturing workers (assume boat-builders and automobile workers have similar skills and can work in both industries). Labor supply X Labor demand c. There is a decrease in unemployment benefits. Labor supply x Labor demand Explain two was that food is changed as i passes through the digestive system a_____n increase in the volume of water produced by thermal expansion creates a corresponding rise in . in a food establishment, the correct way to prevent growth of any pathogens is to control time and temperature. reduce acidity of food. use only pasteurized food. serve the guest family style. Determine whether each structure is part of a thick filament, part of a thin filament, or is a different structural/functional protein.Thick FilamentsMyosin, Myosin headsThin FilamentsActin, Tropomyosin, Troponin, Binding sites for myosin headsOther Structural and Functional ProteinsConnectin (titin), Dystrophin Which explanation do these data best support? aEach plastic sheet refracts the wavelengths of light from the blue light bulb at different angles. bEach plastic sheet absorbs one wavelength of light. cEach plastic sheet transmits a different wavelength of light. dEach plastic sheet changes the wavelengths of light from the light bulb in different amounts. A market receives the following sell orders. How are they ranked? That is, in whatorder will they be executed (1=first, 2=second, , 5=last) Select the correct answer from each drop-down menu.Chris in lives in a city that experiences heavy rainfall with average annual precipitation of 882 millimeters. It is warm all year.Mark lives in city with an average annual rainfall of 40 millimeters. It has hot summers and cool winters.Chris's city is in aclimate, while Mark's city is in aclimate.ResetNeed denny corporation is considering replacing a technologically obsolete machine with a new state-of-the-art numerically controlled machine. the new machine would cost $290,000 and would have a ten-year useful life. unfortunately, the new machine would have no salvage value. the new machine would cost $48,000 per year to operate and maintain, but would save $89,000 per year in labor and other costs. the old machine can be sold now for scrap for $29,000. the simple rate of return on the new machine is closest to (ignore income taxes.): according to the dietary guidelines for americans, adults should consume between - % total dietary fat, and less than % saturated fat. which of the following is not a gap that makes up the service gaps model? a. knowledge b. delivery c. tangibility d. design and standards e. communication TRUE OR FALSE : in an online speech you have essentially the same relationship with your audience as in an in-person speech. group starts Crane Company combines its operating expenses for budget purposes in a selling and administrative expense budget. For the first 6 months of 2018, the following data are available.1. Sales: 20,800 units quarter 1; 22,100 units quarter 2.2. Variable costs per dollar of sales: sales commissions 5%, delivery expense 2%, and advertising 3%.3. Fixed costs per quarter: sales salaries $10,900, office salaries $6,160, depreciation $4,490, insurance $2,080, utilities $880, and repairs expense $670.4. Unit selling price: $24. samantha experienced a traumatic brain injury and afterward began to exhibit bizarre symptoms that no one had ever documented before. the best research method to study samanta would be what is the target of thyroid hormones? what is the target of thyroid hormones? thyroid anterior pituitary hypothalamus cells of the body The increased presence of user operated computers in the workplace has resulted in an increasing number of persons having access to the system. A control that is often used tp prevent unauthorized access to sensitive programs is:A) Backup of data in the cloud.B) Authentication procedures.C) input validation checks.D) Record counts of the number of input transactions in a batch being processed. 43. Ford Davis borrowed $14,000 of a non-interest-bearing, simple discount, 8% , 90-day note. Assume ordinary interest. What are Ford's proceeds?A. $14,000B. $13,720C. $13,000D. $17,320 for a random sample of 90 such pairs, where is the sampling distribution of x centered, and what is the standard deviation of the x distribution?