answersLogoWhite

0

1- Virtual Assistant normally work form or from remote location and provides the services via internet. They offer number of services like communication, bookkeeping, research and many other kind of services.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Are there any reliable virtual assistants that I can hire?

Yes, there are a lot of reliable virtual assistants you can hire. You can find them in freelancing websites such as Upwork, OnlineJobs.ph, and even LinkedIn.


How necessary are virtual assistant jobs in the US?

"Virtual assistant jobs are not necessary in the United States, but virtual assistants are often used as a supplement to assistants who are hired on a full or part time basis in the workplace. They are also generally hired on a very temporary basis."


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. };


Where can I find a live outsourced virtual receptionist?

These workers are more commonly called "Virtual Assistants". You can search this directory: http://www.virtualassistants.com/


Can I buy meeting planner software?

One possible program is "Virtual Assistant Manager" which offers virtual assistants for a monthly fee.


What is virtual function table?

A virtual function table is a table of pointers to functions.


What does virtual assistants job involve?

Virtual assistance job involves services that are provided by phone, fax, e-mail, or even instant message. Virtual assistants perform different tasks such as data entry, article marketing, email responding, and phone reception. Many of the routine tasks can be outsourced, giving you the opportunity to use your time as you like.


What are three functions of a virtual assistant?

Virtual Assistants can manage a variety of functions related to your business or personal needs from responding to email to managing your website. Many virtual assistants specialize in particular areas such as wordpress or bookkeeping. Others are more generalists and can handle basic administrative tasks. Many virtual assistants work with a team that can handle virtually any task you throw at them.


What is the difference between virtual function and function overriding?

Virtual Functions and Pure Virtual Functions are relevant in the context of class inheritance.Unlike Virtual Functions, Pure Virtual Functions do not require a body. This implies that when a base class defining such a function is inherited, the derived class must implement that function. Furthermore, the base class becomes abstract; meaning you cannot create an instance of the base class even if a body is implemented for the function. You are expected to derive from abstract classes; only the derived classes that implement all the inherited Pure Virtual functions can be instantiated.Here are some examples of Virtual and Pure Virtual function signatures:- Virtual Function: E.g. virtual void myFunction();- Pure Virtual Function: E.g. virtual void myFunction() = 0;


Can you have inline virtual functions in a class?

No, inlining is done at compile time whereas virtual functions are resolved at run time(late binding). So, virtual functions can't be inlined. Both properties are orthogonal.Inlining is a mere suggestion the compiler may ignore it if it is declared with virtual function.


Which binding virtual function used?

Virtual functions are dynamically bound at runtime.


How do virtual functions differ from pure virtual functions?

Virtual functions is a function that can be overridden in inheriting class with the same signature (function name, parameters number, parameters types and return type);Pure virtual function is function that does not have implementation and if class has pure virtual function is called abstract. It is not possible to instantiate that class. Some other class must inherit it and define the body for it (implement). In other words class only have function prototype/declaration(signature) and no definition(implementation).