answersLogoWhite

0

Johann Sebastian Bach's main instrument was the organ. He was a renowned organist and composer known for his mastery of the instrument and contributions to organ music.

User Avatar

AnswerBot

1y ago

What else can I help you with?

Related Questions

What has the author Ulrich Hrsg Prinz written?

Ulrich Hrsg. Prinz has written: 'Schriftenreihe der Internationalen Bachakademie Stuttgart, Band 10: J. S. Bachs Instrumentarium' -- subject(s): Music


What was wrong with j s bachs eyes?

Yes he did. His eyesight was so bad, he decided to have an operation on it. In fact, the first operation was to cut out some cataracts that appeared. Eventually, he had to have another operation because the cataracts reappeared.


Write a C program to remove duplicates in a string?

#include<stdio.h> main() { char s[50]; int i=0,j; printf("enter character string:"); while((s[i]=getchar())!='\n') { for(j=0;j<i;j++) if(s[j]==s[i]) i--; i++; } printf("after removing the duplicates the string is:"); for(j=0;j<i;j++) printf("%c",s[j]); }


What has the author Douglas J Morin written?

Douglas J. Morin has written: 'Instrument of peace' -- subject(s): Catholic Church, Clergy, Priests, Religious life


What has the author J F van Os written?

J. F. van Os has written: 'Langs Nederlandse orgels' -- subject(s): Organ (Musical instrument)


Find sum of elements row wise and columm wise?

#include<stdio.h> #include<conio.h> void main() { int i,a[3][3]={1,2,3,4,5,6,7,8,9},j,s=0,m,n; clrscr(); /*for(i=0;i<3;i++) { for(j=0;j<3;j++) { printf("\na[%d][%d]= ",i,j); scanf("%d",&a[i][j]); } }*/ for(i=0;i<3;i++) { for(j=0;j<3;j++) { printf("%d",a[i][j]); } printf("\n\n"); } for(i=0;i<3;i++) { for(j=0;j<3;j++) s=s+a[i][j]; printf("\n Sum of %d`th row=%d",i+1,s); s=0; } { int i,j,s=0; for(j=0;j<3;j++) { for(i=0;i<3;i++) s=s+a[i][j]; printf("\n\t\t Sum of %d`th column=%d",j+1,s); s=0 ; } } getch(); }


What is a simple java program to find prime numbers?

/** * @author BHARGAV MODI * */ class prime { public static void main(String p[]) { int i,j,s=0,d=0; for(i=1;i<100;i++) { s=0; for(j=1;j<=i;j++) { if(i%j==0) s=s+1; } if(s==2) { System.out.println(i); d=d+1; } } System.out.println("the no. of prime no. are = "+d); } }


What has the author Peter J C Skelton written?

Peter J. C. Skelton has written: 'Main line steam into the 1980's'


Write a c program for Christmas tree?

#include <stdio.h> main() { int i,s,j,m=0; printf("christmas tree-\n"); for(i=1;i<=8;i++) { for(s=i;s<=8;s++) { printf(" "); } for(j=1;j<=i;j++) { printf("* "); } printf("\n"); m++; if(m==3 m==7) i=1; } }


What has the author J R K Main written?

J. R. K. Main has written: 'Manual of ground school training' -- subject(s): Aeronautics, Flight training 'Voyageurs of the air' -- subject(s): Aeronautics, Commercial Aeronautics, History


What has the author J M Button written?

J. M. Button has written: 'Timaru Main School centennial celebration, October 1974, 1874' -- subject(s): History, Timaru Main School


How do you print the piramed of stars in c?

#include<stdio.h> int main() { char prnt = '*'; int i, j, s, nos = 0; for (i = 9; i >= 1; (i = i - 2)) { for (s = nos; s >= 1; s--) { printf(" "); } for (j = 1; j <= i; j++) { if ((i % 2) != 0 && (j % 2) != 0) { printf("%2c", prnt); } else { printf(" "); } } printf("\n"); nos++; } nos = 3; for (i = 3; i <= 9; (i = i + 2)) { for (s = nos; s >= 1; s--) { printf(" "); } for (j = 1; j <= i; j++) { if ((i % 2) != 0 && (j % 2) != 0) { printf("%2c", prnt); } else { printf(" "); } } nos--; printf("\n"); } return 0; }