answersLogoWhite

0


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

Related questions

What nqf level is n6?

The N6 certificate is on NQF level 5, and the Diploma is on NQF level 6.


What do nqf stands for?

NQF stands for National Quality Forum in regards to Meaningful Use.


What NQF level is MCITP?

Level 6


Codings for coprime number in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }


What is the pmf of trinomial distribution?

P(x=n1,y=n2) = (n!/n1!*n2!*(n-n1-n2)) * p1^n1*p2^n2*(1-p1-p2) where n1,n2=0,1,2,....n n1+n2<=n


ACCA NQF level?

level 7 as i know


Find LCM and HCF of two given number by using for loop in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2-1) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }


What is the value of the expression n1?

the value of the exponent n1


What is the value of the expression of n1?

the value of the exponent n1


What NQF level is Grade 12?

In South Africa, Grade 12 is equivalent to NQF level 4. This is the final year of the General Education and Training Phase and signifies the completion of secondary education.


How can you create calculator in computer language cpp?

void main() { int i; float n1,n2; abc: printf("Enter two nos "); scanf("%f%f",&n1,&n2); printf("\n %f + %f = %f " ,n1,n2,n1+n2); printf("\n %f - %f = %f " ,n1,n2,n1-n2); printf("\n %f x %f = %f " ,n1,n2,n1*n2); printf("\n %f / %f = %f " ,n1,n2,n1/n2); printf("\npress 5 to make another calculation"); scanf("%d",&i); if (i==5) goto abc; }


What is the sum of the 10 positive integers?

The sum of the first 10 positive integers, using the formula N1 + (N1 + 1) + ... + N2 = N2 * (N2 + 1) / 2 - (N1 - 1) * N1 / 2 is: 55