Yes,I am very good with auto Cad
Answer:
- #include <iostream>
- using namespace std;
- class myinteger {
-
- private:
- int value;
-
- public:
- myinteger(int x){
- value = x;
- }
-
- int getValue(){
- return value;
- }
-
- };
- int main()
- {
- myinteger obj(4);
- cout<< obj.getValue();
- return 0;
- }
Explanation:
Firstly, we use class keyword to create a class named myinteger (Line 5). Define a private scope data field named value in integer type (Line 7 - 8).
Next, we proceed to define a constructor (Line 11 - 13) and a getter method for value (Line 15 -17) in public scope. The constructor will accept one input x and set it to data field, x. The getter method will return the data field x whenever it is called.
We test our class by creating an object from the class (Line 23) by passing a number of 4 as argument. And when we use the object to call the getValue method, 4 will be printed as output.
1 makes sense for somewhere you haven't been before. 2 could be interesting, but it's a bit superfluous if not required. 3 is the most important and essential. Some teachers don't want presenters to look at the board/read their slides word for word when they present, so it might be a good idea to have note cards instead.
Hope this helps!
This is an easy answer sure in the back of your mind u knew it was b good luck :).
Answer:
The steps to create table, hide boarder and show border around the whole table is given below.
Explanation:
<u>1. Create Table</u>
- Click on insert Tab
- In insert tab, Click on Table
- Select No. of row and columns to create the table
<u>2. Hiding Boarders</u>
- Click on Design Tab
- In table style section Choose the layout that have no boarder
<u>3. Add boarder Around table</u>
- Click on Design Tab
- Select whole table by clicking on Plus sign on the top right corner of table
- Click on arrow of boarders button in Boarders section in design tab
- Select the "outside boarder" option from the list
<em>By following above mentioned steps, jennnine can draw a boarder around the table to distinguish it from rest of the document.</em>