Answer:
following are the code in c++
#include<iostream> // header file
#include<math.h>
using namespace std;
int main() // main function
{
double v,a,len;// declaring variable
cout<<" Enter v: ";
cin>>v;
cout<<" Enter a:";
cin>>a;
len=pow(v,2)/(2*a); // to calculate the minimum runway length.
cout<<" The minimum runway length is :";
cout<<len;
return 0;
}
Explanation:
In this program we taking two user input in the variable v and a respectively.After that we using the formula len=v*v/2*a to calculate the minimum runway length and finally print len which display the minimum runway length. .
output
Enter v: 60
Enter a: 3.5
The minimum runway length is :514.286
Answer:
grad_age=matric_age+4
Explanation:
As mention in the question their are two variable matric_age and grad_age respectively .The grad_age variable store the value of 4 more than that of matric_age i.e (matric_age+4) means that it store the value 4 plus matric_age Suppose a matric_age is initialized with 4 then value of grad_age=4+4=8.
Answer:
Yes it is possible for the following cases:-
- When the queue is full.
- When the queue is empty.
Explanation:
When the queue is full the the front and the rear references in the circular array implementation are equal because after inserting an element in the queue we increase the rear pointer.So when inserting the last element the rear pointer will be increased and it will become equal to front pointer.
When the queue is empty the front and rear pointer are equal.We remove an element from queue by deleting the element at front pointer decreasing the front pointer when there is only one element and we are deleting that element front and rear pointer will become equal after deleting that element.
Answer:
The correct answer to this question is "Name".
Explanation:
In the programming language, the object is a part of the object-oriented programming language (oops).In all (oops) programming language we use class and object. where class is a collection of data member and member function, and object is a real-world entity. An Object is an instance of a Class. When a class is created, no memory is assigned but when we create the object of the class then memory is allocated.
In this question except option (d), all options are wrong.
read that hope this helped