Answer:
Image tag or <img> tag
Explanation:
HTML refers to Hypertext Markup language. In this, we can be designed our documents by applying the font, color, image i.e to presented in the web browser. It is used for creating the webpages
Since in the question, Ted has approx 20 pictures for the post having caption and wants to display the picture so he needs to use the image tag or <img> for displaying the pictures. This tag is used for linking the images for the web pages you have created
Answer:
Algorithm
1.Start.
2.Using an input function, ask the user to input the name and store the Entered Value in string variable.
3.Print value stored in String Variable.
4.End.
Flow chart:
I am not able to open the pdf kindly send the jpg form.
What class Is this 4 ? I think we have some thing similar
Answer:
Using Merge Sort.
Explanation:
Merge Sort is preferred for sorting the linked list because the the data stored in linked list is not in serial memory address which makes the quick sort algorithm very slow and other sorting algorithms impossible.
Merge Sort is a divide and conquer algorithm.
In this algorithms we divide the linked list into sub parts and sort the sub parts of the linked list and then we merge them in sorted order. It is a very effective approach for linked list sorting.
The time complexity of merge sort is O(NLogN).