Which of the following will help sober up and lower the BAL of an intoxicated person? Exercise Black coffee Time A cold shower
Answer:
Time
Explanation: time gives the liver the chance to do its job and metabolize the alcohol. Although...exercise can help wake up the body and make a person more alert. It may also help metabolize alcohol more quickly, although the scientific evidence of this is inconclusive.
Given half a chance, other people at work will take advantage of you.
Answer:
T
Explanation:
True
What type of damage is reduced by installing impact resistant glass functional shutters and double door top and bottom latches
Answer: you are reducing bullet damage or the damage of a person getting shattered glass all over them
Explanation: i dont
have one
Which option identifies the technology that controlled flooding in the following scenario? The Nile River in Egypt floods its banks from melting snow and heavy rains every year. Since 1970, flood control has been managed by the Aswan High Dam. terps locks polders sluice gates HELP PLEASE
Answer:
The correct option is;
Since 1970, flood control has been managed by the Aswan High Dam
Explanation:
The scenario that identifies the technology that controlled flooding is the flood control that is being managed by the Aswan High Dam
Dams alongside their reservoirs are meant control the flow water and to protect low-lying areas from disastrous floods. Damming a water way involves the construction of a standardized dam complementary standard water reservoir with the water within it being kept below a certain level to allow it accommodate water coming from floods.
Terps are artificial mounds meant for dwelling
Polders are water body reclaimed low-lying land by the construction of drainage canals and d y k e s
Sluice gates are meant to harness the power of flowing waters.
The CountLetters application is limited to counting letters in a single word. Modify the CountLetters application to count the letters in an entire phrase, which contains spaces. Care must be taken to ignore the spaces and any other non alphabetic character found in the phrase. Be sure to change comments and variable names appropriately so that the reader of the application code understands that the letters in a phrase are counted.
import java.util.Scanner;
public class CountLetters {
public static void main(String[] args) {
final int LOW = 'A'; //smallest possible value
final int HIGH = 'Z'; //highest possible value
int[] letterCounts = new int[HIGH - LOW + 1];
Scanner input = new Scanner(System.in);
String phrase;
char[] wordLetters;
int offset; //array index
/* prompt user for a phrase */
System.out.print("Enter a phrase: ");
phrase = input.nextLine();
input.close();
/* convert word to char array and count letter occurrences */
phrase = phrase.toUpperCase();
wordLetters = phrase.toCharArray();
for (int letter = 0; letter < wordLetters.length; letter++) {
offset = wordLetters[letter] - LOW;
letterCounts[offset] += 1;
}
/* show letter occurrences */
for (int i = LOW; i <= HIGH; i++) {
System.out.println((char)i + ": " + letterCounts[i - LOW]);
}
}
}
1. If the correct precautions are not taken, working on automobiles can be