8701. Which of the following products launched by most of the banks help farmers in getting instant credit for various agicultural purposes ?
8702. Cash crop does not include:
8703. What is the pH of the medium when sucrose is used as substrate for the production of citric acid?
8704. In liquid surface culture process for the fermentation to produce citric acid,
8705. In koji process for the fermentation to produce citric acid,
8706. What is the pH of the medium when molasses is used as substrate for the production of citric acid?
8707. Which of the following nitrogen sources is added in the fermentation medium of citric acid production?
8708. In submerged process for the fermentation to produce citric acid,
8709. Which substrate is used in the fermentation of citric acid?
8710. Alegar is a type of vinegar produced from
8711. During recovery step of citric acid, calcium citrate formed is treated with which of the following acid to precipitate calcium?
8712. Vinegar production consists of
8713. Cider vinegar is produced from
8714. Ethanol is oxidized to acetic acid aerobically using
8715. Malt vinegar is produced from
8716. Vinegar is typically produced in fed batch reactors because
8717. For the recovery of citric acid after fermentation, Ca(OH)2 is added to the slurry to
8718. Which of the following microorganism is used for the production of citric acid?
8719. Sugar content of the fermentation medium for citric acid is maintained at
8720. Spirit vinegar is produced from
8721. Which of the following policies of the financial sectors is basically designed to transferring local financial assets into foreign financial asset freely and at market determined exchange rates ? Policy of—
8722. A customer wishes to purchase some US dollars in India. He/ She should go to—
8723. Mention the importance of the year 1858 in Indian History ?
8724. Who amongst the following were a maritime power ?
8725. India’s Look East Policy was launched in the year—
8726. What will be the output of the program ? #include<stdio.h> int main() { int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m); return 0; }
8727. What will be the output of the program ? #include<stdio.h> int main() { static int a[2][2] = {1, 2, 3, 4}; int i, j; static int p[] = {(int)a, (int)a+1, (int)a+2}; for(i=0; i<2; i++) { for(j=0; j<2; j++) { printf("%d, %d, %d, %d\n", ((p+i)+j), ((j+p)+i), ((i+p)+j), ((p+j)+i)); } } return 0; }
8728. What will be the output of the program ? #include<stdio.h> int main() { void fun(int, int[]); int arr[] = {1, 2, 3, 4}; int i; fun(4, arr); for(i=0; i<4; i++) printf("%d,", arr[i]); return 0; } void fun(int n, int arr[]) { int p=0; int i=0; while(i++ < n) p = &arr[i]; p=0; }
8729. What will be the output of the program ? #include<stdio.h> void fun(int p); int main() { int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0}; int ptr; ptr = &a[0][0]; fun(&ptr); return 0; } void fun(int p) { printf("%d\n", p); }
8730. What will be the output of the program ? #include<stdio.h> int main() { static int arr[] = {0, 1, 2, 3, 4}; int p[] = {arr, arr+1, arr+2, arr+3, arr+4}; int ptr=p; ptr++; printf("%d, %d, %d\n", ptr-p, ptr-arr, ptr); ptr++; printf("%d, %d, %d\n", ptr-p, ptr-arr, ptr); ++ptr; printf("%d, %d, %d\n", ptr-p, ptr-arr, ptr); ++ptr; printf("%d, %d, %d\n", ptr-p, ptr-arr, ptr); return 0; }
8731. What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes? #include<stdio.h> int main() { int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u\n", a+1, &a+1); return 0; }
8732. What will be the output of the program in Turb C (under DOS)? #include<stdio.h> int main() { int arr[5], i=0; while(i<5) arr[i]=++i; for(i=0; i<5; i++) printf("%d, ", arr[i]); return 0; }
8733. What will be the output of the program ? #include<stdio.h> int main() { int arr[1]={10}; printf("%d\n", 0[arr]); return 0; }
8734. What will be the output of the program if the array begins at address 65486? #include<stdio.h> int main() { int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u\n", arr, &arr); return 0; }
8735. What will be the output of the program ? #include<stdio.h> int main() { float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d\n", sizeof(arr)/sizeof(arr[0])); return 0; }
8736. What will be the output of the program if the array begins 1200 in memory? #include<stdio.h> int main() { int arr[]={2, 3, 4, 1, 6}; printf("%u, %u, %u\n", arr, &arr[0], &arr); return 0; }
8737. Which of the following is correct way to define the function fun() in the below program? #include<stdio.h> int main() { int a[3][4]; fun(a); return 0; }
8738. Which of the following statements mentioning the name of the array begins DOES NOT yield the base address? 1: When array name is used with the sizeof operator. 2: When array name is operand of the & operator. 3: When array name is passed to scanf() function. 4: When array name is passed to printf() function.
8739. Which of the following statements are correct about the program below? #include<stdio.h> int main() { int size, i; scanf("%d", &size); int arr[size]; for(i=1; i<=size; i++) { scanf("%d", arr[i]); printf("%d", arr[i]); } return 0; }
8740. Which of the following statements are correct about 6 used in the program?
int num[6];
num[6]=21;
8741. Which of the following statements are correct about an array? 1: The array int num[26]; can store 26 elements. 2: The expression num[1] designates the very first element in the array. 3: It is necessary to initialize the array at the time of declaration. 4: The declaration num[SIZE] is allowed if SIZE is a macro.
8742. A pointer to a block of memory is effectively same as an array
8743. Does this mentioning array name gives the base address in all the contexts?
8744. Is there any difference int the following declarations?
int fun(int arr[]);
int fun(int arr[2]);
8745. Are the expressions arr and &arr same for an array of 10 integers?
8746. What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?
8747. What does the following declaration mean?
int (ptr)[10];
8748. In C, if you pass an array as an argument to a function, what actually gets passed?
8749. Which of the following products of a bank is specifically designed to provide financial help to children in their higher studies in India or in a foreign nation ?
8750. An industry which is fighting hard to increase its market share in existing market (with new popular products) is known as—