one implication of the transition game between soft-liners and the opposition is that, if the opposition wants soft-liners to open up, it should do all it can to convince the soft-liners that it is popular and powerful. group of answer choices

Answers

Answer 1

The statement given in the question is true that the opposition tries to convince the soft-liners that it is powerful and popular.

The intention of the transition game theory is to make an optimal decision between independent and competing actors in a strategic environment. One of the implications of the transition game between the opposition and soft-liners is if the opposition wants soft-liners to open up, the opposition should do all it can to convince the soft-liners about its popularity and power. The opposition attempts to get the soft-liners to know the strength of the opposition, their preferred plan of action, and outcomes.

"

Complete question is given below:

one implication of the transition game between soft-liners and the opposition is that, if the opposition wants soft-liners to open up, it should do all it can to convince the soft-liners that it is popular and powerful. group of answer choices

True or False

"

You can leran more about opposition  at

https://brainly.com/question/12242858

#SPJ4


Related Questions

a gate is constructed of one or more transistors.
a. true
b. false

Answers

Answer:

true

Explanation:

without transistors, the gate would collapse

Answer: true

Explanation:

What are files that reproduce by making copies of themselves within a computer’s memory, storage, or network?.

Answers

A file that can make copies of itself on a computer's memory, storage, or network is a computer worm.

Explanation of computer worms

A computer worm is defined as a computer program that can reproduce itself in a computer system. A worm can reproduce itself by utilizing the network (LAN / WAN / Internet) without the need for intervention from the user itself. Worms are not like ordinary computer viruses, which reproduce by inserting their own programs into existing programs on the computer, but worms take advantage of open security holes, known as vulnerabilities.

Computer worms have several structures. The following are structures or components that are commonly owned by computer worms:

ReconnaissanceAttackCommunicationReignIntelligent

Learn more about computer worms at : brainly.com/question/16582802

#SPJ1

KINDA NEED THESE ASAP!!! PLEASE) During the Covid-19 pandemic, many establishments began taking the temperature of all visitors. any visitor with a high reading would be refused entry. in what way is this thermometer a sensor? A. it responds more quickly than a thermometer placed in the visitors mouth. B. it responds to a physical stimulus by providing data. C It is more convenient than a thermometer placed in the visitors mouth. D. As described The thermometer is not a sensor. E it is more accurate than a thermometer placed in the visitors mouth.

Answers

It is more convenient than a thermometer placed in the visitors mouth. Hence option C is correct.

What is thermometer?

Thermometer is defined as a tool for temperature or temperature gradient measurement. Body temperature is measured via thermometers, which is crucial in medicine. When telethermographic systems are used for medical purposes, they are considered devices.

Digital sensor is more convenient because during Covid-19 the infection is spreading very fast so for safety purpose thermometer is less used.

Thus, it is more convenient than a thermometer placed in the visitors mouth. Hence option C is correct.

To learn more about thermometer, refer to the link below:

https://brainly.com/question/24189042

#SPJ1

Some clues left on a drive that might indicate steganography include which of the following?
a. Graphics files with the same name but different file sizes
b. Multiple copies of a graphics file
c. Steganography programs in the suspect's All Programs list
D. All of the above

Answers

Some clues left on a drive that might indicate steganography include option D: All of the above.

a. Graphics files with the same name but different file sizes.

b. Multiple copies of a graphics file.

c. Steganography programs in the suspect's All Programs list.

What is steganography?

Steganography is a technique for concealing sensitive information within a regular, non-sensitive file or message so as to avoid detection; the sensitive information is then extracted at its intended location. To further conceal or protect data, steganography can be used in conjunction with encryption.

Hence, Steganography is the practice of enclosing openly available information inside of something that seems normal. Steganography is a technique used by cybercriminals to conceal malicious code or stolen data in media like images and audio files.

Learn more about Steganography from

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

you are developing an azure-based application that stores all application settings in the azure app configuration service. you provision a standard tier azure app configuration instance and enable the customer-managed key capability on the instance. you need to allow the azure app configuration instance to use an azure key vault key. which two actions should you perform? each correct answer presents part of the solution. a. enable the purge-protection feature on the azure key vault. b. assign a managed identity to the azure app configuration instance. c. configure a private endpoint for the azure app configuration instance. d. configure managed identity permission to access the azure key vault. e. create a dns cname resource record for the azure app configuration instance.

Answers

(b) assign a managed identity to the azure app configuration instance and (d) configure managed identity permission to access the azure key vault are the two actions that need to perform for this situation.

What is the azure key vault?

By leveraging keys that are guarded by hardware security modules, Microsoft Azure Key Vault, a cloud-hosted management solution, enables customers to encrypt keys and tiny secrets (HSMs). Small secrets include passwords and other data that is less than 10 KB in size. PFX documents

Both managed hardware security module (HSM) pools and vaults are supported by the Key Vault service. Keys, secrets, and certificates secured by an HSM can be stored in vaults. Managed HSM pools only accept keys with an HSM backup.

To learn more about the azure key vault, use the link given
https://brainly.com/question/29433704
#SPJ1

write a function called delete repeats that has a partially filled array of characters as a formal parameter and that deletes all repeated letters from the array. it returns a new dynamic array where all repeated letters are deleted. do not modify the input array.

Answers

Using the knowledge in computational language in C code  it is possible to write a code that called delete repeats that has a partially filled array of characters as a formal parameter and that deletes all repeated letters from the array.

Wrritting the code:

#include <iostream>

using namespace std;

void printArray(char *arr, int size){

for(int ii = 0; ii < size; ++ii){

cout << arr[ii] << " ";

}

cout << endl;

}

char *delete_repeats(char *arr, int &size){

char *newarr = new char[size];

int count = 0;

for(int ii = 0; ii < size; ++ii){

int flag = 0;

for(int jj = 0; jj < ii; ++jj){

if(arr[ii] == arr[jj]){

flag = 1;

break;

}

}

if(!flag){

newarr[count++] = arr[ii];

}

}

size = count;

return newarr;

}

int main(){

char arr[] = "to be or not to be";

int size = sizeof(arr);

printArray(arr, size);

cout << "After deleting the duplicates" << endl;

char *newarr = delete_repeats(arr, size);

printArray(newarr, size);

return 0;

}

See more about C code at  brainly.com/question/12975450

#SPJ1

what is the main goal of issuing multiple instructions in a clock cycle?

Answers

The main goal of issuing multiple instructions in a clock cycle is Multiple issue CPU

It has been examined a number of hardware and software ways to exploit ILP so far. In a pipelined approach, the ideal CPI that we may anticipate is merely 1 We need to consider the possibility of issuing and completing numerous instructions each clock cycle if we wish to lower CPI further. For instance, if we send and process two instructions per clock cycle, our CPI should ideally be 0.5. Multiple issue processors are those that operate in this manner. The operational components on the back end are given a number of instructions. We refer to a processor as being m-issue-wide if m is the most significant number of instructions that can be issued in a single cycle.

To know more about Multiple issue processors, visit;

https://brainly.com/question/3649876

#SPJ4

Katlyn needs to remove all tab characters from a document. She should locate the tab characters by doing which of the following?
a. Use Go To to locate the desired text.
b. Manually locate tab characters by scrolling through the document.
c. Use the Find and Replace dialogue box to locate the tab characters.

Answers

To remove all tab characters from a document, Katlyn needs to Use the Find and Replace dialogue box to locate the tab characters.

What is Find and Replace?

Find and replace is a function that help you to find a target text whether it's a particular words or formats in a document and can let you replace with any other words or formats.

How to use find and replace?

When the find and replace dialogue box is open, type any word you want to find in the find what field, and type any word you want as the replacement in the replace with field. Then, you can click on the replace or replace all button.

Learn more about find and replace here:

https://brainly.com/question/9646036

#SPJ4

Consider the following variable declarations and initializations.
int a = 2;
int b = 6;
int c = 3;

Which of the following expressions evaluates to false ?
A. a < b == c < b
B. a > b == b < c
C. a < b != b < c
D. a < b != c < b
E. a > b != b > c

Answers

The expression which evaluates to false is  a < b != c < b.

What is expression?

A "statement," which is just a single unit of execution and returns nothing, is different from a "expression," which is a mixture of values and functions that are combined and processed by the compiler to create a new value.

What is variable declarations?

You declare a variable when you give it a type and an identifier but have not yet given it a value. Definition of a variable When you assign a value to a variable, usually using the assignment operator =, you are defining the variable.

What is  initializations?

Except for function parameters, all auto variables can be initialized. If an automated object is not explicitly initialized, its value is undefined. Any legitimate C or C++ expression may be used to represent an initial value if one is provided.

Learn more about declarations and initializations click here:

https://brainly.com/question/27230187

#SPJ1

What is the best explanation for the dramatic ratings decline for the howard beale show in the last act of network?.

Answers

The best explanation for the dramatic ratings decline for the Howard Beale show in the last act of network is that his wife died and he was said to have been lonely.

The meaning of audience rating

It is a statistic showing the percentage of the overall listening and viewing audience that tunes in to a certain program or network.

Note that The main character in Network is Howard Beale. He has scars from his years and is bruised. He is on the verge of kill himself at the beginning. In his insanity, Howard Beale, dubbed "the mad prophet of the airwaves," rules our... that he will actually kill himself  as a result of declining ratings.

Learn more about  rating  from

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

TRUE o fasle, communication technology is nort called telecommunications

Answers

Answer: The above statement is true.

ICT refers to technologies that provide access to information through telecommunications.

Explanation:

data types are automatically assigned as the smallest possible data type.
A. true
B. false

Answers

Data types are automatically assigned as the smallest possible data type: A. true.

What are the kinds of data type?

In Computer programming, there are four (4) common kinds of data type and these include the following:

Integer type (int)Floating point type (float)Boolean (bool)String (str)

Generally speaking, data are categorized automatically to smallest data type and size with each of them matching that of other inputs because they must be blended with other data.

Read more on a data types here: https://brainly.com/question/13438922

#SPJ1

q20. now inspect the options field in the dhcp offer message. what are five pieces of information that the dhcp server is providing to the dhcp client in the dhcp offer message?

Answers

now inspect the options field in the dhcp offer message. The five pieces of information that the dhcp server is providing to the dhcp client in the dhcp offer message are the client's client id (traditionally a MAC address), the IP address that the server is offering, the subnet mask, the lease duration, and the IP address of the DHCP server making the offer.

What is the DHCP?

To automatically assign IP addresses and other communication settings to devices connected to the network using a client-server architecture, the Dynamic Host Configuration Protocol(DHCP) is a network administration protocol used on Internet Protocol networks.
The primary job of the Dynamic Host Configuration Protocol (DHCP) is to automatically assign an IP address to an Internet Protocol (IP) host along with other pertinent configuration data like the subnet mask and default gateway.

To learn more about DHCP, use the link given
https://brainly.com/question/10097408
#SPJ4

network architecture in which one or more high-powered computers provide resources or services to other computers on the network.

Answers

A network architecture in which one more more high powered computers provide resources or services to other computers on the network is called client-server architecture.

Client-server architecture of a computer network is defined as having one or more host computer from a centralized server acts as a service provider for many remote client processors. In a client-server network architecture, Clients are usually PCs, laptops, workstations, or any other personal devices such as smartphones and tablets, while the servers are located elsewhere on the network, usually on more powerful machines. The examples of a client-server network architecture are: web servers, web browsers, FTP (File Transfer Protocol), DNS (Domain Name System). There are many benefits of a client-server network architecture such as a quick and secure data transfer, efficient data delivery to the client devices, and easier management and maintenance.

To learn more about client-server network architecture visit: https://brainly.com/question/24137718

#SPJ4

a firm that wanted to enable its employees to use and share data without allowing outsiders to gain access could do so by establishing an) internet internet. extranet. intranet.

Answers

A firm that wanted to enable its employees to use and share data without allowing outsiders to gain access could do so by establishing an intranet. The correct option is D.

What is an intranet?

An intranet is a computer network used within an organization to share information, facilitate communication, provide collaboration tools, operational systems, and other computing services, usually with no outside access.

An intranet is a network that allows employees to create content, communicate, collaborate, and grow the company culture.

Meanwhile, an extranet gives authorized customers, vendors, partners, or others outside the company controlled access.

Thus, the correct option is D.

For more details regarding intranet, visit:

https://brainly.com/question/19339846

#SPJ1

Which of the following features is found in the view tab of the paint window?
A. crop
B. zoom
C. select
D. resize​

Answers

The feature which is found in the view tab of the paint window is: B. zoom.

What is a software?

A software can be defined as a set of executable instructions that is typically designed and developed to instruct a computer system on how to perform a specific task and function, as well as proffering solutions to a particular problem.

In Computer technology, the paint window is a software application that is designed and developed to enable end users modify a picture document such as resizing and cropping.

In the Home tab of the paint window, the following features are found:

CropSelectResize​

On the other hand, zoom is a feature that is typically found in the view tab of the paint window.

Read more on software here: brainly.com/question/25703767

#SPJ1

you want to configure static nat so that packets from host 192.168.2.100 will always be assigned the registered ip address 24.1.2.11 as shown. match the missing lines with the required commands.

Answers

the missing lines with the required commands is ip nat inside source static 192.168.2.100 24.1.2.11.

What is IP address?

Any device on a network can be identified by its IP address, which stands for Internet Protocol. IP addresses are used by computers to connect with one another on different networks and the internet.

Private IP internetworks that employ unregistered IP addresses can connect to the Internet thanks to NAT. NAT runs on a device and typically joins two networks. The private (internal network addresses that are not globally unique) addresses are converted into lawful addresses by NAT before packets are sent into another network. NAT can be set up to only advertise one address to the outside world for the entire network. By effectively concealing the entire internal network behind that one address, this capability increases security.

A NAT-configured device has a minimum of two network interfaces: one to the internal network and one to the external network. NAT is typically set up between a stub domain and the backbone at the exit device. NAT converts the locally significant source address into a globally unique address when a packet leaves the domain.

NAT converts a packet's globally unique destination address into a local address as soon as it enters the domain. The translation table for each NAT must be the same if there are several exit points. If NAT is unable to assign an address because there are no more addresses available, it drops the message. Afterward, NAT transmits to the destination an Internet Control Message Protocol (ICMP) host unreachable packet.

Learn more about IP address click here:

https://brainly.com/question/27961221

#SPJ4

what will a layer 2 switch do when the destination mac address of a received frame is not in the mac table?

Answers

If the switch's Mac table contains an entry for the destination host, the switch will broadcast the frame through all of its ports except the port on which it is received if there is no entry for the destination host. However, if there is an entry for the destination host, the switch will broadcast the frame unicast.

What is Mac table?

On Ethernet switches, the MAC address table—also known as the Content Addressable Memory (CAM) table—is used to decide where to forward traffic on a LAN. Let's take a closer look at how the MAC address table is created and used by an Ethernet switch to facilitate the movement of traffic to its destination.

The switch searches for a match between the destination MAC address of the frame and an entry in its MAC address database if the destination MAC address is a unicast address.

The switch forwards the frame out of the designated port if the target MAC address is listed in the table. The switch forwards the frame out all ports other than the incoming port if the destination MAC address is not listed in the table. It's known as an unknown unicast.

Learn more about Mac Table address click here:

https://brainly.com/question/29313724

#SPJ4

Which of the following is a text file that a website stores on a client's hard drive to track and
record information about the user?
Cookie
Certificate
Mobile code
Digital signature

Answers

The option that is a text file that a website stores on a client's hard drive to track and record information about the user is option A: Cookie.

In computer language, what exactly is a cookie?

A cookie is a piece of information from a website that is saved in a web browser for subsequent retrieval by the website. Cookies are used to let a server know whether visitors have visited a specific website again.

Therefore, Computer cookies are small files that web servers send to browsers and frequently contain unique identifiers. Each time your browser requests a new page, the server will receive these cookies. It enables a website to keep track of your online preferences and behavior.

Learn more about Cookie from

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

which type of attack involves capturing data packets from a network and retransmitting them to produce an unauthorized effect? the receipt of duplicate, authenticated internet protocol (ip) packets may disrupt service or produce another undesired consequence.

Answers

Replay attacks involves capturing data packets from a network and retransmitting them to produce an unauthorized effect

What are replay attacks?

Replay attacks entail retransmitting data packets that have been taken from a network in order to have an unauthorized effect. Receiving duplicate, authenticated IP packets could cause service to be interrupted or have some other unfavorable effect.

A replay attack is an active attack since it needs access to listen to all network messages and the capacity to transmit false ones.

Replay attacks are extremely prevalent because a hacker doesn't need specialised knowledge to decrypt the data after intercepting a transmission from a network. Replay attacks come in many different shapes and sizes and are not just restricted to credit card transactions.

Hence to conclude Replay attacks involves capturing data packets from a network and retransmitting them to produce an unauthorized effect

To know more on attacks in network follow this link

https://brainly.com/question/25807648

#SPJ4

you are working on an ipv6 address 2608:fe10:1:aa:002:50ff:fe2b:e708. you want to create subnets within this ip address. which of the following will you choose to alter when creating subnets for this address?

Answers

The following will you choose to alter when creating subnets for the address  is 2608.

What are subnets?

Subnets are defined as a partition of an IP network logically. A network can be divided into two or more networks via a method called subnetting. A subnet mask is used to divide an IP address in half. Subnetting separates broadcast domains to effectively route traffic, enhancing network performance and speed.

The site prefix is 2608:FE10:1:AA and the interface ID is 002:50FF:FE2B:E708 in the IPv6 address 2608:FE10:1:AA:002:50FF:FE2B:E708. Site prefixes may be displayed as, for instance, 2608:FE10:1:AA::/64, where the network's bit count is listed after a slash.

Thus, the following will you choose to alter when creating subnets for the address  is 2608.

To learn more about subnets, refer to the link below:

https://brainly.com/question/15055849

#SPJ1

aos, advance orbital security, designed a security system for a home that would call the police if the master switch to the security system is turned on and if the motion or sound sensor was triggered. which of the following circuits resembles the circuit that aos designed?

Answers

Advance Orbital Security would be using Passive Infra Red (PIR) and Active Ultrasonic sound detector in its security system design in order to trigger the security system and call the police upon activation.

Passive Infra Red (PIR) sensor or motion detector security system uses passive infra red that measures changes in the heat energy in the form of electromagnetic radiation radiating from its field of view, and those heat energy are often invisible to human eye. As as soon as the device detected changes in the electromagnetic radiations, it will send out an electric signal from the triggered device to the security system control panel which triggers the alarm sound which then simultaneously sends a cellular signal to the monitoring center at Advance Orbital Security which will then contacted and dispatch the police.

Active Ultrasonic Sound detector in the security system works by emitting ultrasonic sound waves that bounce off objects in its surroundings and return to the sensor with a transducer within the sensor that sends the pulse and receives the echo determining the distance between itself and the target by measuring the time between sending and receiving the signal. As soon as there is a time difference between sending and receiving the echo, it will send out an electric signal, alerting the security system control panel  which then send out e cellular signal to the monitoring center at AOS  security system which will then dispatch the local law enforcement agency.

To learn more about security system visit: https://brainly.com/question/826760

#SPJ4

If you could invent a technology that could change the world for the better, what would it be? List 3-5 ideas with brief explanations.

Answers

Answer:

1) I'd invent a device that would diagnose a person's disease or illness immediately, and would suggest the best course of treatment for them, and would also tell where to procure the treatment, as well as how to administer it.

2) I'd invent a device that shows the best way to divide resources like water, food etc. among the people and how to preserve them for as long as possible.

that's all i can think of.

Explain something you found easy in GMetrix in preparation for the IBC. Explain something you found difficult in GMetrix in preparation for the IBC.​

Answers

When preparing for a certification exam, GMetrix is utilized to pinpoint areas that need improvement.

What is GMetrix?

GMetrix is defined as a platform for performance-based testing and exam preparation that aids in obtaining IT certification qualifications. It is intended to aid students and professionals in their certification preparation by offering practice tests.

The easy in GMetrix in preparation for the IBC is certification become easy and the difficult is that the person who are not eligible for certification also get certification.

Thus, when preparing for a certification exam, GMetrix is utilized to pinpoint areas that need improvement.

To learn more about GMetrix, refer to the link below:

https://brainly.com/question/28313092

#SPJ1

Tony is brainstorming titles for the new video game that he is designing about killer sharks that terrorize a summer vacation spot. So far, he has come up with Summertime Sharks That Systematically Sink Ships and Don’t Go Near the Beach Because the Sharks Are Deadly This Summer. What is most likely wrong with both of these titles?
A.
They are too short.

B.
They aren’t accurate.

C.
They don’t give enough information.

D.
They are too long.

Answers

It’s D they are too long
D they are too long.

you are cleaning your desk at work. you toss several stacks of paper in the trash, including a sticky note with your password written on it. which of the following types of non-technical password attacks have you enabled?

Answers

Dumpster Diving is a non-technical password attack that is enabled if you write a password on a sticky note and through in the trash. The answer is Dumpster Diving.

Dumpster diving is the practice of rummaging through other people's trash for buried treasure. Dumpster diving is a technique used in information technology (IT) to recover data from discarded items that could be used to carry out an attack or gain access to networks.

Dumpster diving isn't just looking through trash for things like sticky-noted passwords or access credentials that are obviously valuable. A hacker using social engineering tactics may utilize seemingly innocent information, such as a phone book, calendar, or organizational chart, password written over stick notes to help them access the network.

Experts advise businesses to implement a disposal policy that requires all paper, including printed copies, to be shredded in a cross-cut slicer before being recycled, all storage media to be erased, and all employees to be trained on the risks of untracked trash in order to prevent dumpster divers from learning anything valuable from the trash.

You can learn more about Dumpster diving at

https://brainly.com/question/15012416

#SPJ4

Why do government organizations such as the United States Postal Service have to follow more rules than private businesses when it comes to spending money?

Answers

The full eagle logo, used in various versions from 1970 to 1993

The United States Postal Service (USPS), also known as the Post Office, U.S. Mail, or Postal Service, is an independent agency of the executive branch of the United States federal government responsible for providing postal service in the U.S., including its insular areas and associated states. It is one of the few government agencies explicitly authorized by the U.S. Constitution. The USPS, as of 2021, has 516,636 career employees and 136,531 non-career employee

Explanation:

write the code to call the function named send signal. there are no parameters for this function. 1 enter your code

Answers

The code to call the function named send_signal which has no parameters for the function is given as follows;

send_signal()

What does the send_signal() function do?

SendSignal is used to synchronize two threads at a time. To synchronize several threads on the same event, utilize the event management functions: EventCreate: This method creates an event.

Note that Coding generates a collection of instructions that computers may use. These instructions specify the activities a computer may and cannot perform. Coding enables programmers to create programs like websites and applications. Computer programmers may also instruct machines on how to handle data more efficiently and quickly.

Learn more about coding:
https://brainly.com/question/28848004
#SPJ1

you need to configure a cisco rfc 1542-compliant router to forward any received dhcp frames to the appropriate subnet. the address of the remote dhcp server is 172.16.30.1 which of the following commands would you use to configure the router?

Answers

The commands would you use to configure the router is -ip helper-address 172.16.30.1

A DHCP Relay Agent is typically configured on the Layer 3 connection of a Cisco IOS device using the IP helper-address command. By sending broadcasting UDP communications that are accepted on a certain subnet to a selected host on some other subnet, the command enables a Cisco IOS device to function as a Relay Agent for any UDP service (such as DHCP). It is possible for a Layer 3 device, like a gateway or central switch, to link to numerous subnets. There might be hosts on all of these subnets that get their IP Configuration settings through DHCP. To connect touch with a DHCP server and get an Internet address, such hosts broadcast Dhcp Server signals enclosed in broadcasting packets (destination MAC address FF:FF:FF:FF:FF: FF).

Your question is incomplete, most probably the full question was:

You need to configure a Cisco RFC 1542-compliant router to forward any received DHCP frames to the appropriate subnet. The address of the remote DHCP server is 172.16.30.1

Which of the following commands would you use to configure the router?

-ifconfig 172.16.30.1

-ip address dhcp 172.16.30.1

-host 172.16.30.1

-ip helper-address 172.16.30.1

Learn more about IP helper-address here:https://brainly.com/question/26959755

#SPJ4

6.26 lab: toll calculations toll roads have different fees at different times of the day and on weekends. write a function calctoll() that has three arguments: the current hour of time (int), whether the time is morning (bool), and whether the day is a weekend (bool). the function returns the correct toll fee (double), based on the chart below. weekday tolls before 7:00 am ($1.15) 7:00 am to 9:59 am ($2.95) 10:00 am to 2:59 pm ($1.90) 3:00 pm to 7:59 pm ($3.95) starting 8:00 pm ($1.40) weekend tolls before 7:00 am ($1.05) 7:00 am to 7:59 pm ($2.15) starting 8:00 pm ($1.10) ex: the function calls below, with the given arguments, will return the following toll fees: calctoll(8, true, false) returns 2.95 calctoll(1, false, false) returns 1.90 calctoll(3, false, true) returns 2.15 calctoll(5, true, true) returns 1.05

Answers

For the implementation of toll calculation we are using C++ programming.

What is C++ programming?

A general-purpose programming and coding language is C++ (also known as "C-plus-plus"). As well as being used for in-game programming, software engineering, data structures, and other things, C++ is also used to create browsers, operating systems, and applications.

Code for the toll calculation:

#include<iostream>

#include<iomanip>

using namespace std;

double CalcToll(int hour,bool isMorning,bool isWeekend)

{  

double res;

 if(isWeekend)

 {

 if(isMorning && hour<7)

  {

  res=1.05;

  }

 else if(isMorning && (hour>=7 || hour<=12))

  {    

res=2.15;

 }

  else if(!isMorning && (hour>=1 || hour<=7))

  {

   res=2.15;

 }

 else if(!isMorning && hour>=8)

 {

  res=1.10;

 }

}

else

 {

  if(isMorning && hour<7)

  {

  res=1.15;  

}

  else if(isMorning && (hour>=7 || hour<=9))

  {

   res=2.95;

 }

 else if(!isMorning && (hour>10 || hour<=12 || hour>=1 || hour<=2))   {    res=1.90;

 }

  else if(!isMorning && (hour>=3 || hour<=7))

  {

   res=3.95;

 }

 else if(!isMorning && hour>=8)

  {

  res=1.40;

 }

 }

 return res;

}

int main()

{

 cout<<CalcToll(8,true,false)<<endl;

 cout<<CalcToll(1,false,false)<<endl;

cout<<CalcToll(3,false,true)<<endl;

cout<<CalcToll(5,true,true)<<endl;

return 0;

}  

Output:

2.95

1.9

2.15

1.05

Learn more about C++ Programming click here:

https://brainly.com/question/28959658

#SPJ4

Other Questions
A process that is approaching equilibrium will have a ______ suniv value. Health definitions differ across the world in terms of what values they emphasize.TrueFalse a client is being screened for a parasitic infection and the physician orders stool specimens. when explaining to the client about collecting the specimens, the nurse would inform the client that the specimens will be collected daily for:a client is being screened for a parasitic infection and the physician orders stool specimens. when explaining to the client about collecting the specimens, the nurse would inform the client that the specimens will be collected daily for: Writean analysis Comparing The Last Loaf,And The Gift of the mag? and explain.how the stories are similan in the authorsuse of irony and theme. Which of the following was a political effect of European imperialism in Africa The seven ages of man Which theme is evident in the passage? kikko strongly dislikes country music but told keith, who is a big country music fan and her latest love interest, that country music is her favorite and that she would love to go with him to a country music concert. this type of behavior is called How many total ions would be present in the formula for indium fluoride? the nurse is teaching a client about the development of leukemia. what statement should be included in the teaching plan? What kinds of cognitive biases and behaviors can prevent people from making smartnvesting decisions?1 Staying calm when the market is experiencing a downturn.2 Buying stocks when prices are low and selling them when they're high3 Exiting the market because that's what everyone else is doing4 Investing in a diversified portfolio instead of trying to time the market 8 pointsMegan and Desmond each added the same amount of water to their aquariums. Megan mixed5 mL of a chemical solution with every gallon of water for her aquarium. Desmond mixed8 mL of the chemical solution with every 2 gallons of water for his aquarium.Which of these statements is true?A Megan used more solution per gallon of water than Desmond, because 5:1 is greaterthan 8: 2.B Megan used more solution per gallon of water than Desmond, because 5 mL is greaterthan 2 mL.C Desmond used more solution per gallon of water than Megan, because 8 mL is greaterthan 5 mL.D Desmond used more solution per gallon of water than Megan, because 8:2 is greaterthan 5: 1. (Multiplying and Dividing with Scientific Notation MC)3.185x1079.1x108DivideWrite the final answer in scientific notation. Is it possible for a number to be a product of 2, a product of 5,and a product of 10? Explain. The quantity of antimony in a sample can be determined by an oxidationreduction titration with an oxidizing agent. A 7.97 g sample of stibnite, an ore of antimony, is dissolved in hot, concentrated HCl(aq) and passed over a reducing agent so that all the antimony is in the form Sb3+(aq). The Sb3+(aq) is completely oxidized by 34.8 mL of a 0.130 M aqueous solution of KBrO3(aq). The unbalanced equation for the reaction isBrO3(aq)+Sb3+(aq)Br(aq)+Sb5+(aq)(unbalanced)Calculate the amount of antimony in the sample and its percentage in the ore.mass of antimony in grams:percentage of antimony: What was the main reason Romans persecuted Christians? a.they threatened Jewish traditions b.they refused to worship Roman gods c.Christians preached belief in good and evil spirits d.Christians became politically powerful Once revealed, Odysseus and his son greet the suitors by What is the y-intercept of g(x) = -|x +6|+ 4 Supplies are running out! Act now before it's too late!a) kairosb) ethosc) pathosd) logos Graph equations that represent the growth rates of hamburgers soldand wraps sold in the same coordinate plane. Compare the steepnessof the graphs. What does this mean in the context of the problem? what is the reciprocal of 5 1/3