Answer:
Media convergence
Explanation:
Media convergence is the process by which previous technologies that were not related merge to becomes more closely integrated so as to share tasks and resources and also advance concurrently.
For instance, television programs, journals, radio programs, and movies, now are available on the web through smart watches, laptops and smartphones.
Windows paint can be used to open a bitmap file. Usually, when you have a picture, you can use that to edit it.
Also, on a side note, notepad is specifically used for html codes.
Answer: Windows Paint
Answer:
Decoding is the technique used to convert an electrical signal into an understandable message. This process is used in receiver side.
Explanation:
In telecommunication, Decoder is used to to interpret the message sent by transmitter in to an understandable message. This process is called decoding
What computer are you on, To take a screenshot on a chromebook press control shift then the switch screens button
If any other computer use snipping tool. Or look up how to screenshot on (Your computer)
Then click that paperclick and go to the file of the screenshot and click it. Then type in a question and click ask.
Answer:
3) 44 10 44
Explanation:
Given data
int [] val = { 3, 10, 44 };
The total number of parameters of given array are 3, so total length of array is also 3.
The indexing of array starts with '0', Therefore the <u>indexes</u> of array with length zero are: {0,1,2}
The value of array at index 0 is = 3
similarly
value at index 1 = 10
value at index 2 = 44
Any value of index 'i' of an array is selected using array[i].
Therefore,
val[0] is selecting the value of array located at index '0'.
val[0] = 3
val[2] is selecting the value of array located at index '2'.
val[2] = 44
Finally,
val[0] = val[2]; is copying the value placed at index 2 (44) to value placed at index 0 (3). Hence, the output would be { 44 10 44}. So 3rd option is correct.