Answer:
Lol who is bothering you?
Explanation:
Answer:
Memory (RAM) is lost when computer is turned off.
The rules and guidelines for appropriate computer mediated communication are called Netiquette.
<h3>What is Netiquette?</h3>
Netiquette, which is a blend of “net” and “etiquette,” refers to the polite and appropriate behavior when communicating with others online.
These rules are important as they help to improve communication skills, prevent misconceptions, and encourage only socially acceptable behavior when working or collaborating online.
Some of the DOs of Netiquette among others includes:
- Being mindful of your tone
- Use of emoticons
- Use of good grammar
Some of the DONTs among others includes:
- Overuse of abbreviations
- Unnecessary rants/Flaming
- Overusing caps
In conclusion Netiquette involves not doing what you would not do in person.
Learn more about Netiquette here:brainly.com/question/998689
What is the value of vals[4][1]? double[][] vals = {{1.1, 1.3, 1.5}, {3.1, 3.3, 3.5}, {5.1, 5.3, 5.5}, {7.1, 7.3, 7.5}};
neonofarm [45]
Answer:
When the user concludes the value of "vals[4][1]", then it will give an exception of "ArrayIndexOutOfBoundsException".
Explanation:
- It is because the size of the above array is [4*3] which takes the starting index at [0][0] and ending index at [3][2]. It is because the array index value starts from 0 and ends in (s-1).
- When the double dimension array size is [5][5], then it will conclude the value of [4][1].
- The above array have following index which value can be calculated :-- [0][0],[0][1],[0][2],[1][0], [1][1],[1][2], [2][0], [2][1], [2][2],[3][0],[3][1] and [3][2].