answersLogoWhite

0

Well i also have a q for u! Are you getting bullied at you public of private school?

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the definition of public relations by Sam Black?

Define and explain public relations as given by Sam Black. Define and explain public relations as given by Sam Black. Define and explain public relations as given by Sam Black. Define and explain public relations as given by Sam Black. Define and explain public relations as given by Sam Black.


Explain why the American public liked President Kennedy?

Explain why the American public liked President Kennedy.


Give an example of constructor and destructor in derived class?

class superclass { public: superclass() {... } // c'tor public: virtual ~superclass() {... } // d'tor }; // superclass class derived: public superclass { public: derived() : superclass() { ... } // derived c'tor public: virtual ~derived() {... } // derived d'tor }; // derived class


How can parents effectively discipline their children in public settings while maintaining respect and dignity?

Parents can effectively discipline their children in public by setting clear expectations beforehand, using positive reinforcement, and addressing misbehavior calmly and privately. It is important to avoid public humiliation and instead focus on teaching and guiding the child with respect and dignity.


A pure virtual function is a virtual function that has?

A pure-virtual function is a function that must be overridden in derived classes. You simply add "=0" to the end of the function declaration. class AbstractClass { public: virtual void DoSomething()=0; // Pure-virtual. };


Explain Significance and scope of public policy?

significant of public policy


What do you mean by public finance?

public fianance is been explain as the managing the moneytary affair about the public.


Why did they invent school instead of kids being homeschooled?

I am pretty sure that it is because some parents may not HAVE education, so they sent their kids to public schools, where teachers HAD education.


What is a network that transfers private information securely over the Internet of other public network?

That is called a VPN - Virtual Private Network. The basic idea is that information is encrypted before it is sent over the public network.That is called a VPN - Virtual Private Network. The basic idea is that information is encrypted before it is sent over the public network.That is called a VPN - Virtual Private Network. The basic idea is that information is encrypted before it is sent over the public network.That is called a VPN - Virtual Private Network. The basic idea is that information is encrypted before it is sent over the public network.


What is a Virtual PBX and what is the function of a Virtual PBX?

A virtual PBX is a phone exchange that serves a specific office or building, as opposed to one that a common carrier or telephone company operates for many businesses or for the general public.


What technology allows a user to securely access a company LAN across a public network?

VPN (Virtual Private Network)


Write abstract class in c plus plus?

An abstract class is any class definition that contains at least one pure-virtual function. class AbstractClass { public: virtual void DoSomething()=0; // Pure-virtual. };