what is the difference between structural,object
based,object orientd programming languages?
Answer / himanshu singh
In structural focus is more on procedures whereas in oject based focus is more on data..
one mr thing.. structural follows top down approach whereas object oriented follows bottom up approach
| Is This Answer Correct ? | 4 Yes | 3 No |
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
What is pre-emptive data structure and explain it with example?
what is the difference between definition and declaration? give me some examples.
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
where do we use structure pointer?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is the difference between c and python?
How to reverse a string using a recursive function, with swapping?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Can a file other than a .h file be included with #include?