Answer:
Use the edit business card dialog box to control the information.
Explanation:
Business card is an easiest way to share contact details with other persons. There are some reasons a person might not want to share entire details of the contact it has with the other person, for this purpose the business card outlook has an option to edit the information of contact before sending it to the other person. Click the contact card and select the relevant contact that needs to be shared, then double click the contact it will display an edit option.
Hello there! The significance of the scientific method is that it ensures accuracy and it ensures that the experiment was done in the right order.
The scientific method is a widely accepted way of revising and rechecking the work of scientists to see if:
1. The answers match up
2. The experiment was performed correctly
3. The results are accurate
Through the scientific method, the probability is very high that things will not go wrong. The significance of this is that if the scientific method is not applied to an experiment, nobody knows the results. If nobody knows the results, there are many possible unintended consequences that could happen. Hope this helps!
<span>Programming languages provide the standards, syntax, statements, and instructions for writing computer software.
</span>It is a vocabulary and set of grammatical rules. These rules are used for instructing a computer<span> or computing device to perform specific tasks and produce a certain output.</span>
Answer:
Is there any options here
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 :