Annihilation : obliteration
if the choices were:
strategy : tactics
sensation : numbness
deliberation : impulsiveness
endeavor : quit
Then the word pair that would best complete the analogy is:
STRATEGY : TACTICS
Annihilation and obliteration are synonymous. In fact, annihilation is defined as complete destruction or complete obliteration. Obliteration is defined as total destruction.
Strategy and tactics are also synonymous. They both mean a system or mode of procedure or a plan of action.
The rest of the choices are antonyms.
Answer:
option 1
Explanation:
href tag:- It gives the url of the destination where the link is forwarded to. It ia clickable portion of text.
name tag:- It defines the name of anchor.
Answer: c because there cant be numbers or simboles also nooooooo spaces
Explanation:
brainlyist plz
Answer:
We can give the any integer value between 10 to 100 then it display the message "That number is acceptable."
Explanation:
In the given code the "number" variable takes an user input via cin .After taking user input it check the condition of if block that the user input is between the range of 10 to 100 .if this condition is true then the statement of if block will be executed i.e That number is acceptable otherwise else block will be executed That number is not acceptable.
following are the code in c++
#include <iostream> // header file
using namespace std;
int main() // main
{
int number; // variable
cin >> number; // taking input
if (number > 10 && number < 100) // if block
cout << "That number is acceptable.";
else
cout << "That number is not acceptable.";
return 0;
}
Output:
66
That number is acceptable.
456
That number is not acceptable.
i dont have enough information to awnser this