0 votes
63
How many primitive data type are there in java?????And: 8Plz explain it
0 votes
64
0 votes
67
What is the output of above program?Answer is : 1, 1, 1, 12, 2, 2, 23, 3, 3, 32, 2, 2, 2 3, 3, 3, 34, 4, 4, 4Can anyone explain me those 4 expressions diagrammatically​...
0 votes
69
Which of the following is not the member of class ?1.Static function2.Friend dunction 3.const. function 4.Virtual function
0 votes
70
Multi-level access link (or display) arrangement is needed to arrange activation records only if the programming language being implemented has nesting of procedures/func...
0 votes
71
short* a = 0;void main() {printf("%d",a);a=a+2; printf("%d",a);}