Answer:
Like ordinary random access memory (RAM), it can be repeatedly read, written to, and erased. Intended mostly for removable computer storage, DVD-RAM provides the capabilities of Rewriteable CD (CD-RW) - users can run programs from the discs, copy files to them and rewrite or delete them.
To delete only the selected contents of the table, but not the table itself, you need to click on this cell in the table.
Answer:
Slide Master is the slide at which you made any change, the change will reflect on all slides.
Explanation:
In power point, slide master is the toll that is used to control change the font size, font style , themes, colors and background of the slide. With the help of this tool, we just change one slide, then the change will reflect on the slides of a presentation.
<u>How to Use </u>
1. Go to view Tab
2. Click on slide master
3. A new slide is opened that is used as master slide
4. Apply the changes on master slide.
5. The changes will reflect on all slides.
#include <iostream>
using namespace std;
int main() {
const int SCORES_SIZE = 4;
int oldScores[SCORES_SIZE];
int newScores[SCORES_SIZE];
int i = 0;
oldScores[0] = 10;
oldScores[1] = 20;
oldScores[2] = 30;
oldScores[3] = 40;
/* Your solution goes here */
for (i = 0; i < SCORES_SIZE; ++i) {
cout << newScores[i] <<" ";
}
cout << endl;
return 0;
}
Answer:
D. Digital signatures
Explanation:
Of the given terms, Digital signatures is the best associated with public key infrastructure(PKI). This is because digital signature facilitate signing a document electronically by using one's private key. This signed document can then be verified by a recipient using the person's publicly available public key. If the verification is successful then it can be established that the document was indeed signed by the concerned person.