What are symbol tables?Differemce between Local N Global
Symbol tables.....

Answers were Sorted based on User's Feedback



What are symbol tables?Differemce between Local N Global Symbol tables.......

Answer / chetan

Symbol table is save the Macro varibale list.
Local symobl table save the local macro varibale &
Global symbol table save the global macro varibale.

Is This Answer Correct ?    8 Yes 3 No

What are symbol tables?Differemce between Local N Global Symbol tables.......

Answer / suman

Macro variables are stored in symbol tables, which list the
macro variable name and its value. There is a global symbol
table, which stores all global macro variables. Local macro
variables are stored in a local symbol table that is
created at the beginning of the execution of a macro.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More SAS Interview Questions

how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too

5 Answers   CTS,


Describe the ways in which you can create a macro variable?

0 Answers  


What is maximum number of rows and cols can be handled in SAS?

0 Answers   Signetsoft,


If a variable contains letters or special characters, can it be numeric data type?

0 Answers  


explain what is factor analysis? : Sas-administrator

0 Answers  






What is the size of PDV?

2 Answers   L&T,


What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?

3 Answers   TCS,


what is proc Index? and what is proc document?

0 Answers   Mind Tree,


What is the pound sign used for in the data_null_ ?

1 Answers  


Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated

1 Answers  


How do dates work in sas?

0 Answers  


libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak

7 Answers  


Categories