Answer:
False
Explanation:
vector is like a dynamic array that has a special ability to resize automatically when it required.
vector has several functions:
like, insert() to insert the element in the vector.
delete() for delete the one element at a time.
empty() is also the function used in the vector. It is used for checking the vector is empty or not.
it gives the Boolean value (TRUE or FALSE), if the vector is empty it gives the output TRUE if the vector is not empty it gives the output FALSE.
It is not used for empty or deletes all elements of the vector.
Therefore, the answer is False.
Answer:
Translation : Distributed Databases
Explanation:
Explanation:
A class encapsulates methods, while a struct cannot.
It was invented by Osborne<span> Computers</span>
Answer:
To illustrate addition operation
Explanation:
Given
The above code segment
Required
Determine the purpose of "+" in label line 2
In line 2, num1 = 3 and num2 = 2 in line 3.
sum = 2 + 3 = 5 in line 4
From the given code segment, the plus sign is used as a string literal (i.e. "+").
This means that, the print statement will output: <em>3 + 2 = 5</em>
The "+" is printed in between 3 and 2.
So, the purpose of the "+" is to show the function of the program and the function of the program is to illustrate an addition operation between two variables