Answer:
- import java.util.Arrays;
- public class Main {
- 
-     public static void main(String[] args) {
-         String [] first = {"David", "Mike", "Katie", "Lucy"};
-         String [] middle = {"A", "B", "C", "D"};
-         String [] names = makeNames(first, middle);
- 
-         System.out.println(Arrays.toString(names));
-     }
- 
-     public static String [] makeNames(String [] array1, String [] array2){
- 
-            if(array1.length == 0){
-                return array1;
-            }
- 
-            if(array2.length == 0){
-                return array2;
-            }
- 
-            String [] newNames = new String[array1.length];
- 
-            for(int i=0; i < array1.length; i++){
-                newNames[i] = array1[i] + " " + array2[i];
-            }
- 
-            return newNames;
-     }
- }
Explanation:
The solution code is written in Java. 
Firstly, create the makeNames method by following the method signature as required by the question (Line 12). Check if any one the input string array is with size 0, return the another string array (Line 14 - 20). Else, create a string array, newNames (Line 22). Use a for loop to repeatedly concatenate the string from array1 with a single space " " and followed with the string from array2 and set it as item of the newNames array (Line 24-26). Lastly, return the newNames array (Line 28).
In the main program create two string array, first and middle, and pass the two arrays to the makeNames methods as arguments (Line 5-6). The returned array is assigned to names array (Line 7). Display the names array to terminal (Line 9) and we shall get the sample output: [David A, Mike B, Katie C, Lucy D]
 
        
             
        
        
        
Answer:
Information output and information storage
Explanation:
Output in the form of images, audio, printed on paper, video, 3D models, etc
Storage - saving information internally on hard drive and externally (HDD, SSD, RAID system, etc
 
        
             
        
        
        
Answer:
How can line formatting be accomplished?
To format line spacing:
Select the text you want to format. Selecting text to format.
On the Home tab, click the Line and Paragraph Spacing command. A drop-down menu will appear.
Move the mouse over the various options. A live preview of the line spacing will appear in the document. Select the line spacing you want to use.
The line spacing will change in the document.
 
        
             
        
        
        
<span>The correct answer is higher for both blank spaces. 
We all know the famous saying: "No risk, no reward". What is true is the higher your risk you also have a higher degree of reaping a higher rewards. But the opposite is also true, the more you risk the more you stand to lose. In stockbroker business this is best exemplified, as you can se brokers trying to predict the stock market in order to make greater profits. Gambling is also the good example of this. </span>
        
                    
             
        
        
        
Answer:
Streaming movies may stop to buffer
Explanation:
microphones have a set record limit, and games downloaded wont generate errors unless something in the code is wrong, printers don't really need to connect to internet to work except for some, and streaming movies buffer because as you are watching them it downloads the next few minutes.