1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Andrews [41]
4 years ago
7

If the derived class does not override a public member function of the base class, you may specify a call to that public member

function by using the name of the function and the appropriate parameter list. True or False?
Computers and Technology
1 answer:
Jlenok [28]4 years ago
5 0

Answer:

The answer to this question is "True".

Explanation:

The term function overriding is a part of the object-oriented programming language. The overriding refers to override the method which is defined in the base class for override the same method we use the inheritance.

In overriding if a derive class(child class) does not allows us to override a function to there base class (parent class).So, we call this method in main method.

For example:

#include <iostream> //header file.

using namespace std;

class base  //define class base.  

{

public:

void display(string s)  //define method display.

{ //method body.

cout<<"hello.."<<s;  //print value.

}

};

class child:public base  //define class child that inherit base class

{

public:

void display(string s)  //override method display.  

{

cout<<"Hii....!"<<s; //print value.

}

};

int main()  //main method.

{

string s="XXX";

child ob;  //create child class object.

ob.display(s);  //call method.

return 0;

}

Output:

Hii....! XXX

That's why the answer to this question is "True".

You might be interested in
Google Analytics can collect behavioral data from which systems?
ankoles [38]

Answer:

E.A,B and C

Explanation:

The behavioral data can be collected from E-commerce platforms,Mobile applications,Online point-of-sales system  by Google Analytics because these platform a person always searches what he is interested in.It describes their behavior.What type of lifestyle the person is living,the persons daily schedules etc.So the answer is option E.

6 0
3 years ago
Which statement about routers is !!!FALSE!!!
monitta

Answer:

b. they are located at the intersections of the network of wires and cables that make up the internet.

Explanation:

Given that Router is a computer networking device that operates by transferring data packets between computer networks, while also ensuring traffic organizing tasks on the Internet.

Hence, Routers put packets in the right order after they arrive at their destination by matching the destination IP address of the packet and one of the addresses in the routing table.

Also, Routers check the address on each packet that arrives and decide which way it should go next​ by ensuring the data packets are summarized for the outgoing interface recorded in the table entry.

Therefore, the correct answer is option B

8 0
3 years ago
One way to describe the note-taking tool eNotes is to call it an<br> Someone help ._.
vagabundo [1.1K]

Answer:

Electronic notebook

5 0
3 years ago
Read 2 more answers
Which commands are on the right-most side of the Title bar? (From Microsoft Word)
jeyben [28]
<h2>Answer:</h2>

Title bar is the top most bar of a window. As obvious from the name, it has the title of the program in use. It has name of the program or more specifically the name of currently open document is written in this horizontal bar.

The option/commands present in the right most o the title bar are as follows:

  • Close
  • Maximize/Resize
  • Minimize

Close command is needed to exit the program/application. A cross icon is used as close command. Maximize/Resize command helps to expand the window to the screen pane as well as allows the user to adjust the screen of application accordingly. Two squares icon is used as a button for this command. Minimize command helps by shutting the app to the task bar so that it can be expanded/maximized later. A dash/line icon is used as a button for this command.

<h2>I hope it will help you!</h2>

6 0
3 years ago
Which of the following are safety guidelines when socializing online?
DochEvi [55]

Answer:

All of them execpt five and three.

Explanation:

It is okay to have social media and receive messages.

3 0
2 years ago
Other questions:
  • Which of the following allowed Temple Grandin to design more humane means of slaughtering cattle? she treated the cattle as inca
    5·2 answers
  • What is the purpose of using SmartArt Graphics and what is one way you can use SmartArt Graphics in your presentation(s)?
    11·1 answer
  • During his last performance review, Franco's boss urged him to set some short-term and long-term sales goals to help him perform
    6·2 answers
  • Methods are used to define an object's behavior. True False
    8·1 answer
  • What is a sequence of graphic illustrations which represent the planned scenes for a video or animation?
    6·2 answers
  • Maria wants to create an image for a Web page. Maria should use _____. help me
    8·2 answers
  • Can i get any information on this website i'd like to know what its for ?
    11·1 answer
  • Can someone help me?
    14·1 answer
  • Tascake Gets Free Brainliest Because he didnt get it<br><br> Tascake Heres Brainliest
    6·2 answers
  • Why accessing information over the internet is so convenient.​
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!