answersLogoWhite

0

ps1 = PlayStation 1 ps2=playstaion 2

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Natural Sciences

What if you have p1 p2 p3 and p4?

If you have p1, p2, p3, and p4, it seems like you are referring to four different entities, possibly variables or parameters in a system or mathematical equation. Without further context, it is difficult to provide a specific interpretation or action related to p1, p2, p3, and p4.


What is the formula for PED?

The formula for Price Elasticity of Demand (PED) is the percentage change in quantity demanded divided by the percentage change in price. It is calculated as (Q2 - Q1) / ((Q1 + Q2) / 2) / (P2 - P1) / ((P1 + P2) / 2), where Q1 and Q2 are quantity demanded values and P1 and P2 are price values.


What is an expression of Dalton's law constant?

Answer: Apex ↓Ptotal = P1 + P2 + P3 + ...


How much does a 0.4A motor cost per month?

* 0.4A * (voltage of device V) = Power in watts P1 * P1/1000 = Power in kW P2 * P2 * (electric rate in dollars per kWhr) = Cost dollars/hr C * C * (days in this month) * 24 hr/day = Cost in dollars for this month


A sample of helium gas at 25 celsius is compressed from 200mL to 0.240 mL Its pressure is now 300mm Hg What was the original pressure of the helium?

To solve for the original pressure of the helium gas, we can use Boyle's Law, which states that the pressure and volume of a gas are inversely proportional at constant temperature. Using this law, we can set up the equation (P1)(V1) = (P2)(V2), where P1 is the original pressure, V1 is the original volume, P2 is the final pressure, and V2 is the final volume. Plugging in the values gives us (P1)(200 mL) = (300 mm Hg)(0.240 mL). Solving for P1 gives us P1 = (300 mm Hg)(0.240 mL) / 200 mL = 0.36 mm Hg. Therefore, the original pressure of the helium gas was 0.36 mm Hg.

Related Questions

How do you caluculate the GCD of two prime numbers?

Let p1 and p2 be the two prime numbers. Because they are prime, their divisors are div(p1) = {1,p1} and div(p2) = {1,p2}. So GCD(p1,p2) = Greatest Common Divisor of p1 and p2 = p1 if p1 equals p2 1 if p1 is different from p2


Can a multiple of a prime number be prime?

No. Let p1 be a prime number. Let p2 be a multiple of p1 such that p2 = p1 * k.  Then the factors of p2 are: 1, p1, k and p2. ==> p2 is not a prime number. Hence, a multiple of a prime number cannot be a prime number.


How do you save a pointer variable into another variable?

Assignment. Eg: void *p1, *p2; p2= p1;


How can you get the population growth rate?

If the old population is P1, the new population is P2, and the growth rate is G, G = (P2 - P1) ÷ P1 x 100%


What is the midpoint formula for the elasticity of demand?

Price elasticity demand formula end point formula epd= [q2-q1/q1]/[p2-p1/p1] midpoint formula epd= [q2-q1/(q2+q1)/2] / [p2-p1/(p2+p1)/2]


What is chain of pointers?

A pointer can point to address of another pointer. consider the exampleint x=456, *p1, **p2;p1 = &x;p2 = &p1;Copyright Einstein College of EngineeringDepartment of Civil EngineeringTOPprintf("%d", *p1); will display value of x 456.printf("%d", *p2); will also display value of x 456. This is because p2 point p1, and p1 points x.Therefore p2 reads the value of x through pointer p1. Since one pointer is points towards anotherpointer it is called chain pointer. Chain pointer must be declared with ** as in **p2


What is a formula for computing elasticity of demand?

The formula for computing elasticity of demand is: (Q1 - Q2) / (Q1 + Q2) ------------------------------ (P1 - P2) / (P1 + P2)


When the ones and tens are multiplied separately each product is called a?

The general function is:1. y = a*x+bb is irrelevant and we can be removed2. y = a*xlets split x into ones and tens3. x = tens*10 + ones /e.g. 23 = 2*10 + 34. p1 = Multiplier of the onesp2 = Multiplier of the tens5. y = tens*10*p2 + ones*p1 /according to the question6. x*a = tens*10*p2 + ones*p1 /according to 2.7. (tens*10 + ones)*a = tens*10*p2 + ones*p1 /according to 3.8. tens*10*a + ones*a = tens*10*p2 + ones*p1 /regroup9. tens*10*a - tens*10*p2 + ones*a - ones*p1 = 0 /regroup10. tens*10*(a-p2) + ones*(a-p1) = 0 /regroup11. assuming "tens" and "ones" are not 0 then (a-p2) and (a-p1) must be 012. a-p2 = 0a-p1 = 013. a = p2a = p114. a = p1 = p2the answer is: when the Multipliers of ones and tens are equal then the product is called a.


What is the formula of unitary elastic demand?

ed=(q1-q2)/q1/(p1-p2)/p1


How do you print twin primenumbers in c program?

void PrintTwinPrimes (int p1, int p2) { printf ("%d and %d are twin-primes\n", p1, p2); }


When can the momentum of two objects be cancelled?

The momentum can be cancelled when the objects are equal and opposite in momentum, 0= p1 + p2, thus p1=- p2. Newton's 3rd law.


How to Reverse a string using pointers in C?

#include<stdio.h> #include<conio.h> #include<string.h> void main() { char str1[]="ravi kant yadav"; char str2[20],*p1,*p2; clrscr(); p1=str1+strlen(str1)-1; //Make p1 point to end of str1. p2=str2; while(p1>=str1) *p2++=*p1--; *p2='\0'; printf("Original string=%s. Reversed String=%s",str1,str2); getch(); }