answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the N-1 space?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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


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


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


What is the movie price at N1 City?

what are the price of a movie ticket at N1 city


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;


Where can you purchase N1 wireless boxes?

You can purchase N1 wireless boxes online. The official website is N1wireless. But you can also try ebay or amazon to find the right N1 wireless boxes.


How do you solve N to the 30th divided by N to the first?

You subtract the exponents. N30 - N1 = N30 - 1 = N29.You subtract the exponents. N30 - N1 = N30 - 1 = N29.You subtract the exponents. N30 - N1 = N30 - 1 = N29.You subtract the exponents. N30 - N1 = N30 - 1 = N29.


How to solve why any number raise to 0 is equal to 1?

Let n be any number and n/n = 1 and n1/n1 = n1-1 which is n0 that must equal 1