<u>Answer:</u>
<em>Punctuation</em>
<u>Explanation:</u>
The sentence started with <em>the double quotes and it should be closed appropriately.</em> All the single quotes and double quotes are paired punctuation and mostly they do not come alone.
Note that there is a <em>difference between a single quote and apostrophe</em> though same key is used from the keyboard for both. <em>The correct answer is Punctuation.</em>
George W. Bush is the President of the United States of America”. There is one another error in the statement. At present Bush is not the President so the sentence can be <em>George W. Bush was the President of the United States of America.</em>
Answer:
The solution code is written in Java.
- import java.util.Scanner;
- public class Main {
-
- public static void main(String[] args) {
-
- String letters[] = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J"};
- Scanner scnr = new Scanner(System.in);
- int numRows;
- int numColumns;
- int currentRow;
- int currentColumn;
- numRows = scnr.nextInt();
- numColumns = scnr.nextInt();
-
- for(currentRow = 0; currentRow < numRows;currentRow++){
- for(currentColumn =0; currentColumn < numColumns; currentColumn++)
- {
- System.out.print((currentRow + 1) + letters[currentColumn] + " ");
- }
- }
- }
- }
Explanation:
Firstly, we need to create an array to hold a list of letters (Line 6). In this solution, only letters A - J are given for simplicity.
Next, we declare all the variables that we need, numRows, numColumns, currentRow and currentColumn (Line 8 - 11).
Next, we use Scanner object, scnr to prompt user to input integer for <em>numRows </em>and <em>numColumns </em>(Line 12-13).
At last, we use two-layer for loops to traverse through the number of rows and columns and print out the currentRow and currentColumn (Line 15-19). Please note the currentRow is added by 1 as the currentRow started with 0. To print the letter, we use currentColumn as an index to take out the letter from the array.
Answer:
It is memorable.
It utilizes the elements of design.
Explanation:
IMO these 2 will determine a good logo. Since everyone should remember it if they come across it again in the future
Answer: Stealth/Tunneling Virus
Explanation: Stealth or tunneling virus are the virus which are responsible for attacking a computer system which causes the problem in the functioning of the operating system by manipulating files, creating partition etc.
These viruses try to avoid or prevent the anti-virus scans for the detection any sort of virus or error . They act to prevent any malfunction detection by taking charge for the anti-virus operation.
Answer: UPS
Explanation:
The redundancy effort that should be put in place to ensure the data remains available is the Uninterruptible Power Supply(UPS).
Uninterruptible Power Supply (UPS) is necessary in the provision of battery backup power when there's drop or stoppage in the flow of electricity. With regards to the question, it'll ensure that data is not lost at the system level in the event of a blackout.