Fundamental Programming Language 2 featured slide 2 title

This theme is Customized by Vaibhav P Sonawane - theme downloaded from Premiumbloggertemplates.com.

123

Wednesday, March 23, 2016

UNIT -I NOTES

The basic blocks of a computer are CPU (Central Processing Unit) or Processor, Memory and I/O (Input-Output) device.                     Due to advances in semiconductor technology, it is possible to fabricate the CPU  on one or more than one chips. The result is the microprocessor. Both MOS (Metal Oxide Semiconductor) and Bipolar technologies can be used in this fabrication process. The CPU can be placed on a single chip when MOS technology is...

Wednesday, March 16, 2016

Question

Question on Pointers: main( ) { int i = 3 ; printf ( "\nAddress of i = %u", &i ) ; printf ( "\nValue of i = %d", i ) ; printf ( "\nValue of i = %d", *( &i ) ) ; }...

Question on Pointers

Question for your concept: What will be the output of the following program? #include<stdio.h> main() {    int a, *p;    a=100;    p= &a;    printf("%d %d %d", a, p, *p); } Assume address of variable a=100000H. a. 100, 100000H, 100               b. 100000H,100,100 c. 100, 100000H,100000H       d. No...

Tuesday, March 15, 2016

Question for your concept.

What is the output of following code: void main() {   int i;   for(i=0;i<5;++i)   {       printf("%d",i);    } } a. 0,1,2,3,4       b. 1,2,3,4,5 c. 1,2,3,4          d. error ...

Monday, March 14, 2016

Java Notes

v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 false false false false EN-US X-NONE X-NONE ...