programming languages Online Quiz - 147
Description: programming languages Online Quiz - 147 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of the following is the correct syntax for suggesting that the JVM performs garbage collection
Which are features every EJB 2.0 container must implement or support? (Answer all that apply)
Which are the features in EJB 2.0?
Whats true for an entity bean provider using container-manaaged persistent relationship?
Whats true about EJB QL queries?
data student; input sno sname $ marks; datalines; 10 suganya 30 20 preethi 40 30 rathna 40 nitya 50 manasa ; run; The output dataset student contains the following records
data flower; Length x $ 5 y $ 11; input x y; datalines; daisyyellow ; run; What is the value of x and y in the output dataset?
data state; input name $ @; if name = 'TN' then input famous $; else input lang $; input capital $; datalines; TN food chennai AP telugu hyderabad ; run; The no of times that the input is done for each iteration
data new(Keep x y); set old; run; What is the result?
proc format; value score. 1-10 = 'High' 11-20 = 'Low' ; run; What is true about this statement?
data str; x='My name is myuri'; a=find(X,'MY','i',-3); run; What is the value of a?