Answer:
electric potential = 22.36 volt
Explanation:
given data
charge Q = 11.748 nC
distance d = 5 - 2 = 3 m
length = 2 + 2 = 4 m
Coulomb constant = 8.98755 × 109 N·m²/C ²
solution
electric potential is express as
electric potential =
..............1
electric potential =
put here value
electric potential =
electric potential = 22.36 volt
Answer:
90
Explanation:
mean is basically taking the sum of all numbers and then dividing the sum with the number of all given numbers..
here, the mean is 9, total numbers are 10.. so the sum will be 9 multiplied by 10, that is 90.
Examples
Creativity. -let you do out of the box things
Problem Solving-Solve situation
Critical Thinking-Sturdy fast pace thinking
Leadership-The ability to guide others
Communication-The ability to talk to others
Collaboration-Working with some one
Answer:
D. A and B
Explanation:
1. The method Console.Write() is an overloaded method in a language like C#.
One of its variations could be as follows;
<em>Console.Write(String format, Object a, Object b).</em>
This contains three parameters and will write the text representation of the specified objects to the standard output stream using the information specified by the format specifier. Parameter 1 is <em>format</em> which is a composite format string representing the format specifier. Parameter 2 is <em>a</em>, which is the first object to be written using <em>format. </em>Parameter 3 is b, which is the second object to be written using <em>format</em>.
2. The method Console.WriteLine() has the same characteristics as Console.Write() above, except that it writes the text representation of the specified objects, followed by current line terminator then to the standard output stream using the information specified by the format specifier.
3. Console.WriteFormat() does not exist, at least not in C# or .NET
Therefore, Console.Write() and Console.WriteLine() have the capacity to display formatted data.
<em>Hope this helps!</em>