Answer:
Python is an interpreted, high-level and general-purpose programming language.
Explanation:
Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects
We know, Voltage drop = Voltage * Resistor / total resistance
Here, voltage = 75 V
Resistor for cal. = 10 Ohm
Total resistance = 10 + 15 = 25 Ohm
Substitute their values,
e = 75 * 10/25
e = 3 * 10
e = 30 V
In short, Your Answer would be Option B
Hope this helps!
Answer:
plotter is used to print d technical diagram
Explanation:
There are three types of loops in programming languages which are as following:-
- for.
- while.
- do while.
The syntax for all the three loops is different.You will see mostly for loop used with the arrays because they are easy to implement.
the syntax of for loop is :-
for(int i=initial value;condition;i++)
{
body
}
In for loops you only have to write the conditions in only line else is the body of the loop.
for example:-
for array of size 50 printing the each element
for(int i=0;i<50;i++)
{
cout<<arr[i]<<" ";
}
You have to initialize i with 0 and the condition should be i<size of the array and then increase the counter.