answersLogoWhite

0


Best Answer

He invented the crescograph.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the inventions of J C Bose?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When was Sir J. C. Bose School of Engineering created?

Sir J. C. Bose School of Engineering was created in 2009.


What are the inventions of jagadish Chandra Bose?

Crescograph


What has the author J C Ataliba Nogueira written?

J. C. Ataliba Nogueira has written: 'Um inventor brasileiro ...' -- subject(s): Typewriters, Inventions


What Inventions start with j?

Inventions that start with J...JacuzziJetJet SkiJock Strap


All scientist names and their inventions?

j


Is Madison c j walker a famous scientist?

No, she is popular due to her inventions of hair cosmetics particularly for African-Americans such as straightening irons, relaxers, etc.


What were some of Ezra j warner's famous inventions?

the can opener


Where did kenneth j dunkley make his inventions?

flakiwitz has good food


When was J. J. C. Smart born?

J. J. C. Smart was born on 1920-09-16.


How do you Write a C program for matrix addition?

for (i=0; i<IMAX; i++) for (j=0; j<JMAX; j++) c[i,j] = a[i,j] + b[i,j];


What r the dimensions of mutual inductance?

Obviously there is more than one way to do this. VL = Ldi/dt Volts has units of Joules/Coulomb: J/C i has units of Coulombs/second: C/s So di/di is C/s^2 L has units of J/C / C/s^2 = Js^2/C^2 Ic = CdV/dt => Ic/dV/dt = C/s / J/C-s = C/s * C-s/J = C^2/J C has units of C^2/J OR you could just type Q = CV => C = Q/V = C/J/C = C^2/J same answer R = V/I => J/C / C/s = J-s/C^2


C program for counting sort?

#include<stdio.h> #include<conio.h> void main() { clrscr(); int i,j,m,a[20],b[20],c[20],max; printf("enter no of elements"); scanf("%d",&m); printf("enter elements"); for(i=0;i<=m;i++) { scanf("%d",&a[i]); } max=a[i]; for(i=0;i<=m;i++) { if(max<a[i]) { max=a[i]; } } for(i=0;i<=max;i++) { c[i]=0; } for(j=0;j<=m;j++) { c[a[j]]=c[a[j]]+1; } for(i=0;i<=max;i++) { c[i]=c[i]+c[i-1]; } for(j=m;j>=1;j--) { b[c[a[j]]]=a[j]; c[a[j]]=c[a[j]]-1; } printf("AFTER SORTING"); for(i=0;i<=m;i++) { printf("%d",b[i]); } getch(); }