Hello!
I assume you mean 3 facts about computer/technology based things.
Fact: Certain computers are built for video games, where others are not.
Opinion: All computers suck when trying to use video games.
Fact: Not all computers are made for multiple purposes.
Opinion: All good computers are made by apple.
Fact: You can plug in certain things such as keyboards or a mouse, but not all computers have this.
Opinion: Only good computers have built in keyboards and a mouse.
Answer:
Appreneurs
Explanation:
An appreneur is an entrepreneur who works in the mobile device application industry and basically develop applications for the need of its own business.
Answer:
the last one
Explanation:
the domain specifies exactly what file is requested the path specifies where the browsers request should be sent
I looked up the answer; I believe the answer is true.
Answer:
Class are the collection of variable and member function.
Class are the blueprint of an object.
Explanation:
Following are the points regarding class in c++
1.In C++ class is an user defined datatype..
2.Classes are the collection of variable and function in c++.
3.To access the property of class we can create object of that class
4.We can use following syntax to declared any class in c++
class classname
{
accessmodifier:
//statement and function
};
main()
{
classname objectname;
}
implementation of class in c++
#include<iostream>
class test // class declaration
{
public: // access modifier
void fun3() // Method definition
{
cout<<" hello :";
}
};
void main() // main function
{
test ob;// creating object
ob.fun3(); // calling function
}
In this program we declared a class "test " in class test. We giving public access modifier .The public access modifier define that variable and function are accessible outside the class and in main method we create the object ob which call the function fun3().
Output:hello :