Answer:
See Explanation Below
Explanation:
The new code segment is
int feb = 28;
if ((year % 4) == 0 && (year % 100) != 0) // assume that year is an integer with a valid year value
{
System.out.println("This is a leap year");
feb = 29;
}
Assume year = 2020, the assigned value of feb is 29;
Reason below;
At line 2 of the new code segment, two conditions are tested both of which must be satisfied.
1. year % 4 == 0
2020 % 4 = 0
0 = 0 (True)
2. year % 100 != 0
2020 % 100 != 0
20 != 0 (True)
Since both conditions are true, the value assigned to feb will be 29 and
"This is a leap year" will be printed without the quotes
8 smaller units, called bits :)
XLS would be it, avi contains like sounds and stuff
Answer:
b) About 100 words or 3-4 fines in the transcription tool.
Explanation:
Transcription tools are the software that helps in converting the audio or speeches into texts. Traditionally, the process of transcription was done manually. With teh advancement of technologies and software, transcription software is developed. They help in transcribing the audios and videos into texts. These are useful in many sectors of business, medical, and legal areas.
One of the rules of transcription involves the division of long speeches into paragraphs. It is advised to divide the paragraph into about 100 words or 3-4 lines.
Answer:
<u>"Jargon"</u>
Explanation:
Great question, it is always good to ask away and get rid of any doubts that you may be having.
<em>Specialized vocabulary</em> is sometimes also known as <u>"Jargon"</u> . These are sets of words that are used specifically and uniquely for specific sets of groups or organizations.
For example Lawyers Judges and other law enforcement officials have their own Specialized vocabulary that are better understood by other people in Law enforcement, people that are not part of Law Enforcement might have a hard time understanding.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.