is QUALCOMM using SAS ?
Answer / anuj singh
QUALCOMM in creating products using the new ARM1136J-S
processor core. "ARM" is used to represent ARM Holdings plc
(LSE: ARM and Nasdaq: ARMHY); its operating company ARM
Limited; and the regional subsidiaries ARM INC.; ARM KK;
ARM Korea Ltd.; ARM Taiwan; ARM France SAS; and ARM China.
| Is This Answer Correct ? | 3 Yes | 2 No |
What is the difference between verification and validation?
What is your weekness? I am confuse what to say about this question. so can u give some answer which can be yur strenght.
List out some key concept of SAS
What is the difference between reading data from an external file and reading data from an existing data set?
/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What is the purpose of the trailing and How would you use them?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
How do you use the do loop if you don’t know how many times you should execute the do loop?
What are the parameters of scan function?
How you can read the variables that you need?
Name few SAS functions?