Answer: 1. .mp3 2. .aiff 3. .wav
Explanation:
I got it right
A program to demonstrate circular linked list with operations using pointers is:
struct Node *addToEmpty(struct Node *last, int data)
{
// This function is only for empty list
if (last != NULL)
return last;
// Creating a node dynamically.
struct Node *temp =
(struct Node*)malloc(sizeof(struct Node));
// Assigning the data.
temp -> data = data;
last = temp;
// Note : list was empty. We link single node
// to itself.
temp -> next = last;
return last;
}
<h3>What is a Circular Linked List?</h3>
This refers to the type of linked list in which the first and the last nodes are also joined together other to form a circle
Read more about circular linked list here:
brainly.com/question/12974434
#SPJ1
Answer:
B) shared workspace
Explanation:
There are various terms which are shown below:
Blogging: Blogging is the site in which the person shares its views and opinions about a certain topic. So that it can spread their knowledge throughout the world
Shared workspace: As the name suggests it is a document that is shared with the team members so that they can track any change made by the other team members so that it avoids the duplicate of files. It also reduced the cost and time.
Instant messaging: It is an online chat in which the receiver and the sender communicate with each other in a real-time
Cross-linking: The cross-linking is the technique which links one site to another with a motive to access another site.
So, according to the given scenario, the most appropriate option is b.
Apply a theme to your presentation
Open your presentation.
On the Design tab, you'll find design themes in the Themes group.
To preview how the current slide would look with a particular theme applied, rest your pointer over the thumbnail image of that theme.
To view more themes, on the Design tab, in the Themes group, click More More button at the right end of the gallery.
To select and apply a theme, click the thumbnail image of that theme.
Unless you specify otherwise, PowerPoint applies the theme you select to the entire presentation.
To apply a theme to only one or a few slides, select the slide or slides, right-click the theme you want, and select Apply to Selected Slides.