answersLogoWhite

0

What is N1 N2 and N3 qualification?

Updated: 4/28/2022
User Avatar

Wiki User

12y ago

Best Answer

N2 / N3 qualification is a trade theory (Electrician, Motor mechanic, Plumber, Mechanotechnologist, Geologist and related career) qualification before you do your Apprentice. I South Africa, before you are admitted for and apprentice service Training) you need to have a N3 qualification.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is N1 N2 and N3 qualification?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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(); } }


How do you add two numbers in oracle?

declare n1 number; n2 number; n3 number; begin n1:=3 n2 :=5 n3:= sum(n1,n2); dbms_output.put_line( n3); end


What is the flowcharts of input three values and display largest number?

Input N1, N2, N3 Max = N1 If N2 > Max then Max = N2 If N3 > Max then Max = N3 Display Max


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


What sleeping stage comes before REM stage?

Nrem (n1, n2, n3)


Describe the sequence 25 26 24 27 23?

n1= 25 n2= n1+1 n3= n1-1 n4=n1+2 n5=n1-2


How do you make a program for Fibonacci sequence?

The following is a schematic program. Details will depend on the language.n1 = 1output n1n2 = 1output n2.start loopn3 = n1 + n2output n3got enough numbers?if yes go to end elsen1


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


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 does Fortran statement If left paren If left paren 2 times A comma Y Rt paren Rt paren 6 comma 5 comma 6 mean?

It is a three-way case statement. ( Arithmetic IF statement) IF(exp) n1,n2,n3 meaning go to n1 if expr < 0 ( value is negative) go to n2 if expr = 0 ( value is zero) go to n3 if expr > 0 ( value is positive) IF(expr1-expr2) n1,n2,n3 meaning go to n1 if expr < expr2 go to n2 if expr = expr2 go to n3 if expr > expr2 reference: Fortran 77 with 90 Applications for scientific and engineers second edition RAMA N. REDDY CAROLA A. ZEIGLER


What is the average of 28818?

As there is only one number 288818. Average = (n1 + n2 +n3 ....... nx)/x = (28818)/1 = 28818


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; }