Which of the following is the correct way to declare a class in C++?
A. class Circle
{
private:
double radius;
public:
void Circle::setRadius(double radius);
double Circle::getDiameter();
double Circle::getArea();
double Circle::getCircumference();
}
B. class Circle
{
private:
double radius;
public:
void setRadius(double radius);
double getDiameter();
double getArea();
double getCircumference();
};
C. class Circle
{
private double radius;
public void setRadius(double radius);
public double getDiameter();
public double getArea();
public double getCircumference();
};
D. Circle::Circle(double radius)
{
private:
double radius = radius;
public:
void setRadius(double radius);
double getDiameter();
double getArea();
double getCircumference();
}

Answers

Answer 1

The correct way to declare a class in C++ is option b.

What is class in C++?

Class in C++ is a building block of object-oriented programming. Class created by user as object constructor in programming.

To create class in C++ first type class following by class name. In the given option, option D is wrong for this step.

Then, declare variable in body of class. But, before declare variable choose variable type private or public. Variable type only needs to be typed once. In the given option, option C is wrong for this step.

To declare variable, we only need declare data type and then variable name. In the given option, option A is wrong for this step.

So, only option B is correct to declare class in C++.

Learn more about C++ here:

brainly.com/question/27019258

#SPJ4


Related Questions

I was opening quite a few tabs, and (i also dropped it yesterday;-; with the protective case) the screen turns to the following images( it is still being used perfectly fine after like half an hour since the drop) so uhm... Help?
It also have really low memory something because it my whole family's laptop...;(....

I was opening quite a few tabs, and (i also dropped it yesterday;-; with the protective case) the screen
I was opening quite a few tabs, and (i also dropped it yesterday;-; with the protective case) the screen

Answers

Based on the news you gave, it's likely that the screen issue you're experiencing had a connection with the drop, and the number of tabs you have open may be dawdling a strain on the desktop computer's thought.

What are possible solutions?

I would desire to continue the desktop computer and observe if the screen issue continues. If it does, try joining an extrinsic monitor to visualize if the question is accompanying the desktop computer screen or extraordinary.

To address the reduced memory issue, you take care of try closing a few of the open tabs or programs that are not being used to permit an action room.

Alternatively, you keep feeling improving the desktop computer's memory in some way or utilizing an outside permanent computer memory to store files to allow scope

Read more about screen problems here:

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

Ryland receives a call from a nurse who is having trouble accessing patient information through software on their hospital computers that his company supplies. Ryland is ____________ his company’s software program.

A.
maintaining

B.
deploying

C.
updating

D.
supporting

Answers

Ryland receives a call from a nurse who is having trouble accessing patient information through software on their hospital computers that his company supplies. Ryland is supporting his company’s software program.

The correct answer to the given question is option D.

Technical support is a service that provides help to people who have issues with electronic devices or software applications. It is also known as IT support, computer support, and help desk support. The primary goal of technical support is to help users solve technological issues that arise, which may be related to hardware, software, and the internet.The technical support role.

The technical support team's role is to solve technical issues and maintain an organization's technology infrastructure. They assist in diagnosing technical problems, providing support to customers, and maintaining equipment. Technical support staff can also offer training sessions on how to use specific software or hardware. Technical support personnel also perform routine maintenance and repairs of computer and other technological equipment.

Ryland's role in supporting his company's software program. As the owner or a representative of the software company, Ryland's primary responsibility is to provide support to users of his company's software program. He must ensure that users can access the program with ease, and all software updates and issues are addressed in a timely and efficient manner.

Ryland must be knowledgeable about his software program to answer any queries and concerns that arise from users. By providing quick and effective customer service, he ensures that his clients are satisfied with his product and can continue to use it without any hindrance. Thus, Ryland is supporting his company’s software program.

For more such questions on software, click on:

https://brainly.com/question/13738259

#SPJ8

You have been asked to write a program for the Duckie's Obstacle Race. The program calculates the total number of racers, the fastest race time, the slowest race time, and the overall average race time.

Ask user to enter the maximum number of racers allowed for the race
Use repetition structure (loop) to ask the user to enter race times (in minutes)
Exit the loop if the user specifies there are no more times to enter (sentinel value) or if the maximum number of racers allowed has been reached
At a minimum, within the loop, you should keep track of how many race times are entered, the fastest race time and the slowest race time.
After the loop is exited, display how many race times were entered, the fastest race time, the slowest race time and the overall average race time.
Format your output appropriately
Be sure to include all appropriate documentation at the start of the program and within the program body

Answers

The program illustrates the use of loops and conditional statements

Conditional statements are used to make decisionsLoops are used for operations that must be repeated until a certain condition is met.

The race program

The program written in Python, where comments are used to explain each action is as follows:

#This initializes the variables to 0

totalRaceTime = 0; minRaceTime = 0; maxRaceTime = 0; countTimes = 0

#This gets input for the number of race times

numTimes = int(input("Number of times: "))

#This opens a sentinel controlled loop

while countTimes < numTimes:

   #This gets the race time

   raceTime = int(input("Race time: "))

   if countTimes == 0:

       minRaceTime = raceTime

       maxRaceTime = raceTime

   #This determines the highest race time

   if raceTime > maxRaceTime:

       maxRaceTime = raceTime

   #This determines the leest race time

   if raceTime < minRaceTime:

       minRaceTime = raceTime

   #This determines the total race time

   totalRaceTime+=raceTime

   countTimes+=1

#This prints the highest race time

print("Maximum: ",maxRaceTime)

#This prints the least race time

print("Minimum: ",minRaceTime)

#This prints the average race time

print("Average: ",round(totalRaceTime/numTimes,2))

Read more about while loops and conditional statements at:

https://brainly.com/question/24833629

2. Write the output of:
a) CLS
A= 10
B = 20
C = 30
S=A+B+C
Av=S/3
Print "sum is:",s
Print "Average is:", Av
End​

Answers

sum is 60 (add a b and c together)
average is 20 (divide 60 by 3)

Introduction: Define the access control and its purposes of security management.​

Answers

explanation :

Introduction: Define the access control and its purposes of security management.

Access control is a security mechanism used to manage and regulate access to physical and digital resources. The primary purpose of access control is to restrict access to authorized individuals and prevent unauthorized access, theft, damage, or loss of sensitive data, assets, or property.

In security management, access control serves the following purposes:

Authorization: Access control ensures that only authorized individuals can access resources, facilities, or systems. The authorization process involves identifying, verifying, and validating user credentials, such as username and password, biometric data, or security tokens.

Authentication: Access control mechanisms authenticate the identity of users attempting to access resources or systems. Authentication methods include passwords, biometric identification, smart cards, and tokens.

Accountability: Access control systems provide an audit trail of all access attempts and activities performed by authorized users. This information helps security administrators track and monitor user behavior and detect any suspicious activities.

Availability: Access control ensures that resources are available to authorized users when needed, and it prevents denial-of-service attacks that can disrupt system operations.

leave a comment

Compliance: Access control systems help organizations comply with regulatory requirements and standards, such as HIPAA, GDPR, PCI DSS, and SOX. Compliance with these regulations helps protect sensitive data and mitigate the risk of legal and financial penalties.

background information and features of tick-tock . [5]​

Answers

Tick-tock features are:

Algorithm-driven feedCreative video toolsViral challengesGlobal reach

What is the background information?

The story of Tick-tock started in 2016, when Chinese company ByteDance propelled an app called A.me that was said to have permitted clients to form and share brief recordings. It was renamed Douyin three months later.

Tick-tock is known or may be a social media app that permits clients to form and share short-form recordings with a term of 15 seconds to 1 miniature. The app was propelled in 2016 by the Chinese tech company ByteDance.

Learn more about background information  from

https://brainly.com/question/25023780

#SPJ1

1. What operating system are you using on your computer?

Answers

Answer:

Windows

Explanation:

Flexible and convenient

find four
reasons
Why must shutdown the system following the normal sequence

Answers

If you have a problem with a server and you want to bring the system down so that you could then reseat the card before restarting it, you can use this command, it will shut down the system in an orderly manner.

"init 0" command completely shuts down the system in an order manner

init is the first process to start when a computer boots up and keep running until the system ends. It is the root of all other processes.

İnit command is used in different runlevels, which extend from 0 through 6. "init 0" is used to halt the system, basically init 0

shuts down the system before safely turning power off.

stops system services and daemons.

terminates all running processes.

Unmounts all file systems.

Learn more about  server on:

https://brainly.com/question/29888289

#SPJ1

12. In cell A14, use the INDEX function and structured references to display the value in the first row and first column of the AcademicGroups table.

Answers

Answer:index(E3:H12,1)

Explanation:

Answer: =INDEX(AcademicGroups,1,1)

Explanation:

Use the INDEX function (fx) button and you will be provided two different arguments to choose from.

Select the argument: array,row,num,column,num

In the Array section, click the up-arrow and then highlight the range A2:G12 (this is the AcademicsGroups table).

In the Row_num section, enter the number 1

In the Column_num section, enter the number 1

Press OK

Hopefully the logic behind this, after seeing it, makes sense.

briefly describe what a variable is

Answers

Answer:

In mathematics, a variable is a symbol or letter, such as "x" or "y," that represents a value. In algebraic equations, the value of one variable is often dependent on the value of another. Variables are also used in computer programming to store specific values within a program

Explanation:

7.1.5 List of Prime numbers CodeHS

Answers

Using the knowledge in computational language in python it is possible to write a code that tarts spinning when i think about nested loops, i cant keep up.

Writting the code:

{

   Scanner in = new Scanner(System.in);

   int num = 3, status = 1;

   System.out.println("Enter the number prime numbers you      want ");

   int n = in.nextInt();

   if (n >= 1) {

       System.out.println("first " + n + " prime numbers are");

       System.out.println(2);

   }

   for (int i = 2; i <= n;) {

       for (int j = 2; j <= Math.sqrt(num); j++) {

           if (num % j == 0) {

               status = 0;

               break;

           }

       }

       if (status != 0) {

           System.out.println(num);

           i++;

       }

       status = 1;

       num++;

        }

    }

}

See more about JAVA at brainly.com/question/18502436

#SPJ1

7.1.5 List of Prime numbers CodeHS

A Mixed Reality application detects the spatial layout of a room and is able to overlap or hide a virtual object based on its position in the image. What effect makes this possible?

Answers

Tethering A mixed reality program identifies the physical arrangement of a room and can overlay or show a digital include about on its placement in the picture. What impact allows this to happen?

Tethered virtual reality headsets are fueled by a cable modem to a laptop, which further supplies the headgear with the VR experience. Some tethered VR headsets need extra gadgets such as ground stations and lightboxes installed in the showed improvement of a room to track students' movements.

Mixed reality applications have been implemented in a variety of industries, including design, teaching, entertaining, military training, health, commercial document management, and living thing robot control.

To know more about robot click here

brainly.com/question/30258787

#SPJ9

Write a function "doubleChar(" str) which returns a string where for every character in the original string, there are two characters.

Answers

Answer:

//Begin class definition

public class DoubleCharTest{

   

   //Begin the main method

    public static void main(String [ ] args){

       //Call the doubleChar method and pass some argument

       System.out.println(doubleChar("There"));

    }

   

    //Method doubleChar

    //Receives the original string as parameter

    //Returns a new string where for every character in

    //the original string, there are two characters

    public static String doubleChar(String str){

        //Initialize the new string to empty string

       String newString = "";

       

        //loop through each character in the original string

       for(int i=0; i<str.length(); i++){

            //At each cycle, get the character at that cycle

            //and concatenate it with the new string twice

           newString += str.charAt(i) + "" + str.charAt(i);

        }

        //End the for loop

       

        //Return the new string

       return newString;

       

    } //End of the method

   

} // End of class declaration

Sample Output:

TThheerree

Explanation:

The code above has been written in Java and it contains comments explaining each line of the code. Kindly go through the comments. The actual lines of executable codes have been written in bold-face to differentiate them from comments.

A sample output has also been given.

Snapshots of the program and sample output have also been attached.

Write a function "doubleChar(" str) which returns a string where for every character in the original
Write a function "doubleChar(" str) which returns a string where for every character in the original

What feature allows a person to key on the new lines without tapping the return or enter key

Answers

The feature that allows a person to key on new lines without tapping the return or enter key is called word wrap

How to determine the feature

When the current line is full with text, word wrap automatically shifts the pointer to a new line, removing the need to manually press the return or enter key.

In apps like word processors, text editors, and messaging services, it makes sure that text flows naturally within the available space.

This function allows for continued typing without the interruption of line breaks, which is very helpful when writing large paragraphs or dealing with a little amount of screen space.

Learn more about word wrap at: https://brainly.com/question/26721412

#SPJ1

Write a program that determines which of a company’s four divisions (Northeast, Southeast, Northwest, and Southwest) had the greatest sales for a quarter. It should include the following two functions, which are called by the main function.

getSales() is passed the name of a division. It asks the user for a division’s quarterly sales figure, validates that the input is not less than 0, then returns it. It should be called once for each division.

void findHighest() is passed the four sales totals. It determines which is the largest and prints the name of the high grossing division, along with its sales figure.

Answers

C++ Program: #include using namespace std; string division Name[4] = {"Northeast", "Southeast", "Northwest", "Southwest"}; // Division names globally declared double get sales(string division) //ask each division for quarterly sales.

What is Sales?

A sale is an agreement between a buyer and a seller in which the seller exchanges money for the sale of tangible or intangible products, assets, or services. There are two or more parties involved in a sale. A sale, or a contract between two or more parties, such as the buyer and seller, can be thought of in larger terms.

Include using namespace std; string division Name[4] = {"Northeast", "Southeast", "Northwest", "Southwest"}; // Division names globally declared double get sales(string division) //ask each division for quarterly sales.

Learn more about Sales here:

https://brainly.com/question/15375944

#SPJ1

What is the value of postal_code in row 1 of your query result?

NOTE: The query index starts at 1 not 0.

1 point

None


N1 5LH


2010


14700

Answers

The value of postal_code in row 1 of my query result is N1 5LH.

The value "N1 5LH" is the postal code associated with the first row in the query result. It indicates the specific geographic location or address within a given area.

Postal codes are used to facilitate mail delivery and help identify the destination for postal services. In this case, the postal code "N1 5LH" represents a particular area or address within a certain region.

The postal code "N1 5LH" is a specific alphanumeric code assigned to a geographic location within a certain area. Postal codes are part of a system used by postal services to efficiently sort and deliver mail to the correct destination.

In the context of the query result, the presence of the postal code "N1 5LH" in the first row suggests that the corresponding data entry or record is associated with a specific address or location in the N1 5LH area. This could be a residential address, a business location, or any other place where mail can be delivered.

By including postal codes in the query result, it becomes easier to organize and sort data based on geographic regions. Postal codes provide a more granular level of information than just the city or town name, allowing for more precise identification of specific areas within a larger region.

For more questions on  postal_code

https://brainly.com/question/31601088

#SPJ11

Which of the following statements are true about how technology has changed work? Select 3 options. Responses Businesses can be more profitable by using communication technology to reduce the costs of travel. Businesses can be more profitable by using communication technology to reduce the costs of travel. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. In a gig economy, workers are only hired when they are needed for as long as they are needed. In a gig economy, workers are only hired when they are needed for as long as they are needed. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Technology has not really changed how businesses operate in the last fifty years. Technology has not really changed how businesses operate in the last fifty years.

Answers

The three genuine statements almost how technology has changed work are:

Businesses can be more productive by utilizing communication technology to decrease the costs of travel. This can be genuine since advances like video conferencing and virtual gatherings permit businesses to conduct gatherings, transactions, and collaborations remotely, lessening the require for costly travel courses of action.

With the spread of technology and the Web, littler businesses are not able to compete as successfully as some time recently. This explanation is genuine since innovation has empowered bigger companies to use their assets and reach a worldwide advertise more effortlessly, making it challenging for littler businesses to compete on the same scale.

Through the utilize of the Web and collaboration devices, more laborers are able to perform their occupations remotely. This explanation is genuine as innovation has encouraged farther work courses of action, allowing employees to work from anyplace with an online association. Collaboration instruments like extend administration computer program and communication stages have made inaccessible work more doable and effective.

Technology explained.

Technology alludes to the application of logical information, aptitudes, and devices to form innovations, fathom issues, and move forward proficiency in different spaces of human movement. It includes the improvement, usage, and utilize of gadgets, frameworks, and processes that are outlined to achieve particular assignments or fulfill specific needs.

Technology can be broadly categorized into distinctive sorts, such as data technology, communication technology, therapeutic innovation, mechanical technology, and transportation technology, among others. These categories include different areas, counting computer science, hardware, broadcast communications, building, and biotechnology.

Learn more about technology below.

https://brainly.com/question/13044551

#SPJ1

Application for a lawn-mowing service. The lawn-mowing season lasts 20 weeks. The weekly fee for mowing a lot under 40 square feet is $25. The fee for a lot that is 40 square feet or more, but under 60 square feet, is $35 per week. The fee for a lot that is 60 square feet or over is $50 per week. Prompt the user for the length and width of a lawn USING JOPTIONPANE, and then display the weekly mowing fee USING JOPTIONPANE , as well as the 10-week seasonal fee.

Answers

The prompt to the user for the length and width of a lawn is; Done by the program created below in Java using JOPTIONPANE

How do you write a Program in Java?

// library

import java.util.*;

// class definition

class Main

{// main method of the class

public static void main (String[] args) throws java.lang.Exception

{

  try{

   // object to read inputs

     Scanner scr=new Scanner(System.in);

     System.out.print("Enter length of lawn:");

     // read the length of lawn

     int length=scr.nextInt();

     System.out.print("Enter width of lawn:");

     // read the width of lawn

     int width=scr.nextInt();

     // find area of lawn

     int area=length*width;

     //if area is less than 400

     if(area<400)

     {// Weekly mowing fee

         System.out.println("Weekly mowing fee is:$25");

         // seasonal fee

         System.out.println("20-week seasonal fee is:$"+(25*20));

     }

     // if area >=400 and area <600

     else if(area>=400 && area<600)

     {

        // Weekly mowing fee

         System.out.println("Weekly mowing fee is:$35");

         // seasonal fee

         System.out.println("20-week seasonal fee is:$"+(35*20));

     }

     // if area >=600

     else if(area>=600)

     {

        // Weekly mowing fee

         System.out.println("Weekly mowing fee is:$50");

         // seasonal fee

         System.out.println("20-week seasonal fee is:$"+(50*20));

     }

  }catch(Exception ex){

      return;}

}

}

Read more about Java Programming at; https://brainly.com/question/18554491

Which of the following should not use a domain of text?
O Birthdate
O LastName
O StreetAddress
O ZipCode

Answers

Answer:

street address

A chart legend?

A.corresponds to the title of the data series column.
B.provides the boundaries of the chart graphic.
C.is based on the category labels in the first column of data.
D.is used to change the style of a chart.

Answers

A chart legend can be useful in some cases during data process
Change style and f art

For optimum computer performance, what features and or characteristics should a
computer possess to efficiently copy any material from an external device?

Answers

A computer should be compactible and possess a good cache memory size, so as to efficiently copy any material from an external device.

What is a computer?

A computer refers to an electronic device that is designed and developed to receive data in its raw form as an input and processes these data into an output (information) that could be used by an end user.

For optimum computer performance, some of the features and or characteristics that a computer should possess, so as to efficiently copy any material from an external device (hard-disk drive) are:

CompatibilityCache memory size.The computer should have a USB 3.0 port.

Read more on computer here: brainly.com/question/959479

Assume that your body mass index (BMI) program calculated a BMI of 41.6. What would be the value of
category after this portion of the program was executed?
# Determine the weight category.
if BMI < 18.5:
category= "underweight
elif BMI > 39.9:
category="morbidly obese"
elif BMI <= 24.9:
category= "normal"
elif BMI <= 39.9:
category="overweight"
The value of category will be

Answers

"The value of category will be 'morbidly obese'."

1 punto
8.- Consiste en la transformación de
insumos o materias primas en
productos y servicios, por medio del
uso de recursos físicos, tecnológicos,
humanos, agrícolas, etc. Según su
entorno o contexto social. *
O a
a) Proyecto técnico
O b) Innovación tecnológica
O c) Proceso productivo
O d) Cambio técnico
Otros:​

Answers

Answer:

c Proceso productivo

Explanation:

What is the best way to deal with a spam

Answers

Simply ignoring and deleting spam is the best course of action. Avoid responding to or engaging with the spam communication because doing so can let the sender know that your contact information is still live and invite additional spam in the future. Additionally, it's critical to mark the email as spam using your email program or by reporting it to the relevant authorities. Make careful to report the spam to the proper authorities for investigation if it appears to be a phishing scheme or contains hazardous content.

How are BGP neighbor relationships formed
Automatically through BGP
Automatically through EIGRP
Automatically through OSPF
They are setup manually

Answers

Answer:

They are set up manually

Explanation:

BGP neighbor relationships formed "They are set up manually."

This is explained between when the BGP developed a close to a neighbor with other BGP routers, the BGP neighbor is then fully made manually with the help of TCP port 179 to connect and form the relationship between the BGP neighbor, this is then followed up through the interaction of any routing data between them.

For BGP neighbors relationship to become established it succeeds through various phases, which are:

1. Idle

2. Connect

3. Active

4. OpenSent

5. OpenConfirm

6. Established

During the name resolution process, which technique is used to avoid congestion when querying a server

Answers

Answer:

"NOT lookup " is the correct approach.

Explanation:

This methodology significantly reduces the quantity of congestion of DNS messages on a certain file. The application establishes that whenever a question reaches if it is processed. Unless the file is loaded, then perhaps the response is returned with the cached cache.Typically the name resolution occurs in something like a DNS File. The conversion usually occurs throughout this cycle from Username to IP, including IP via Username.

how to create diagram that demonstrates the step
by step procedures in performing a mail merge.

Answers

Answer:

hope it helps

1-Creating a Main Document and the Template.

2-Creating a Data Source.

3-Defining the Merge Fields in the main document.

4-Merging the Data with the main document.

5-Saving/Exporting

During the boot process, what does the processor do after the computer circuits receive power?

Answers

Answer:

When ROM receives power, its ROM BIOS instructions are activated and they load the operating system into RAM. This startup sequence is referred to as the boot process. After the operating system is loaded, the computer can accept input, display output, run software, and access your data.

It loads all startup program

Boot process is simply the process where the computer is started. The process is described as follows;

After the power is switched on and the Read only memory (ROM) gets the power, it's Basic input and output system known as BIOS instructions as well as the processors are activated.

Thereafter, the operating system is loaded into the Random access memory (RAM).

Thereafter, the operating system is loaded and then the basic start up programs like the drivers and system utilities are loaded.

From the steps above, we can see that after receiving power, the processor loads the start up programs in the booting process.

Read more at; brainly.com/question/19028713

9. A change in the appearance of a value or label in a cell
a) Alteration
b) Format
c) Indentation
d) Design
10. The placement of information within a cell at the left edge, right ed
a) Indentation
b) Placement
c) Identification
d) Alignment
11. Spreadsheet can be best classified as
a) Word
b) Database
c) Excel
d) Outlook
12. Formulas in Excel start with​

Answers

Answer:

format

alignment

excel

=

Explanation: i'm an accountant

A change in the appearance of a value or label in a cell is format. The placement of information within a cell at the left edge, right edge is alignment, and spreadsheet can be best classified as Excel. The correct options are b, d, and c respectively.

What exactly does a spreadsheet mean?

A spreadsheet, also known as an electronic work sheet, is a computer program that organizes data into graph-like rows and columns. Formulas, commands, and formats can be used to manipulate each row and column.

Spreadsheets are most commonly used to store and organize data such as revenue, payroll, and accounting information. Spreadsheets allow the user to perform calculations on the data and generate graphs and charts.

Format is a change in the appearance of a value or label in a cell. The alignment of information within a cell at the left edge, the alignment of information within a cell at the right edge, as well as spreadsheets are usually best classified as Excel.

Thus, b, d, and c respectively are correct options.

For more details regarding spreadsheet, visit:

https://brainly.com/question/8284022

#SPJ6

Write A C++ Program To Find If a Matrix Is a reflexive / irreflexive/Symmetric/Antisymmetric/Transitive.

Answers

A C++ Program To Find If a Matrix Is a reflexive / irreflexive/Symmetric/Antisymmetric/Transitive is given below:

Given the sample input:

0 1 2 3 //elements (A)

0 0    //relations (B)

1 1

2 2

3 3

x y z //elements (A)

x y   //relations (B)

y z

y y

z z

x y z //elements (A)

x x   //relations (B)

y z

x y

z y

x z

y y

z x

y x

z z

1 2 3 4 5 6 7 8 //elements (A)

1 4            //relations (B)

1 7

2 5

2 8

3 6

4 7

5 8

6 6

1 1

2 2

The Program

bool pair_is_in_relation(int left, int right, int b[], int sizeOfB)

{

   for(int i=0; i+1<sizeOfB; i+=2) {

       if (b[i]==left && b[i+1]==right)

           return true;

   }

   return false;

}

bool antiSymmetric(int b[], int sizeOfB)

{

   bool holds = true;

   for(int i=0; i+1<sizeOfB; i+=2) {

       int e = b[i];

       int f = b[i+1];

      if(pair_is_in_relation(f, e, b, sizeOfB)) {

           if (e != f) {

               holds = false;

               break;

            }

       }

   }

   if (holds)

      std::cout << "AntiSymmetric - Yes" << endl;

   else

       std::cout << "AntiSymmetric - No" << endl;

   return holds;

}

Read more about C++ programming here:

https://brainly.com/question/20339175

#SPJ1

Other Questions
the ____ establishes the naming conventions for tables, fields, and indexes in the data dictionary. The graph shows the distribution of the lengths (in seconds) of videos on a popular video-streaming site. The distribution is approximately Normal, with a mean of 264 seconds and a standard deviation of 75 seconds.A graph titled Streaming Videos has length (seconds) on the x-axis, going from negative 36 to 564. The highest point of the curve is at 264.What percentage of videos on the streaming site are between 264 and 489 seconds?0.15%49.85%95%99.7% give evolutionary differences, men are typically worried about sexual infidelity because_____, whereas women are typically worried about emotional infidelity because______ What is the best way to communicate your intense emotions to someone Which sentence from the passage supports the idea that advertisers try to reach a certain group of people? A. In the United States, young people view approximately 3,000 advertisements a day. B. Product placement is becoming more and more common. C. Do you ever wonder why you use certain brands? D. These commercials are made with a specific audience in mind Which of the following terms is used to describe a balance of all body systems?-Hypothermia-Diffusion-Perfusion-Homeostasis Solve the following proportion for u. 4/u = 17/7 Round your answer to the nearest tenth. u= Guys help me out for the D part What is the mass percentage of O in CHO? Provide an answer to two decimal places. I WILL GIVE 20 POINTS TO THOSE WHO ANSWER THIS QUESTION RIGHT NOOOO SCAMS AND EXPLAIN WHY THAT IS THE ANSWER ________ are able to turn into many different types of specialized tissue, such as blood or muscle cells Use the graph and information to calculate the amount of energy needed to change 35g of -20 C ice to water vapor. Show your setup and calculations when performing presurgical teaching for a client pending a transurethral resection of the prostate (turp), which statement would the nurse include? How can an officer stop an verbally aggressive driver at a stop the of a resume lists organizations, dates of involvement, and responsibilities for previous employment, relevant school activities, and community service.O 1. personal data section O 2. related information sectionO 3. education sectionO 4. experience section The approach that suggests that imagination, ingenuity, and creativity can help solve organizational problems, but most organizations do not make adequate use of these characteristics in their employees is What is the measure in degrees of angle R? __________ is a combination of passion and perseverance for a singularly important goal, together with resilience and a tolerance for feeling frustrated. Write a story in which a character receives $10,000 in the mail without knowing who sent it. What happens next? Make sure your story has a clear beginning, middle, and end. If you get stuck, try using the tips and lessons on the left side of the screen to help you out! A bond with a 7% coupon that pays interest semi-annually and is priced at par will have a market price of _____ and interest payments in the amount of _____ each.