Answer:
<a href="enter_site_url_here">Click here to visit site!</a>
Explanation:
href is the link that the element is going to point towards. Meaning it's going to direct the end-user to that site. "Click here to visit site!" is the text that the element is going to say, and that text will have an underline. So it's best to keep it short as you don't want <u>something like this happening on your site</u>.
I'd stick with the classic "here" as the text and have the text before-hand say "Click" and after-hand say " to visit site X" with X being the site name. Or, something along those lines.
Sure, but I won't unmute or turn on camara. What's the code?
Answer:
result 1 = false;
result 2 = true;
Explanation:
result 1 = (43 < -77 && 1! = 10)
43 < -77 = false
1 != 10 = true
for any false && true logical operator, it returns false
result 1 = false;
false = 90 < -77 || -1 < 43
90 < -77 = false
-1 < 43 = true
for any false || true logical operator, it returns true
result 2 = true;
Answer:
There's no clearly defined answer. Just follow the code I've written. I'm not fluent in C++, much more of JS or C#, but just follow this, hopefully you understand and you do your own homework next time.
Explanation:
int x, y; //defines variables
char name;
cout << "Type a number: ";
cin >> x;
cout << "Type another number: ";
cin >> y;
cout<< "Whats your name?";
cin>>name;
If(x>y){
cout<<name;
}else{
cout<<"Exit";
}