answersLogoWhite

0


Best Answer

M 1

User Avatar

Wiki User

βˆ™ 11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of M1 M2 M3?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

If the m1 equals SA and m3 equals 23 what is the m?

if(m1>m2) f=m1; s=(m2>m3)?m1!m3 what its meaning of this?


Why are m3 and m2 higher than m1?

because 3>2>1 ? Other than that, depends on what m1,m2 and m3 represent.


C program to calculate percentage of 3 subject marks?

#include#includevoid main(){float avg(int m1,int m2,int m3);clrscr();printf("\nAverage of 3 Subjects: %.2f",avg(78,85,95));getch();}float avg(int m1,int m2,int m3){return (m1+m2+m3)/3;}


Can you do M1 and S1 for maths a level?

I am assuming you are meaning the Cambridge Exams, in which case no, M1 and S1 are required for AS level.To do stats at A level I think you need M2, M3, and S2But check on the website www.cie.org.uk


What is bone marrow blast score - M1 M2 M3?

M1 means less than 5% blasts and is the usual definition of a "remission" marrow. M2 means the marrow has between 5% and 25% leukemic blasts. M3 means there are more than 25% leukemic blasts.


Freeways in the UK are called what?

The UK uses the term MOTORWAY and label them as M1, M2, M3 etc.


find the area or a regular decagon whose radius is 7cm?

Given the regular decagon what is the measure of each numbered angle? There is a one in the first triangle, a three in the second, and a two in the sixth triangle in the decagon. Here are the answer choices m1=72, m2=18, m3=36 m1=18, m2=36, m3=72 m1=36


What motoways originate from London?

M1, M2, M3, M4, M11, M20, M23, M40. The M25 encircles London.


Which is the most liquid measure of money supply?

M2. M2 consists of M1(coins, bills, travlers checks/checkable deposits), savings accts, money market accounts, demand deposits, and timed deposits. M2 is less narrow than M1, therefore being more liquid/spendable. *The Fed has defined three monetary aggregates M1, M2, and M3. The narrowest definition, M1, includes the transaction deposits of banks and cash in circulation. M2 adds savings accounts, small time deposits at banks, and retail money market funds. M3 adds large time deposits, repurchase agreements, Eurodollars, and institutional money market funds. In March 2006 the Fed discontinued tracking M3 because it does not convey information about economic activity that is not already embodied in M2


What is the difference between M1 and M2?

What is the difference between M1 and M2?


Write a c program for student marklist without using arrays and pointers?

#include<stdio.h> #include<conio.h> void main() { int rollno,m1,m2,m3,m4,m5,tot; float avg; char [20]name; clrscr(); printf("Enter the name,rollno,mark"); scanf("%d%d%d%d%d%d%s",&rollno,&m1,&m2,&m3,&m4,&m5,&name); tot=m1+m2+m3+m4+m5; avg=tot/5; printf("the avg is",avg); getch(); }


C program to print a mark sheet of students and the number of students is the user input for 5 subjects?

main() { int p,m1,m2,m3,m4,m5; printf("enter marks of 5 subjects"); scanf("%d%d%d%d%d",&m1,&m2,&m3,&m4,&m5)l p=(m1+m2+m3+m4+m5)/500*100; if(p>=60) printf("first"); else { if(p>=50) printf("second"); else { if(p>=40) printf("third"); else printf("fail"); } } }