programming languages Online Quiz - 144
Description: programming languages Online Quiz - 144 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is/are purpose(s) of XML Schema?
What is the first line in an XML Schema?
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(); } }
data new; x = '1000'; y= x * .10; run; What is the result?
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 quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?
data count; array x{3} (1,2,3); run; What is the result?
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
The option available for displaying proc freq for getting a cross tabulation of the fields product and region is
which of the following proc statement can be used to delete all the SAS datasets present in the library MyWork
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
proc format; value num 1-6 = 'High' 6-10= 'Low'; run;
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?
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?
Which macro variable contains the value of current date
The report output should be {x y } {1 2} {2 5} {Total 2} Choose the correct option. NOTE { } are added for readability
The default number of error messages that are displayed in SAS log is
In order to write each input record into the log the option used is
To display all the values of all the variables in the log, the option used is
x=intck('week.4','01JAN2010'd,'01FEB2010'd); What is the value of x ?