Click Insert
click Picture
click From File
select the desired picture and again click insert
right-click the picture
click Insert Caption
write the caption and add it
Answer:
Option B, =CONCATENATE(A3," ",B3)
Explanation:
CONCATENATE function is used to join two or more strings together. The syntax for CONCATENATE function in Microsoft Excel is:
CONCATENATE( text1, [ text2, ... text_n ] )
Where, ext1, text2, ... text_n represents the strings that are to be joined together.
CONCATENATE(A2," ",B2)
The above syntax is used when space is to be entered between two string values
Hence, option B is correct
Answer:
The correct option is 4th option.
Explanation:
The second-chance algorithm is the same as the FIFO algorithm if all pages in memory have been referenced at least once since the last page fault.
In the second-chance algorithm, the page is assigned a reference bit whenever it's visited. therefore the page recently visited isn't swapped out
It works like FIFO. But rather than directly removing the page this algorithm checks for the reference bit. If the reference bit is about the page isn't removed otherwise it's swapped out.
Answer:
The answer to this question is "C++ functions can't return array type value".
Explanation:
In C++ language the method is a collection of declarations executing a process together. It is a statement, that tells the compiler to return and accept parameters of a function. In C++, it includes many standardized functions, which can be called by the software, and other choices were wrong, which can be described as follows:
- In c++ function can't return array type always.
- function is not address based.
- If array is local to function, but function will not return array value.