in which companies SAS openings are there? List of companies
using SAS technology.

Answer Posted / srinath rao g

Majorly :


HSBC,Fidelity,ICICI ,(TCS,Accenture)-Clinical, Genpact,
WNS Global Services,IBM,Paraxel,Novarties,Unisys

Minor:

Target,CTS,Dell,Active Cubes,Blue Star,Anz,Symphony

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

do you need to know if there are any missing values? : Sas programming

544


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.

1795


what is enterprise guide? What is the use of it? : Sas programming

533


Where do you use proc means over proc freq?

558


How can I remove header from output data set?

2060






How will you generate test data with no input data?

561


Describe the ways in which you can create macro variables? : sas-macro

574


Approximately what date is represented by the SAS date value of 730?

744


Explain the purpose of retain statement.

601


what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi

631


Given an unsorted data set, how to read the last observation to a new data set?

834


explain the key concept of sas? : Sas-administrator

556


Do you need to know if there are any missing values?

593


Explain the main difference between the sas procedures and functions? : Sas-administrator

537


What is a macro routine?

2101