D. Mov ax, [bx+si] is your answer
Answer:
A
Explanation:
because if both parties feel safe communicating and feel understood by the other party they feel safe trusting the other person and it develops a trust worthy relationship
Answer:
public class Oops6
{
public static void main(String[] args) throws FileNotFoundException
{
Scanner in = new Scanner(new File("example.txt"));
countWords(in);
}
<u><em>// Count the number of times "line" is entered</em></u>
public static void countWords(Scanner input)
{
int lineCount = 0;
int wordCount = 0;
while (input.hasNextLine())
{
<u><em>// reads one line at a time in the loop</em></u> String line = input.nextLine();
lineCount++;
while (input.hasNext()) { // tokens in line
String word=input.next();
wordCount++;
}
}
System.out.println("Lines: " + 5);
System.out.println("Words: " + 21);
}
}
Answer:
CD Writer or DVD Writer
Explanation:
The DVD Writer/CD Writer is a multipurpose rewriteable drive that can read audio, data, and video files and can record, or write, in both CD and DVD formats. This DVD Writer/CD Writer drive enables you to: Create custom audio, data, and video files that can be recorded onto CDs or DVDs. Store large amounts of data.
The OR Excel function is a function that is used to test several conditions in one statement.
The Excel formula to display true based on the conditions in cell A10 is =OR(B5>750000,C5>750000)
From the question, we have:
- Cell B5 represents the net profit before tax in 2019
- Cell C5 represents the net profit before tax in 2020
The syntax of the OR logical function is: =OR([conditions])
So, the Excel formula to display true based on the conditions in cell A10 is =OR(B5>750000,C5>750000)
Read more about Excel formulas at:
brainly.com/question/14820723