Answer: (A) full backup
Explanation: A backup strategy is a term used to describe the various effective approach engaged in creating a backup for data or information.
A FULL BACK UP IS THE VARIOUS APPROACH AND SYSTEMS PUT IN PLACE BY A COMPUTER USER OR AN INFORMATION TECHNOLOGY EXPERT IN ORDER TO CREATE AN ADDITIONAL SAMPLE OR COPY OF AN INFORMATION OR A DATA IN S SINGLE BACKUP.
Answer:
tuple
Explanation:
at first its a dictionary but then it is reassigned to a tuple
don't forget tuples are immutable
Answer:
The code is not dereferencing the pointers. You have to place an asterisk in front of the pointer to read the value the pointer points to.
Explanation:
So "if (str1 != str2)" must be "if (*str1 != *str2)".
likewise:
while (*str1 != 0 && *str2 != 0)
and
result = (*str1 == *str2);
Answer:
Sum = 3
Sum = 9
Sum = 18
Sum = 30
Look at the image for more information.