What is scope & storage allocation of static, local and register variables? Explain with an example.
1052Post New IBS Core Java Interview Questions
Is outlook 365 the same as outlook 2019?
Can you share the names of platforms are that are actively developing blockchain apps?
What are a query and state the different types of queries and their uses?
Classification of bunkers?
Different types of locks?
Differentiate between linearlayout, relativelayout, absolutelayout.
What is j2ee module?
What is the task of the pre-processor?
How to delete an object from the object repository?
We are updating a field in sql and alter the row also.after giving the commit command the system is crashed.what will happen to the commands given,whether it will update and alter the table or not?
What does the @override annotation do?
what is error and fault in terms of software quality?
What is the bean factory in spring?
What is viewstate mvc?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }