​Eamon wants to provide a discount to premium buyers who order in large quantities. He wants to create a code for each price and share it with them. Also, he wants to ensure that only the premium buyers can decipher the code shared. In this scenario, which of the following codes would you suggest Eamon to use?

A. ​Cipher code
B. ​Mnemonic code
C. ​Action code
D. ​Derivation code

Answers

Answer 1

Answer:

The correct answer for the following question will be A. Cipher code.

Explanation:

Cipher code:

Ciphers are potentially the cryptographic central pillar. A cipher is usually an algorithm to perform both encryption and decryption.

Secret key encryption relies on the use of symmetric ciphers. Whether the goal is to convert plaintext to ciphertext and vice-versa. The secret key is shared on both ends, and the person having the secret key can only encrypt and decrypt the data.

So, option A is a suitable answer.


Related Questions

Which of the following represent correct syntax to display first name from global variable user? Select the one correct answer.
a. {User.FirstName}
b. {!User.FirstName}
c. $User.FirstName
d. {!$User.FirstName}

Answers

Answer:

Option D i.e., {!$User.FirstName} is the correct answer.

Explanation:

The following option is correct because in the following statement, the user programmer will ask to display the first name by using the global variable then, in the PHP Programming Language the following is the correct way to display the first name of the user, which is inside the curly braces then, not operator and then, name of the variable through which it call.

Final answer:

The correct syntax to display the first name from the global variable user is option d. {!$User.FirstName}, which is used in platforms like Salesforce that require merge field syntax.

Explanation:

The correct syntax to display the first name from a global variable user is d. {!$User.FirstName}. This syntax is typically used in Salesforce or similar platforms where the merge field syntax is required. The exclamation mark and curly braces indicate that it is a dynamic reference to a variable's property, and the dollar sign indicates that it is a global variable.

If you are working within a different context, such as pure JavaScript or another programming language, this syntax may not be applicable, and the correct syntax for accessing object properties might differ.

You can change the __________ of labels and values in cells to be left, right, or center.

Answers

Answer:

Alignment

Explanation:

Microsoft Excel is used to analyze data. It is a spread sheet application, divided into rows and columns. The small blocks on the page are called cells.To input data into a cell, click on the cell and type in the entry.

Entries in a cell can be align to the left, right, center, top or down, depending on the width and height of the column or row it is in. To align an entry, click on the cell, go to the home tab or right click and pick the alignment suitable.

Your app needs to store the following information. For each type of information, decide whether you would use an array or a variable to store it:________.

a.All the messages a user has sent.
b.The highest score a user has ever reached on the app.
c.A username and password to unlock the app.

Answers

Answer:

The answer is "option c".

Explanation:

In the question, It is defined that an array variable that stores the value. This variable is used to store more than one value or in programming terms, we can say that an array is a collection of the homogeneous elements, that means it will store similar type of value that is "text value or numeric value"if we would use an array to store all messages that are sent by the user, however, the highest value of the score is stored in variable that would be a better choice for a password/username.That's why option c is correct.

Answer:

Array

Variable

Array

Explanation:

True or False. Dragging the pointer over the font list allows you to preview how selected text will look if the highlighted font is applied.

Answers

Answer:

True is the correct answer for the above question-statement.

Explanation:

In MS-Powerpoint, when a user highlights the selected text and he wants to preview the highlighted text to see what how it will look like for that he needs to move the mouse pointer to the font list and click the preview button to see the preview of that text.

The above question also states the same statement which is described above, hence it is a true statement.

A(n) __________ network is a high speed communications connection used to exchange data between production line equipment and other devices within a manufacturing facility.

Answers

Answer:

Industrial network

Explanation:

Networks is simply a medium to transfer data and one example is an industrial network which is a high speed communications connection network that deal with the exchange of data on a large scale between the production line equipment and other devices within a manufacturing facility.

Name a process of deleting data by sending an eraser to clear the instruction in an address of nonvolatile memory.

Answers

Answer:

Data in Rest / Data at Rest

Explanation:

According to literature; there are basically three states associated with digital data .

1. Data in Rest

2. Data in Transit / Motion  

3. Data in Use

Data-in-rest corresponds to the data permanently stored in non-volatile memory such as hard drive, SSD, cloud storage etc. this data is inactive since it is not being currently processed or transmitted that’s why it is called data at rest.

Data-in-transit corresponds to the data temporarily stored in volatile memory such as RAM or it is being currently transmitted to a network that’s why it is called data in transit.

Data-in-use corresponds to the data that is being used by some applications and is in process of being updated/erased and is being used by the user at any endpoint.

Your customer, Mykel, is ordering a custom-built computer for his home office and isn’t sure which components should be the highest priority to meet his needs. He’s a software developer and runs multiple VMs to test his applications. He also designs some of his own graphics, and he plays online games when he’s not working. Which of the following priorities would be most important for Mykel’s computer?a. High-end graphics card, RAID array, and lots of RAMb. High-end CPU, lots of RAM, and high-end graphics cardc. Multiple hard drives, lots of RAM, and high-end CPUd. High-end graphics card, expansion audio card, and lots of RAM

Answers

Answer:

Option B

Explanation:

Your customer, Mykel, is ordering a custom-built computer for his home office and isn’t sure which components should be the highest priority to meet his needs. He’s a software developer and runs multiple VMs to test his applications. He also designs some of his own graphics, and he plays online games when he’s not working.

High-end CPU, lots of RAM, and high-end graphics card priorities would be most important for Mykel’s computer to implement his work.

The operator that combines two conditions into a single Boolean value that is true when at least one of the conditions is true is ___________.
a. $$
b. !!
c. II
d. &&

Answers

Answer:

C) ||

Explanation:

In java, the Operator || called the logical or will return true when of the statements is true. for example, cosider this java code snippet

public class ExampleClass {

 public static void main(String[] args) {

   int y = 5;

   System.out.println(y > 3 || y < 4);

// returns true because one of the conditions are true (5 is greater than 3, but 5 is not less than 4)

 }

}

The operator that combines two conditions into a single Boolean value that is true when at least one of the conditions is true is _

C) ||

According to the given question, we are asked to show the operator that combines two conditions into a single Boolean value that is true when at least one of the conditions is true.

As a result of this, we can see that a Boolean value is one that returns two values: true or false, based on a set of pre-given conditions. With this in mind, when using a High Level Language like Java, Operator II would return either true or false when its conditions are met

Therefore, the correct answer is option C

Read more here:

https://brainly.com/question/2467366

Write a function double average(int arr[] , int n), that returns the average of the even elements of the array. If the array has no even elements, throw an integer-based exception containing the value 0. The number of elements in the array is specified by the parameter n.

Answers

Answer:

double average(int arr[], int n){

int evenElementCount = 0;

double sum = 0;

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

if( arr [ i ] % 2 == 0 && arr [ i ] != 0 ){

evenElementCount += 1;

sum+=arr[i];

}

}

if(evenElementCount == 0)

throw 0;

return sum/evenElementCount;

}

Explanation:

The Method called average takes in an array and number of elements, it loops through the array using a for-loop to find all the even elements in the array, it stores the number of even elements in a variable named evenElementCount, it throws an integer-based exception if the evenElementCount variable is 0, returns average of even elements if the evenElementCount variable is not 0.

In defining security implemention, what are the roles of the following committees. 1) gateway committee 2) project committee 3) security compliance committee

Answers

In network, security plays important roles and implementing is a big task.

1. Gateway committee: It protects the hackers and any malware spyware to attack the network. Once hardware appliance is installed schedule update is happening at regular interval time.

2. Project committee:- it is an implementation plan and with minimum downtime in network and restoring the network and bring back the activities of the network.

3. Security compliance committee: - The network administrator has to select proper hardware appliance and to place in a network with minimum downtime.

You have four DCs in your domain. Active Directory appears to be corrupted on one of the DCs, and you suspect a failing hard drive. You attempt to remove it from the domain, but the procedure fails. You take the DC offline permanently and will replace it with another DC of the same name. What must you do before you can replace the DC?

Answers

Answer:

perform a metadata cleanup

Explanation:

Based on the information provided within the question it can be said that in this situation the the first thing you must do is perform a metadata cleanup. This is a procedure that must be used every time when forcibly taking a DC offline, this will remove all data from the Active Directory Domain Services that identifies a DC to the replication system. Allowing you to replace it with another DC of the same name.

A ____ is optimized for decision support and is generally represented by a data warehouse or a data mart.

Answers

Answer:

'Datastore' is the correct answer to fill the question statement.

Explanation:

Datastore is a term which is used to store the data with the help of various technology like- database or file system.

Data warehouse and data mart also used to store the data in which data warehouse is used to collect the historical and operational data whereas data mart is used to store the summarized data which is used for analysis purpose. A Decision support system is used to analyze the stored data and make it for the decisions.

The question scenario states that which is represented by the data warehouse or data mart and that can be optimized for the decision support system. So the answer is a 'datastore' because it is used to store the data like 'data warehouse' or data mart (as described above) and also can be optimized for the Decision support system because Decision support system s used to analyze the stored data and make it for the decisions.

Hence 'Datastore' is the correct answer.

__________ describes a module for which the software developer does not care how the processing is performed, but instead, knows that the code, when provided valid inputs, will produce predictable results.

Answers

Answer:

The correct answer for the following question is "Black Box Testing" .

Explanation:

The black box is a software testing in which it works overall specification of the application rather than the internal structure of the application.The main aim of this kind of testing to check the functionality of the overall system.

In the black box testing when valid inputs are performed the predictable results is produced rather then it focuses on the processing. The advantages of black-box testing is given below.  

it hides the internal structure of the program.  focus on the output rather than the implementation. This type of testing takes less time to test the module of the code.

An administrator is trying to enable hardware-assisted virtualization in the BIOS of a computer and notices it is not an option. He checks the specification on the manufacturer's website and finds that the system should support hardware-assisted virtualization. What is most likely the reason why he can't enable it?A. The BIOS needs a firmware update.B. The BIOS is corrupt.C. Hardware-assisted virtualization is enabled in the operating system, not the BIOS. D. The firmware is corrupt.

Answers

Answer:

this is difficult

Explanation:

i also need helo with this question

When researching the new power supply, what feature does James need to look for to make sure he has enough power to run his computer with the new video card?

Answers

Answer:

Power in watts also called Wattage

Explanation:

Power supply needs to have enough power to run a device or a computer, in a case where the device's wattage is greater than that of the power supply the power supply won't work. the solution will be to get a power supply with enough wattage to power the device or computer, considering the fact that video cards' wattage has increased in recent times.

What is VoIP?

a. VoIP uses IP technology to transmit telephone calls.
b. VoIP offers the low cost ability to receive personal and business calls via computer.
c. VoIP offers the ability to have more than one phone number.
d. VoIP offers all of these.

Answers

Answer:

D) offers all the given options

Explanation:

VoIP also referred to as  IP telephony, Internet telephony or broadband telephony are  technologies that has made phone, video and general multimedia communication over the internet possible. It allows low cost because the communication infrastructure is shared between data and voice,  and can be used by both individuals and businesses

On the Visit screen, you will not see one of the following:
a. Eligibility
b. Access level
c. Home Address
d. None of the Above

Answers

Answer:

The answer is "Option b".

Explanation:

An access level denotes a set of data type permissions or restrictions, that reduces the access level, which is an effective way to reduce failure modes, debug time and system complexity. and other options are not correct, i.e. define as follows:

In option a, In some of the cases, the system provides security, which is responded by the server to check the Eligibility of user, that's why it is not correct.In option c, The home address is always shown on the URL, that's why it is not correct.

What data discovery process, whereby objects are categorized into predetermined groups, is used in text mining?
A. classification
B. trend analysis
C. association
D. clustering

Answers

I believe the answer is (A) classification. Have a nice day :)

A filtering system designed for use by Web site owners is available through the ____, a nonprofit organization whose members include Internet industry leaders such as AOL Europe, BellSouth, British Telecom, IBM, Microsoft, and Verizon.

a. Anti-Defamation League (ADL)
b. Electronic Privacy Information Center
c. Internet Content Rating Association (ICRA)
d. Electronic Frontier Foundation

Answers

Answer:

The answer is C. Internet Content Rating Association (ICRA)

Explanation:

The Internet Content Rating Association (ICRA) is a non profit organization whose members include internet industry leaders such as AOL Europe, BellSouth, British Telecom, IBM, Microsoft and Verizon.The Electronic Privacy Information Center (EPIC) mission is to focus public attention on emerging privacy and related human rights issues. EPIC works to protect privacy, freedom of expression, and democratic values, and to promote the Public Voice in decisions concerning the future of the Internet. The Anti-Defamation League (ADL) is a global leader in exposing extremism and delivering anti-bias education, and is a leading organization in training law enforcement. ADL is the first call when acts of anti-Semitism occur. ADL's ultimate goal is a world in which no group or individual suffers from bias, discrimination or hate.The Electronic Frontier Foundation (EFF) is an international non-profit digital rights group founded to promote Internet civil liberties.

The Solution Explorer window ____.

a. displays items that you can use when creating a project
b. displays the classes, methods, and properties included in a solution
c. displays data connections and servers
d. displays a list of the projects contained in the current solution

Answers

Answer:

The correct answer for the given question is option(d).

Explanation:

Solution Explorer is found in Microsoft Visual Studio.When we create a project in the c# or another programming language the solution explorer window is used. The Solution Explorer takes care of the projects and files.  

Solution Explorer displays an overall view of the current project. In the Solution Explorer we can delete or add the file in the project. The  Solution Explorer window displays the list that is contained in the current solution.

Option(a),Option(b) and Option(c) are the incorrect option for the Solution Explorer window. So, Option(d) is the correct answer for the solution explorer.

d. displays a list of the projects contained in the current solution.

The Solution Explorer window in an Integrated Development Environment (IDE) like Visual Studio typically displays the projects, files, and resources contained within a solution. It provides a hierarchical view of the components of your software project, allowing you to navigate through the different files and folders, manage project dependencies, and access various project settings. It's an essential tool for organizing and managing the structure of your solution.

You can use a(n) ____ to visually separate related controls from other controls on the form.

Answers

Answer:

The correct answer to the following question will be Group Box.

Explanation:

Group Box:

A type container that contains many types of controls that are usually related to each other in the form.It usually provides the identified grouping for other controls.used for the subdivision of the forms.Separation of the controls can be done with the help of grouping by group box.

need help with this please and thanks

Answers

Answer:

Connector names are written below Picture vise:USB-CUSB 2.0Micro USB

Explanation:

Following is the brie Illustration of the terms used:

USB-C:

              It is the newest connector in the market with the             reversible/symmetrical design. It can be adapted to work with the legacy connectors such as USB-A, USB-B, USB-C and Micro USB.

USB 2.0:

              It is used mostly in the connections of electronic devices such as printers and smartphones. It has A to B connectors as well as micro USB connectors and mini USB connectors.

Micro USB:

              It is used for the connection o compact devices such as smartphone and mp3 players. They are further grouped into three categories: Micro A, Micro B and micro USB 3.

I hope it will help you!

Performance-related data from what document is used to develop the After-Action Report (AAR)?

Answers

Answer:

The answer is "EEGs".

Explanation:

EEGs stands for Exercise Evaluation Guides, It is designed to collect information related specifically to the evaluation criteria defined by the EP (Exercise Planning)Committee.

It is an organization that assesses the capacity to perform a task, role or goal.It is an evaluation based on the performance of critical tasks for the selected capability at specific levels.

in python Write a loop that counts the number of lowercase characters that appear in the string referenced by mystring.

Answers

Answer:

mystring = "My name is David Acheme"

count = 0

for i in mystring:

    if(i.islower()):

        count=count+1

print("The number of lowercase characters in: "+mystring)

print(count)

Explanation:

1. We declare a String Variable and assign a value.

2. Intialize a count variable to zero.

3. Using a for loop is to loop through each characters in the string.

4. The if condition checks when a lower case character is encountered using the islower method and increases count by 1

5. Prints the value of count.

What is transmission control protocol?
the rule that defines parameters for the quality of data transmitted between computers and networks
the rule that defines how packets of data are transmitted between computers and networks
the rule that dictates how long it takes to identify an IP address
the rule that dictates what kind of network will support a specific protocol

Answers

Answer:

the rule that defines how packets of data are transmitted between computers and networks

Explanation:

Transmission control protocol is full form of TCP and Internet protocol  are used in combination to transmit the data and packets between network and computer. These protocols are used to communicate different devices that are interconnect on the network via internet.

Answer:

the rule that defines parameters for the quality of data transmitted between computers and networks

Explanation:

ed 2021

Matthew is working to select an authentication method for his company that will support REST as well as many web-based and mobile clients. Which of the following would be the best choice?A) ShibbolethB) RADIUSC) OpenID ConnectD) OAuth

Answers

Answer:

C) OpenID Connect

Explanation:

The best option is OpenID Connect because is based in OAuth, and supports multiple web based and mobile clients, and supports REST.

With OAuth, we cannot make any user authentication just provide a token to access data.

RADIUS is a networking protocol, and Shibboleth is a single sign-on log-in system for computer networks and the Internet, both not support REST.

A _______________ is most often a device with a tablet form factor that is designed to integrate with a detachable keyboard.

Answers

Answer:

Ultra book convertable / tablet hybrid

Explanation:

In recent times laptops comes out in a fashion that makes them take the form of tablets, they come with a detachable keyboard which reduces the power consumption and boost performance. the keyboard is used when attached and the touch screen is used when detached, giving you the best experience if both laptops and tablets.

Final answer:

A 2-in-1 PC is a versatile device designed to function both as a tablet and a traditional laptop when combined with a detachable keyboard. This reflects the personal nature of modern computing. Graphics tablets, which also use induction principles, differ by converting stylus-induced magnetic fields into digital images.

Explanation:

A 2-in-1 PC is most often a device with a tablet form factor that is designed to integrate with a detachable keyboard. This versatile computing device represents the evolution of personal computing, as each individual shapes their unique relationship with technology. Unlike traditional laptops or desktops, 2-in-1 PCs offer the portability of a tablet with the full functionality of a computer when connected to a keyboard.

Graphics tablets are another type of device that utilize passive tablets with induction principles for digital image creation. They differ from the touch tablets, as they have an intricate grid of wires and use a magnetic field from a stylus to create changes in electromagnetic fields, which are then translated into digital lines or strokes on the screen.

Seeing if a website has a , .gov, .edu, or .org URL can give you information about the _________ of a website.

Answers

Answer:  Credibility

Explanation:

Government and education websites are the most trusted websites

Which of the following must be added to a VLAN with a gateway in order to add security to it?

Answers

Answer:

A SSH configuration with password and username and a IP address and subnet mask to the Vlan.

Explanation:

Vlan also called virtual lan or switch virtual interface, is used to assign an IP address, subnet mask and a default gateway address, to make configuration of switches and routers remote through SSH or telnet.

By default, the Vlan comprises of all the ports in an intermediate device like routers and switches.

The SSH configuration is a low encrypted channel of port number 22, with required username and password.

When modifying a theme, the _______ gallery is used to pair a title font and a body font?

Answers

Answer:

Font gallery.

Explanation:

The theme in Microsoft Powerpoint includes the design of background, font and layouts. We can change the theme fonts by choosing a pair of title font and a body font from the Font Gallery in Powerpoint.

To access the Font Gallery, just go to the View Tab and click on "Slide Master".

Next look for "Fonds" drop down list and pick one of the pair of title font and body font from the list. The selected fonts will be applied to text on the slides.

Answer:

Font gallery.

Explanation:

The theme in Microsoft Powerpoint includes the design of background, font and layouts. We can change the theme fonts by choosing a pair of title font and a body font from the Font Gallery in Powerpoint.

To access the Font Gallery, just go to the View Tab and click on "Slide Master".

Next look for "Fonds" drop down list and pick one of the pair of title font and body font from the list. The selected fonts will be applied to text on the slides.

Explanation:

Other Questions
One of the neurotransmitters can become decreased in the area of the corpus striatum. This results in the manifestations of Parkinson's disease. Which neurotransmitter will cause this? PLEASE HELP PLEASE I DONT UNDERSTAND THIS What is the slope of this line? y = 2x + 4-1/221/2-2 A widened, stretched-out portion of a blood vessel that forms a bulge is called a(n) ______________. PLZ help super fast thanks Which of the following statements about 16th century and early 17th century peasant life strongly supports the position taken by o.Lofgren in this excerpt?a. Marriage was necessary to support the economic underpinning of a typical family. b. Land-holdings and other implements were divided among the male members of the family. c. Individuals increasingly made their own way in the growing market economy found in rural areas. d. Each member of the peasant family shared in the same kind of work. The most important committees in Congress are permanent bodies that possess an expertise resulting from their jurisdiction over certain policy areas. These are known as what kind of committees? Both MyPlate and the Dietary Guidelines for Americans differ significantly from current eating patterns in the United States. Find the Surface Area of a cone with a slant height of 7 and a radius of 2. Leave your answer in terms of LaTeX: \pi.Group of answer choices 14 28/3 i 18 : 56\pi How did King Menelik Il differ from other 19th-century African leaders? g. Which inventory method would you recommend for reporting for income tax purposes to minimize taxable income? Why? 3. The company is operating in an inflationary environment. Which method should the company use to maximize inventory valuation? Why? 4. Looking at the purchasing volume versus demand, what guidance would you offer to the operations manager regarding inventory management and cash flow? PLEASE ANSWER THE TWO QUESTIONS ABOVE (in the picture)Please SHOW YOUR WORK!!If you answer me without showing your work and/or with I dont know the answer or lwjfwlfizlalsjfxsjdfjek Ill report your account. The customer help center in your company receives calls from customers who need help with some of the customized software solutions your company provides. Your company claims that the average waiting time is seven minutes at the busiest times, 8 a.m. to 10 a.m., Monday through Thursday. One of your main clients has recently complained that every time she calls during the busy hours, the waiting time exceeds seven minutes. You conduct a statistical study to determine the average waiting time with a sample of 35 calls for which you obtain an average waiting time of 8.15 minutes. If the value of your test statistic is less than the critical value, the correct decision is to _____. A. increase the sample size B. reduce the sample size C. fail to reject the seven-minute average waiting time claim D. maintain status quo E. reject the seven-minute claim Widget Corp., a technological firm based in the U.S., mainly relies on staffing its employees from the U.S. for its operations. It adopts the same approach in staffing the top positions of its foreign subsidiaries as they have perfect understanding of the norms and cultures of the parent company. In this case, Widget Corp. follows a(n) _______ in staffing. Illustrate the following with supply and demand curves: In March 2015, hogs in the United States were selling for 81 cents per pound, up from 58 cents per pound a year before. This was due primarily to the fact that supply had decreased during the period. Show this change in the figure on the right. 1.) Using the point drawing tool, locate the equilibrium point for 2015 in the U.S. hog market. Label your point 'E'. 2.) Using the line drawingtool, illustrate the change in the U.S. hog market between 2014 and 2015. Properly label your line 'S2015'. (Hint: Perform the steps in the order given.) Carefully follow the instructions above and only draw the required objects. Determine the voltage across a 2000 pF capacitor that is storing 20 microcouloms (20 C) of charge. Jerry the RBT comes to his clients home for his scheduled ABA session. When Jerry gets there, he finds the client yelling and his mother crying in the corner. How can Jerry help with this immediate situation within the boundaries of his role as an RBT?a. Ignore the mother's crying and begin trying to play catch with his client.b. As the mother what happened in order to know what to do with the client. Make sure she is physically OK and start therapy or behavior plan implementationc. Hug the mother and tell her it is going to be OK ignoring his clientd. Walk out immediately and not provide therapy that day write an equation of a line in slope -intercept form thag is parallel to the line 3x-2y=8 What is the value of g on the surface of Saturn? Assume M-Saturn = 5.6810^26 kg and R-Saturn = 5.8210^7 m.Choose the appropriate explanation how such a low value is possible given Saturn's large mass - 100 times that of Earth.A) This low value is possible because the density of Saturn is so low.B) This low value is possible because the magnetic field of Saturn is so weak.C) This low value is possible because the magnetic field of Saturn is so strong.D) This low value is possible because the density of Saturn is so high. What were the differences between the house and the senate during the impeachment of president Clinton? Steam Workshop Downloader