1. 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.





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->…………….means the annual financial statements and other statements prescribed under Rule 65 of Kerala Panchayat Raj (Accounts) Rules, 2011?....
QA->Consider a Program Graph (PG) with statements as nodes and control as edges. Which of the following is not true for any PG?....
QA->Process of mapping a network interface IP address to its hardware address:....
QA->How many address lines are needed to address each machine location in 2048X4 memory chip?....
QA->The plaque mentioning ‘mathruka sthanam’ or ‘model foundation’ is seen at ?....
MCQ->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.....
MCQ->Which of the following statements are correct about the Bitwise & operator used in C#.NET? The & operator can be used to Invert a bit. The & operator can be used to put ON a bit. The & operator can be used to put OFF a bit. The & operator can be used to check whether a bit is ON. The & operator can be used to check whether a bit is OFF.....
MCQ-> Questions are based on a set of conditions. In answering some of the questions, it may be useful to draw a rough diagram. Choose the response that most accurately and completely answers each question. A BPO has assigned duty to nine operators - Abdulla, Ballal, Chandan, Dogra, Eshita, Falguni, Ganguli, Henri and Indra - on Monday, January 05, 2009 from 00:00 hours. Each operator commences duty at any of the following hours: 00:00 hrs, 04:00 hrs, 08:00 hrs, 12:00 hrs, 16:00 hrs and 20:00 hrs. At any point in time, at least one operator is required, to take clients' calls. Each operator works continuously for eight hours. All operators located at any single location start work simultaneously. The operators took training in five different colleges -Abhiman College, Sutanama College, Gutakal College, Barala College and Khatanama College. These colleges are located in the cities Jamshedpur, Pune, Noida, Hyderabad and Mangalore, not necessarily in that order. The operators operate from the cities where their respective colleges are located. Indra operates alone from a city other than Mangalore and Jamshedpur. Operator(s) trained in Abhiman College will start working at 12:00 hrs. Only Dogra and Falguni operate from Pune, but they are not trained in Gutakal College. Three of the operators took training from Sutanama College, and they operate from Noida. The operator(s) from Jamshedpur will start working at 0:00 hrs. Abdulla and Henri operate together as a two member team from a single location. They do not operate from Mangalore. No operator(s) will join at 20:00 hrs. Ballal, who alone operates from his location, was not trained in Barala College, and will commence his duty four hours after the operator(s) trained in Gutakal College. The operator(s) trained in Barala College operate from Hyderabad. The number of operator(s) trained in Khatanama College is same as the number of operator(s) trained in Barala College.Which of the following statements must be true?
 ....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdarg.h> void fun1(char, int, int , float , char ); void fun2(char ch, ...); void (p1)(char, int, int , float , char ); void (p2)(char ch, ...); int main() { char ch='A'; int i=10; float f=3.14; char p="Hello"; p1=fun1; p2=fun2; (p1)(ch, i, &i, &f, p); (p2)(ch, i, &i, &f, p); return 0; } void fun1(char ch, int i, int pi, float pf, char p) { printf("%c %d %d %f %s \n", ch, i, pi, pf, p); } void fun2(char ch, ...) { int i, pi; float pf; char p; va_list list; printf("%c ", ch); va_start(list, ch); i = va_arg(list, int); printf("%d ", i); pi = va_arg(list, int); printf("%d ", pi); pf = va_arg(list, float); printf("%f ", pf); p = va_arg(list, char ); printf("%s", p); }....
MCQ->If the size of pointer is 32 bits What will be the output of the program ? #include<stdio.h> int main() { char a[] = "Visual C++"; char b = "Visual C++"; printf("%d, %d\n", sizeof(a), sizeof(b)); printf("%d, %d", sizeof(a), sizeof(b)); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions