Answer:
public class Pyramid {
public static void main(String[] args) {
int h = 7;
System.out.println("Pattern A");
for(int i = 1; i <= h; ++i)
{
for(int j = 1; j <= i; ++j) {
System.out.print("+");
}
System.out.println();
}
System.out.println();
System.out.println("Pattern B");
for (int i = 1; i<=h; ++i)
{
for(int j = h; j >=i; --j){
System.out.print("+");
}
System.out.println();
}
}
}
Explanation:
- The trick in this code is using a nested for loop
- The outer for loop runs from i = 0 to the heigth of the triangle (in this case 7)
- The inner for loop which prints the (+) sign runs from j = 0 to j<=i
- It prints the + using the print() function and not println()
- In the pattern B the loop is reversed to start from i = height
Answer:
The correct answer to the following question will be "JAWS".
Explanation:
- JAWS is a strong accessibility tool, which uses synthesized speech to look for information on your monitor and provides several helpful commands to make it much easier using applications, edit documentation and read pages of the web.
- It's a Microsoft Windows screen reader tool that helps visually and blind impaired people to decode the screen either via a message-to-speech interpretation or with a castable sign language display.
- JAWS is manufactured by Freedom Scientific Blind and Group of Low Vision.
Therefore, JAWS is the right answer.
Answer:
The Last option: Dyadic Communication AND Interpersonal Communication
is the correct one.
Explanation:
Communication can be defined as the process in which one may convey his thoughts or inquires about things.
There are many types of communications as listed above.
- Intrapersonal Communication
- Interpersonal Communication
- Dyadic Communication
- Small Group Communication
- Public Communication
- Mass Communication
- Organizational Communication
- Intercultural Communication.
Under all these, Interpersonal communication and Dyadic communication are the ones that are between two people.
Dyadic communication is the one in which two people relate to exchange thoughts and ideas face-to-face. It is sometimes referred as dialogic relation.
Interpersonal relation can be between two or more than two persons that may know each other. It is clearly specified in this communication that who listener and speaker are.
<h3>I hope it will help you!</h3>