Posts

Vector embedded systems Exam syllabus

Vector India Exam is Quite Easy to Crack. Upcoming exam is on 17th November 2019 and  apply for exam https://www.vectorindia.org/online-registration.html Based on Exam Scores you can get up to 50% scholarship/discount. This exam includes five basic subjects:- 1.     Basics of C programming ( without Data structures ) 2.     Micro Processor (8085/8086): ( Select either 8085 /   8086 ) 3.     Digital electronics 4.     General Aptitude This all are from your Engineering   basics topics :- 1.     Basics of C programming ( without Data structures ) 2.     Microprocessor 8085/8086 ( architecture, assembly language, interfacing ) 3.     Digital Electronics ( Basics of Electronics ) 4.     General Aptitude. Total Number of questions:- 75 Number Of Questions on Each topics:- Ø   C Language:-20 ...

Vector Sample Question Paper

Image
www.vectorindia.org  v PROGRAMMING LANGUAGE ‘C’ 1. main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); } a) 32 b) 2 c) 4 d) none 2. main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); } a) 7 b) 9 c) Runtime error d) none 3. #define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif } a) MAX=3, Vector Institute b) MAX=3 c) Vector Institute d) Compile time error 4. int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); } a) 1 b) 8 c) 2 d) 4 5. main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); } a) 1 b) 2 c) 4 d) none 6. main() { char input[] = "SSSWILTECH1\1\1"; int i, c; for ( i=2; (c=input[i])!='\0'; i++) { switch(...