answersLogoWhite

0


Best Answer

The N-1 Rocket was what the Soviet Union used to try to get their men to the moon. The rocket stood 344.5 feet tall and was 55.8 feet wide at the base. The N-1 is the second largest rocket ever built. The first stage boosted 30 main engines. The rocket launched a total of four times, all were failures. Two more flight ready N-1s were destroyed in an attempt to cover the failures.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the N1 rocket the Russians used?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the common noun for the N1?

The N1 is a rocket.


Did the Russians land a man on moon?

The Russians (in those days, the USSR) did have plans to land a man on the moon, but the failure of the N1 launcher rocket caused the project to be abandoned in the 1970s. So no Russian has ever walked on the moon.


Is Saturn five the biggest rocket ever made?

Yes. The Soviet N1 Moon Rocket is only 5 meters or so shorter.


What is the them for the rocket man?

A person who goes into space is called an astronaut by the US and a Cosmonaut by the Russians.


Describe the sequence 25 26 24 27 23?

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


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 of n1?

the value of the exponent n1


What is the value of the expression n1?

the value of the exponent n1


What was the name of the first Space rocket lunch by the Russians?

The name of the first satellite was Sputnik, which was launched by the Soviet Union in 1957.


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