reopened by
1,296 views
1 votes
1 votes

Which languages necessarily need heap allocation in the runtime environment?

  1. Those that support recursion
  2. Those that use dynamic scoping 
  3. Those that use global variables
  4. Those that allow dynamic data structures
reopened by

1 Answer

Answer:

Related questions

1.7k
views
2 answers
2 votes
gatecse asked Dec 17, 2017
1,696 views
Consider the code segmentint i,j,x,y,m,n; n = 20; for(i=0;i<n;i++) { for(j=0;j<n;j++) { if(i%2) { x += ((4*j)+5*i); y += (7+4*j) } } } m=x+y;Which one of the following is...
3.8k
views
2 answers
9 votes
gatecse asked Dec 17, 2017
3,799 views
Consider the following $C$ function#include<stdio.h int main(void) { char c[]="ICRBCSIT17" char *p=c; printf("%s",c+2[p]-6[p]-1); return 0; }The output of the program is ...
2.8k
views
2 answers
5 votes
gatecse asked Dec 17, 2017
2,793 views
Which of the following related to snowflake schema is true?Each dimension is represented by a single dimensional tableMaintenance efforts are lessDimension tables are nor...
3.3k
views
3 answers
5 votes
gatecse asked Dec 17, 2017
3,261 views
Consider the results of a medical experiment that aims to predict whether someone is going to develop myopia based on some physical measurements and heredity. In this cas...