Description: programming languages Online Quiz - 144 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
x=intck('week.4','01JAN2010'd,'01FEB2010'd); What is the value of x ?
To display all the values of all the variables in the log, the option used is
In order to write each input record into the log the option used is
The default number of error messages that are displayed in SAS log is
The report output should be {x y } {1 2} {2 5} {Total 2} Choose the correct option. NOTE { } are added for readability
Which macro variable contains the value of current date
There are 2 datasets sales and income.Sales has a variable pno and income has a variable product.Both are same.The third dataset has to be formed by merging sales and income that has the same products.Which is the correct option?
data y; set x; length a $12; run; In the dataset x there is a variable called a which is numeric and of length 8.What is the result of this data step?
proc format; value num 1-6 = 'High' 6-10= 'Low'; run;
The option to give in order to make SAS to continue processing even if there are any formats that is given in the sas program is not available is
which of the following proc statement can be used to delete all the SAS datasets present in the library MyWork
The option available for displaying proc freq for getting a cross tabulation of the fields product and region is
The output required from proc means is min, max and nmiss.Also the decimal values should be aligned to 2 digits.Which proc statement satisfies the requirement
data count; array x{3} (1,2,3); run; What is the result?
data quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?
proc print data=sales; run; options ? proc means data=sales; run; Which option statement has to be used to reset the page number to 3 for the second report?
data new; x = '1000'; y= x * .10; run; What is the result?
package varargs; public class TestVarargs1 { public static void displayVal(String... str) { for (String strValue : str) { System.out.println("String value............." + strValue); } } public static void displayVal(int... integer) { for (int intValue : integer) { System.out.println("Integer value............." + intValue); } } public static void main(String[] args) { displayVal(); } }
What is the first line in an XML Schema?
What is/are purpose(s) of XML Schema?