answersLogoWhite

0

WHAT IS NQF N1?

Updated: 12/17/2022
User Avatar

Wiki User

9y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: WHAT IS NQF N1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Swapping of number with using third variable?

To swap two numbers N1 and N2, using a third variable T... T = N1; N1 = N2; N2 = T;


Write a program that generates the Fibonacci series up to 200?

class Program { static void Main(string[] args) { int n1, n2, n3,i; n1 = 0; n2 = 1; for (i = 1; i <= 20; i++) { n3 = n1 + n2; if (n3 <= 200) { Console.WriteLine(n3); n1 = n2; n2 = n3; } } Console.ReadKey(); } }


Write c sharp program to find sum of two numbers?

public int findSum(int n1, int n2) { return n1 + n2; }


Why not a step up transformer be used to increase the power generated many times and solve energy crisis?

Because a transformer does not generate power, it transformers it. Power is equivalent to the voltage times current. A transformer with a ratio of N1:N2 takes voltage (V1) and current (I1) at one winding and transforms it into (N2/N1)*V1 voltage and (N1/N2)*I1 current at the other winding. So the input power is V1 * I1, and the output power is (N2/N1)*V1*(N1/N2)*I1 = V1*I1 (ignoring the small amount of losses associated with the transformer).


Write a vb program to find the simple interest?

n1=val(text1.text) n2=val(text2.text) n3=val(text3.text) text4.text=(n1*n2*n3)/100