Answer:
1.ClassName and . operator
2. ClassName and [] operator
Explanation:
There are two ways to get the members of a class first one is by using dot(.) operator.
Example : with assumption that person is a class object and age is the member in it we can use it as:
person.age
Second way is to use [] operator with member as a string in it which is used by the compiler as key to get its value.
Example : person["age"]
Answer:
click on Design tab → select associated shape → adjust color
Explanation:
I think it is that but i'm not positive. I will know in a little bit since I am taking the test right now.
use an anchor tag(<a>This is an anchor tag</a>) and use the href attribute and set it's destination to the section element who's id or class is "sisters".
Example:
<a href="#Sisters">Click Here!</a>
then you can add this somewhere on the document.
<section id="Sisters">Hello World!</section>