answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the smallest b?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Smallest ship ever?

b ship


What is the smallest angle of a right angle triangle when its hypotenuse is 7.4cm with one of its sides 4.6cm in length?

The smallest angle of the triangle is opposite to its smallest side which is 4.6cm and so by using the sine rule: A/a = B/b = C/b the smallest angle works out as 38.43 degrees rounded to two decimal places.


C program to find the largest and smallest of three numbers using IF IF ELSE?

#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("Enter any three numbers"); scanf("%d%d%d",&a,&b,&c); if(a>b&&a>c) printf("A is greatest"); else if(b>a&&a>c) printf("B is greatest"); else if(c>a&&c>b) printf("C is greatest"); if(a<b&&a<c) printf("A is smallest"); else if(b<a&&b<c) printf("B is smallest"); else if(c<a&&c<b) printf("C is smallest"); getch(); }


A plus b plus c equals d. A is the largest answer b is the smallest answer and d is less than 6?

A plus b plus c equals d. A is the largest answer b is the smallest answer and d is less than 6?''


Write a program to find the largest of three numbers and print the output in ascending order?

void main() { int a,b,c; clrscr(); printf("Enter the value of a:"); scanf("%d",&a); printf("\nEnter the value of b:"); scanf("%d",&b); printf("\nEnter the value of c:"); scanf("%d",&c); if(a>b) { if(a>c) { if(b>c) { printf("c is smallest\n"); printf("b is middle\n"); printf("a is largest\n"); } else { printf("b is smallest\n"); printf("c is middle\n"); printf("a is largest\n"); } } else { printf("b is smallest\n"); printf("a is middle\n"); printf("c is largest\n"); } } else if(b>c) { if(a>c) { printf("c is smallest\n"); printf("a is middle\n"); printf("b is largest\n"); } else { printf("a is smallest\n"); printf("c is middle\n"); printf("b is largest\n"); } } else { printf("a is smallest\n"); printf("b is middle\n"); printf("c is largest\n"); } getch(); }


What is the smallest functional and structural unit of all living?

yhvlg b,nk


What is the smallest digit that can replace B and make the number divisible by 6?

6 (or 0)


Data on a computer is measured in bits Which answer correctly shows measurements from the smallest to the largest?

Bits are the smallest unit of measurement of computer data. 8 bits (b) = 1 byte(B). 1024 bytes(B) = 1 kilobyte (kB). 1024 kB = 1 megabyte (MB) etc..


Which sentence has a proper noun A The smallest country in the world has only 10000 people B Lichtenstein is the smallest country in the world?

Sentence B has a proper noun, "Liechtenstein," while sentence A does not have a proper noun.


What is the smallest particle (a)element (b) compound?

An element is a part of a compound.


What is the formula for the Pythagorean Thoerem?

A squared + b squared = c squared. A is the smallest a and b are the two sides that form the right angle while c is the other side.


What is the smallest positive integer that is divisible by 4 5 and B with no remainders showing work?

4 and 5 are co-prime so the smallest positive integer that is divisible by 4 and 5 is 4*5 = 20. Let S stand for the smallest positive integer that is divisible by 4, 5 and B.After that the answer depends on the value of BIf B is co-prime with both 4 and 5 then S = 20B.If B is co-prime with 4 but is a multiple of 5, then let B = 5*C. Then S = 20C.If B is a multiple of 4 but is co-prime with 5, then let B = 4*D. Then S = 20D.If B is a multiple of 2 but not 4, and is co-prime with 5, then let B = 2*E. Then S = 20E.If B is a multiple of 2 but not 4, and is also a multiple of 5, then let B = 10*F. Then S = 20F.If B is a multiple of 4 as well as of 5 then S = B.