select all that apply. in an inheritance situation, the new class that you create from an existing class is known as the

Answers

Answer 1

The new class that you create from an existing class in an inheritance situation is referred to as the base class function Object.

Inheritance enables programmers to independently modify original software via public classes and interfaces, to specify a new implementation while preserving the same behaviours, and to construct classes that are built upon existing classes. Several derived classes inherit from a single base class in this style of inheritance. The constructors are called in the same order that classes are inherited when they are created.

What is multiple inheritance?

The base class function Object will be invoked first followed by the function Object of the derived class if we have a base class and one derived class that inherits this base class. Creating a class by deriving from multiple direct base classes is known as multiple inheritance.

To learn more about inheritance from given link

brainly.com/question/14930526

#SPJ4


Related Questions

Question 4 of 10
which phrase best describes algorithmic bias?
o a. when systematic errors in a program create unfair outcomes
b. when companies avoid using algorithms in their software
c. when programmers purposely create biased software
d. when people insist on doing things without technology

Answers

The phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.

What is Algorithmic bias?

This is known to be a term that tells about the systematic and repeatable errors as seen in a  computer system that forms "unfair or bad" outcomes.

Therefore, we can say that the phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.

Learn more about algorithmic bias from

https://brainly.com/question/22236556

#SPJ1

explain how do compare and contrast graphic organizers help you to synthesize information?

Answers

Answer:

Answer: Given two or more sets of features of items, people, events, etc; compare and contrast graphic organizers help you to see what the sets have in common and what difference one set from the others, that is, what characteristics are unique from each set.

Explanation:

Given two or more sets of features of items, people, events, etc; compare and contrast graphic organizers help you to see what the sets have in common and what difference one set from the others, that is, what characteristics are unique from each set

I really need help with this question, I can’t fail this please :) tysm

I really need help with this question, I cant fail this please :) tysm

Answers

Answer:

i think its the third one, i hope this helps

Explanation:

Using the code below as a template, write a program to sort 3/4 of an array with merge sort in C++.
// C++ program for Merge Sort
#include
using namespace std;
// Merges two subarrays of array[].
// First subarray is arr[begin..mid]
// Second subarray is arr[mid+1..end]
void merge(int array[], int const left, int const mid, int const right)
{
auto const subArrayOne = mid - left + 1;
auto const subArrayTwo = right - mid;
// Create temp arrays
auto *leftArray = new int[subArrayOne],
*rightArray = new int[subArrayTwo];
// Copy data to temp arrays leftArray[] and rightArray[]
for (auto i = 0; i < subArrayOne; i++)
leftArray[i] = array[left + i];
for (auto j = 0; j < subArrayTwo; j++)
rightArray[j] = array[mid + 1 + j];

Answers

The provided code is a partial implementation of the mergesort algorithm in C++. It includes the merge function, which merges two subarrays of an array. However, it lacks the actual sorting logic. To sort 3/4 of an array using merge sort, you can modify the existing code by adding a recursive merge sort function and calling it with the appropriate indices. Here's the modified code:

#include <iostream>

using namespace std;

void merge(int array[], int const left, int const mid, int const right)

{

   auto const subArrayOne = mid - left + 1;

   auto const subArrayTwo = right - mid;

   auto *leftArray = new int[subArrayOne];

   auto *rightArray = new int[subArrayTwo];

   

   for (auto i = 0; i < subArrayOne; i++)

       leftArray[i] = array[left + i];

   for (auto j = 0; j < subArrayTwo; j++)

       rightArray[j] = array[mid + 1 + j];

   

   // Merge the temporary arrays back into array[left..right]

   auto indexOfSubArrayOne = 0, indexOfSubArrayTwo = 0;

   int indexOfMergedArray = left;

   

   while (indexOfSubArrayOne < subArrayOne && indexOfSubArrayTwo < subArrayTwo) {

       if (leftArray[indexOfSubArrayOne] <= rightArray[indexOfSubArrayTwo]) {

           array[indexOfMergedArray] = leftArray[indexOfSubArrayOne];

           indexOfSubArrayOne++;

       }

       else {

           array[indexOfMergedArray] = rightArray[indexOfSubArrayTwo];

           indexOfSubArrayTwo++;

       }

       indexOfMergedArray++;

   }

   

   // Copy the remaining elements of leftArray[], if any

   while (indexOfSubArrayOne < subArrayOne) {

       array[indexOfMergedArray] = leftArray[indexOfSubArrayOne];

       indexOfSubArrayOne++;

       indexOfMergedArray++;

   }

   

   // Copy the remaining elements of rightArray[], if any

   while (indexOfSubArrayTwo < subArrayTwo) {

       array[indexOfMergedArray] = rightArray[indexOfSubArrayTwo];

       indexOfSubArrayTwo++;

       indexOfMergedArray++;

   }

   

   delete[] leftArray;

   delete[] rightArray;

}

void mergeSort(int array[], int const begin, int const end)

{

   if (begin >= end)

       return;

   

   int mid = begin + (end - begin) / 2;

   

   // Sort the first half

   mergeSort(array, begin, mid);

   

   // Sort the second half

   mergeSort(array, mid + 1, end);

   

   // Merge the sorted halves

   merge(array, begin, mid, end);

}

int main()

{

   int array[] = {5, 2, 8, 12, 3, 7, 1, 10};

   int n = sizeof(array) / sizeof(array[0]);

   

   // Sort 3/4 of the array

   mergeSort(array, 0, (3 * n) / 4 - 1);

   

   // Print the sorted array

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

       cout << array[i] << " ";

   

   return 0;

}

In the main function, you can see that we pass (3 * n) / 4 - 1 as the end parameter to mergeSort, indicating that we want to sort 3/4 of the array. The remaining 1/4 of the array remains untouched.

After sorting, the program prints the sorted array.

LEARN MORE ABOUT mergesort algorithm here: brainly.com/question/31965302

#SPJ11

Jean has created a database to track all of this month’s family meals. To find the entry for lasagna, what should Jean do?

A) edit the data

B) filter the data

C) query the data

D) sort the data

Answers

To find the entry for lasagna, Jean should query the data. Querying the data involves searching for specific records based on a set of criteria.

For example, Jean could query the database to find all meals that include lasagna.

Querying a database is a powerful way to find information quickly and accurately. To query a database for lasagna, Jean could use any of the following methods:

String matching: Jean could use a string matching algorithm to find entries that contain the word "lasagna" in their title, description, or any other field.Full-text search: Jean could use a full-text search engine to scan the entire database for entries that contain the word "lasagna" anywhere in the record.Structured queries: Jean could use a SQL query to find entries that match certain criteria, such as the type of meal, the ingredients contained in the lasagna, or any other criteria Jean chooses.

Using any of these methods, Jean can quickly and accurately find the entry for lasagna in her database.

Learn more about database

https://brainly.com/question/518894

#SPJ4

Internal combustion engines use hot expanding gasses to produce the engine's power. Technician A says that some engines use spark to ignite the gasses. Technician B says some engines use compression to ignite the gasses. Who is correct?

Answers

Answer:

Explanation:

Both are right.

Engines are divided into:

1) Internal combustion engines

2) Diesels

What are the steps to debugging?

Answers

Answer:

The basic steps in debugging are:

Recognize that a bug exists.

Isolate the source of the bug.

Identify the cause of the bug.

Determine a fix for the bug.

Apply the fix and test it.

the thin vs thick client distinction in personal computing hardware involves: group of answer choices physical thickness of the device level of processing size of the disk drives size of the screen

Answers

The primary distinction between the two is that the thin client processes applications using a distant computer. While the thick client runs the programme locally, it handles all of the application processing on its own.

Thin and thick clients: what are they?

Thick clients process information using their own hardware and software, whereas thin clients solely use the software of the primary server for data processing, giving the system the necessary graphical user interface to allow a user to operate.

What distinguishes a thin client from a personal computer?

Computers have a local hard drive that houses programmes and data files. In contrast, thin clients don't have a local hard drive. Instead, these gadgets make use of servers to access programmes.

To know more about applications visit:-

https://brainly.com/question/28650148

#SPJ4

Please answer quick:))))

Please answer quick:))))

Answers

I think B and the second one C

resolution for a printer is a measure of the clarity T/F

Answers

The resolution for a printer is a measure of the clarity. This is very True.

What is Resolution?

Resolution is a measure of the clarity and detail in which a printer can reproduce an image or text. It is typically measured in dots per inch (DPI) and refers to the number of dots that can be printed within a one-inch area.

A higher resolution means more dots per inch, resulting in sharper and more detailed output. The resolution of a printer determines how well it can capture fine lines, intricate details, and smooth gradients.

So, a higher resolution printer will generally produce clearer and more precise prints compared to a printer with a lower resolution.

Read more about printers here:

https://brainly.com/question/31051187

#SPJ4

Write an algorithm (flowchart or pseudocode) which accepts the amount of water (in gallon) used by a household and calculates the water bill for the month. The first 10 gallon of water is free of charge, while the subsequent gallons are priced at 10 rupees per gallon. An additional charge of RS 500 will be added to the bill for water usage of more than 100 gallons.

Answers

The algorithm which accepts the amount of water will be:

water_amount = 0

water_bill = 0

water_amount = PROMPT 'Enter water amount: '

if water_amount >= 100:

water_bill = 50 + (water_amount - 10)

elif water_amount >= 10:

water_bill = (water_amount - 10)

OUTPUT 'Water Bill:'+ water_bill

What is an algorithm?

An algorithm (a sequence of activities) is followed by a computer program, which can be described using pseudocode (code-like English language sentences) or a flowchart (labelled symbols connected to show the flow of action). Programmers utilize pseudocode and flowcharts to plan and describe their proposed program.

Algorithms are the pseudocode of a program. Flowcharts are visual representations of reasoning. It is simple to demonstrate branching and looping in algorithms. Branching and looping are difficult to represent in flowcharts. Both flowcharts and pseudocode are used before writing code, although pseudocode is linear and flowcharts are not. A flowchart is also graphical, whereas pseudocode is technical.

Learn more about algorithm on:

https://brainly.com/question/24953880

#SPJ1

how do I write a python function that takes a list and returns a new list with unique elements from the first list?

Answers

Answer:

Explanation:

The following Python program is a function that takes in a list as a parameter. It then uses the built-in dict class in Python to turn the input list into a dictionary and we call the fromkeys() method to remove all duplicate values. Then we turn the dictionary back into a list and save it into the variable called uniqueList. Finally, we return uniqueList back to the user. A test case has been created and the output can be seen in the attached image below.

def removeDuplicates(inputList):

   uniqueList = list(dict.fromkeys(inputList))

   return uniqueList

how do I write a python function that takes a list and returns a new list with unique elements from the

most common method of connecting computers in a local area network

Answers

The most common method of connecting computers in a local area network (LAN) is through Ethernet.

Ethernet is a widely used networking technology for connecting computers and devices within a local area network. It provides a means for data transmission and communication between devices using standardized protocols and hardware.

Ethernet networks typically use twisted-pair copper cables or fiber optic cables to establish physical connections between devices. These cables are connected to network switches or hubs, which act as central points for data distribution within the LAN.

Ethernet networks utilize the Ethernet protocol, which specifies rules and standards for data transmission, addressing, and network management. The most commonly used Ethernet protocol is the IEEE 802.3 standard, which defines various data transfer rates, such as 10 Mbps (Ethernet), 100 Mbps (Fast Ethernet), 1 Gbps (Gigabit Ethernet), and higher.

Ethernet networks support multiple devices connected to the network simultaneously, allowing for efficient data sharing, resource sharing, and communication among connected devices. It is a reliable and cost-effective solution for creating local area networks in homes, offices, schools, and other environments.

With the widespread adoption of Ethernet technology, it has become the de facto standard for LAN connectivity. It offers high-speed data transfer, scalability, and compatibility with various devices and operating systems. Ethernet also provides the foundation for other networking technologies, such as Wi-Fi (wireless LAN), which extends the LAN connectivity without the need for physical cables.

The most common method of connecting computers in a local area network (LAN) is through Ethernet. Ethernet networks use standardized protocols and physical connections, such as twisted-pair copper cables or fiber optic cables, to enable reliable and high-speed data transmission between devices. Ethernet has become the industry standard for LAN connectivity due to its widespread adoption, compatibility, and scalability.

To know more about local area network (LAN), visit

https://brainly.com/question/24260900

#SPJ11

What is output by the code below?


print("Comp Sci")

print("Rocks")

Answers

Answer:

If this is python the output will be:

Comp Sci

Rocks

Explanation:

When you print something it will output that line. However, when you print something in python it automatically skips a line. For instance you told print Comp Sci. And then you asked python to print Rocks. Python will output those two things on two separate lines. Thus proving the answer is:

Comp Sci

Rocks

hope this helps!

Which two factors do ergonomic principles consider a part of a job?

Answers

Answer:

mental stress, social stress, physical stress

travelling factors, relationship factors, environmental factors

Explanation:

Ergonomic principles consider a part of a job? =

mental stress, social stress, physical stress

travelling factors, relationship factors, environmental factors

a. Mohit has bought a new laptop. The laptop is not working as no software is installed in
Which software should be installed first to make his laptop start working?​

Answers

The windows software should be installed first to make his laptop start working.

What is the Microsoft Windows?

This is known to be the Operating system and it is one that  is said to be made up  of a group of a lot of proprietary graphical operating system families made and marketed by Microsoft.

Note that the windows comes in different version such as:

Windows 11windows 10windows 8windows 7, etc.

Therefore, for your laptop to start, it need to have one of the windows written above.

The windows software should be installed first to make his laptop start working. and by installing the windows be it windows 10, 8, 7, etc., it will start working.

Learn more about software from

https://brainly.com/question/1538272

#SPJ1

Cry walker invested $7200 in the business .(use the make deposits window and check no 5555) quickbooks

Answers

To record Cry Walker's investment of $7200 in the business using QuickBooks, go to the "Make Deposits" window and enter check number 5555.

Open QuickBooks and navigate to the "Banking" menu.

Select "Make Deposits" to open the "Make Deposits" window.

Enter the relevant bank account where Cry Walker's investment will be deposited.

In the "Received From" field, enter Cry Walker's name or the name of the account representing the investment.

In the "From Account" column, select the appropriate equity account to record the investment.

Enter the amount of $7200 in the "Amount" field.

In the "Check #" field, input 5555 to designate the check number associated with this transaction.

Click "Save & Close" to record the investment in QuickBooks.

By following the steps outlined above in the QuickBooks "Make Deposits" window and entering check number 5555, Cry Walker's investment of $7200 can be accurately recorded in the system, ensuring proper tracking of the financial transactions related to the business.

Learn more about QuickBooks here:

brainly.com/question/27983902

#SPJ11

Types of technology include:

A Specialized machinery

B Medical equipment

C Electronics

D All of those are correct

Pick one please

Answers

All of those are correct
Hopes this helps

Select the correct answer.
On what aspect are films categorized as genres?
OA.
actors
OB.
theme
O C.
audience ratings
OD
historical periods

Answers

i think its B) Theme

When did computer networking go beyond the walls of the firm?

Answers

Answer:

All kinds of computing devices such as tablets, PCs, or laptops feature a brain-like unit called the central processing unit or CPU. Your computer's CPU calculates and interprets instructions while you're surfing the web, creating documents, playing games, or running software programs.

Explanation:

you plan to deploy the following azure web apps: webapp1, that uses the .net 6 runtime stack webapp2, that uses the asp.net v4.8 runtime stack webapp3, that uses the java 17 runtime stack webapp4, that uses the php 8.0 runtime stack you need to create the app service plans for the web apps. what is the minimum number of app service plans that should be created?

Answers

Since you need to create the App Service plans for the web apps, the minimum number of App Service plans that must be created is option A-1.

How does Azure webapp work?

Without needing to deploy, set up, and maintain your own Azure VMs, you may create an app in Azure using the platform offered by Azure Web Apps. The ASP.NET, PHP, Node. js, and Python may all be used to create web applications. Additionally, they incorporate well-known coding environments like GitHub and Visual Studio.

Microsoft developed and maintains Azure Web Apps, a platform for hosting websites based on cloud computing. It is a platform as a service that enables the publishing of Web apps using several frameworks and different programming languages, including proprietary ones from Microsoft.

Therefore, You can support up to 10 Web Apps by creating one App Service Plan. Any additional use of the other resources is unnecessary and not specified as a prerequisite.

Learn more about  azure web apps from

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

See full question below

You plan to deploy the following Azure web apps:

WebApp1, which uses the .NET 5 runtime stack

WebApp2, which uses the ASP.NET V4.8 runtime stack

WebApp3, which uses the Java 11 runtime stack

WebApp4, which uses the PHP 8.0 runtime stack

You need to create the App Service plans for the web apps.

What is the minimum number of App Service plans that must be created?

A-1

B-2

C-3

D-4

Manuel wants to participate in a local internship. What is most likely to be TRUE about his experience?

A.
He will be required to quit college so he can participate full-time.

B.
He will receive a lot of money for his work with the company.

C.
He will be graded on his ability to show up on time and complete tasks.

D.
He will be involved in aspects of the experiential learning cycle.

Answers

Answer:

c i think sorry if it's wrong

Explanation:

Identify the reaction type for each generic chemical equation. a b → ab: ab → a b: hydrocarbon o2 → co2 h2o: ab cd → ad cb:

Answers

The type for each generic chemical equation is:

A + B → AB is synthesis.AB → A + B is decomposition.Hydrocarbon + O₂ → CO₂ + H₂O is combustion.AB + CD → AD + CB is double displacement.

A chemical equation refers to the symbolic that perform of a chemical reaction in the form of symbols and chemical formulas. A chemical equation can also be meant by equations that is use to show chemical formula and symbols to show chemical reactions. The reactants in the chemical equation is located in the left hand side. The products in the chemical equations is located in the right-hand side. The example of chemical equation is 2H₂ + O₂ → 2H₂O.

The missing part in the question is shown below:

Identify the reaction type for each generic chemical equation.

1. A + B → AB:

2. AB → A + B:

3. Hydrocarbon + O₂ → CO₂ + H₂O:

4. AB + CD → AD + CB:

Learn more about chemical reaction here https://brainly.com/question/29039149

#SPJ4

9) WAp to display the given series
1 2
1 2 3
1 2 3 4
1 2 3 4 5​

Answers

The program that displays the given series is exemplified below. Also, see the meaning of Java.

What is Java?

Java is a class-based, object-oriented general-purpose programming language.

The programming language is designed so that developers may write code anywhere and run it anywhere, regardless of the underlying computer architecture.

It is also known as write once, run anywhere (WORA)

Sample program:

public class KboatPattern

{

   public static void main(String args[]) {

       for (int i = 1; i <= 5; i++) {

           for (int j = i; j >= 1; j--) {

               System.out.print(j + " ");

           }

           System.out.println();

       }

   }

}

Learn more about Java at;
https://brainly.com/question/26642771
#SPJ1

There are three important components, namely an abductor, a bolt and a coil in a machine. Let , and denote the events that the abductor, bolt and coil fail on a given day, respectively. The events , and are independent and their probabilities of occurring are P()=P()=0.2 and P()=0.3. The machine can continue to function when at most one of the components fail. That is, the machine will fail only when two, or all three, of the components fail.

a)What is the probability that the coil component failed given that the machine failed? That is, compute the conditional probability, P( | machine failed).

(b) What is the probability that the bolt failed on a day that the machine did not fail? That is, compute P( | machine did not fail)

Answers

Let us denote the event of machine failing by M. We are asked to find the probability that the coil component failed given that the machine failed. We need to calculate the conditional probability P(C|M).

Now, for the machine to fail, at least two components should have failed. Therefore, the events of the bolt and the abductor failing given that the machine failed are dependent. We know that the machine will fail only when two, or all three, of the components fail.

We are asked to find the probability that the bolt failed on a day that the machine did not fail. We need to calculate P(B|A') where A' is the event that the machine did not fail. Now, we know that for the machine to fail, at least two components should have failed. Therefore, if the machine did not fail, then either none of the components failed or at most one of the components failed.

To know more about machine visit:-

https://brainly.com/question/32648239

#SPJ11

What type of software allows users to perform general purpose tasks, like web browsing, typing documents, or gaming?

Answers

Answer: System Software

Match the item on the left to the process or technqiue on the right to which it is most closely related.
baseline
traceable
librarian
revision
A.
version control
B.
user stories
C.
chief programmer team
D.
unit test
E.
agile development
F.
refactoring
G.
software configuration management
H.
requirements

Answers

In software development, a baseline is a point-in-time reference that represents the state of a software product or system. It serves as a basis for future comparison, evaluation, and management of changes.

The item "baseline" is most closely related to the process of "software configuration management" as it involves setting a reference point or a standard for the development process. The item "traceable" is most closely related to the technique of "requirements" as it refers to the ability to trace the origin and progress of a particular requirement throughout the development process. The item "librarian" is most closely related to the process of "version control" as it involves managing and organizing software versions and changes. The item "revision" is most closely related to the technique of "refactoring" as it involves making changes to the code or design to improve its quality without changing its functionality. Overall, these items are related to various processes and techniques used in software development, including agile development, unit testing, and user stories, but they have the strongest association with the ones listed above.

To know more about baseline visit:

https://brainly.com/question/30193816

#SPJ11

Type the correct answer in the box. Spell all words correctly.
How can aspiring illustrators hone their skills?
Aspiring illustrators can hone their talent and skills using _____________ software.
Help asap
100 POINTS

Answers

Answer:

Aspiring illustrators can hone their talent and skills using Adobe Illustrator software.

Explanation:

By using this software we enroll graphics for out Television.Computer etc ..

what did Ada lovelace do

Answers

Answer: Ada Lovelace is often considered to be the first computer programmer!

Explanation: Most wealthy women of the 1800s did not study math and science. Ada Lovelace excelled at them—and became what some say is the world's first computer programmer. Born in England on December 10, 1815, Ada was the daughter of the famous poet Lord George Byron and his wife, Lady Anne Byron.

Most presentations use text: A. To draw attention to content
B. At a minimum
C. Without restraint
D. To maximize area and style

Answers

i think it’s c hope this helps
Other Questions
what is the circumference? The primary benefit of taking into account a child's interests while selecting exercise activities is that the child will __________ In cellular respiration the energy starts as ____________ energy and ends up as ______________ energy. Give the side effects of early pregnancy and explain them. Exhausted from hidingthe me of meWhat type of figurative language is this? If you were to use dollars to purchase an European call option on the yen with an exercise price of $.015/yen, what would be your rights/obligations? Have the option to buy yen for $.015 on or before the expiration date of the call option Have the option to sell yen for $.015 on or before the expiration date of the call option Have the obligation to buy yen for $.015 on or before the expiration date of the call option Have the option to buy yen for $.015 only at the expiration date of the call option. **Will give brainiest Luiza is a 17-year-oldmom. Her husband worksin the village, and shestays home with the newbaby and her three otherchildren. Manychildren inthe village have recently died from malaria. Which stage of the Demographic Transition Model do you think the person is living in and why? what is the partial-fraction expansion of the rational function f(s)=6s3 120s2 806s 1884(s2 10s 29)2 ? Compare and contrast the elements of formal and Informal writing. Give an example of when you would use each style Which option below is a different way of writing -5-(-7)? Sean earns $300 in a regular work week. A regular work week for Sean consists of 5 work days with 8 hours a day. How much money does Sean earn each hour? $7.50 per hour $8.00 per hour $9.00 per hour $8.57 per hour which tonsils are found in the posterior wall of the nasopharynx? The government places health-risk warnings on cigarette and liquor packages. these warnings serve as a(n):________ pls help having trouble! Write an Introduction and Theoretical Framework on CHS Group - a company offer customised transportation.The compay link: https://chs.fi/en/ True or False. Enter your course by clicking on the course name in your Course List that appears in the WTCC Blackboard Home page. please help ill give brainliest Design a spreadsheet to compute the dollar amount in each of the next 10 years of an initial investment returning a constant annual interest rate. Interest is reinvested each year so that the amount returning interest grows.What is the dollar amount 8 years from now of $500 invested at 7% annual interest? Please round your answer to the nearest cent. carlos has a box of coins that he uses when playing poker with friends.the box currently contains 45 coins, consisting of pennies , dimes, and quarters.The number of pennies is equal to the number of dimes, and the total value is $3.84. How many of each denomination does he can?