Sunday, 20 January 2013

Signetsoft, The best place to learn SAS, CR, CDM, PV, EXCEL, VBA






Hi,

I am Arvind Dama. I hope u remembered me. Previously I worked as SAS trainer at GITS (malleswaram), UREACH (koramangal), and EMATIC (btm). 

As you know already, we started SIGNET INFO SOLUTIONS with Software Training and Consulting Services. With lots of support from students and friends, very soon SIGNET became one of the best institutes in the IT market. On behalf of the same, we, the SIGNET team is very much thankful to one and all.

It is our pleasure to announce you that SIGNET Info Solutions (is now SIGNETSOFT) is moved to a new IT office premises in Kundanahalli (ITPL main road) as we are planning to start SOFTWARE DEVELOPMENT. 

And SIGNETSOFT is now done with its Private Limited registration process.

And very soon we are going to start SAS, EXCEL projects (Analytics), and CDM projects as well.

And right now we are providing the training with placement assistance for the following courses:

SAS
SAS BI
Advanced Excel
VBA

Clinical Research
Clinical Data Management
Pharmacovigilance
Oracle Clinical
Medical Writing

Protocol Testing (Networking)

SAS ONLINE TRAINING 


Please refer SIGNET to your friends, if anyone is looking for the above courses.

Visit us  :

Email:  info@signetsoft.com

website:  www.signetsoft.com

mobile: 9844559330

Phone: 080-6547 2060

 

Once again, many thanks to everybody, who supported us in this regards.



 

Signetsoft Office Premises:

















                                                                          

Thursday, 17 January 2013

Students are you ready to get SAS certified?




Students are you ready to get SAS certified?

SAS has a long history of supporting the academic community in a variety of ways and that certainly includes support from the SAS Global Certification  program.  Did you know that students, faculty and staff of academic institutions can qualify for a 50% discount when taking a SAS exam?  When you are ready to take your exam attempt, you can submit a request for an Academic Discount by following the directions at http://support.sas.com/certify/discounts/detail.html#acad.  Just make sure you receive approval for the discount before you register to take the exam. Why do we offer a discount to students?  Simple – we see it as a win-win situation.  Students can attempt a SAS exam at a lower price than the general public.  And when students go through the process of preparing for a SAS exam, SAS benefits by having a more knowledgeable group of future SAS users. Most new SAS Global Certification exam candidates begin with the Base Programming for SAS 9  exam. Successful candidates will demonstrate the ability to:
  • import and export raw data files
  • manipulate and transform data
  • combine SAS data sets
  • create basic detail and summary reports using SAS procedures
  • identify and correct data syntax and programming logic errors
If you pass the exam, you are awarded the credential of SAS Certified Base Programmer for SAS 9.  Many university students have earned this credential but until just recently it was rare for a High School student to even attempt this exam.  That is changing as we have seen software programming skills become more and more advanced at younger levels and the number of High Schools offering curriculums in SAS have increased. It’s a great time to focus on SAS and grow with us.  We have awarded over 49,000 SAS credentials to people all over the world and the program is still expanding rapidly.  This is a reflection of the global demand for SAS professionals – just go to any major job board and search for SAS Programmer.  The opportunities are limited only by your imagination.

(courtesy: sasblogs)


Pattern:

No. of Qstns: 70 
Duration: 120 minutes
To qualify : 65%  (Minimum 46 answers out of 70 should be correct )
No negative marks

For training and material related queries 
contact arvind.dama@gmail.com 

ALL THE BEST !!!
 
 
 

Wednesday, 12 September 2012

SAS Interview Qstns and Topics List from Arvind Dama

SAS Interview Qstns and Topics List:



READING RAW DATA:
  1. How many data types we have in SAS?
  2. What are the limitations for memory allocation for SAS variables
  3. What is max no rows and cols can be handled in SAS?
  4. What is storage capability of SAS?
  5. Why do we use Infile and Input Statements in SAS?
  6. What are the SAS naming rules?
  7. What is the difference between Rename and Label ?
  8. Single @ vs double @@
  9. Missover Vs truncover
  10. Dlm and dsd
  11. How to handle huge data
  12. Necessity of informats
  13. : and & modifiers.
  14. Purpose of infile and input statements
  15. Why do we Formats and Informats in SAS
FUNCTIONS:
  1. Give me some names of function you know (eg. Intck, intnx, weekday, substr, scan)
  2. Length Vs lengthc functions
  3. Cat vs catx functions
  4. Retain statement
  5. Do-Loop
  6. Arrays
  7. What is the output for the following code:
Data;
X=month(today());    
Format x date9.;
Run;
          8.      x= ‘abc’;    x = ‘abcd’;
          9.      y = 24;     y = 2456;
         10.  x = 123456789;     y=substr(x,3,4);
         11.  Intck() Vs intnx()
         12.  Index() vs scan()
         13.  List of system options.
         14.  Significance of 1920 and significance of 1st jan 1960;
         15.  What is the diff b/w arithmetic summation and sum function?
         16.  Put() and input() functions
         17.  INFILE & INPUT statements Vs FILE & PUT statements
         18.  Mod(), round() and int()
         19.  Length(), lengthc(), substr(), scan(), index(), compress(), compbl().
         20.  Day(), month(), year(), MDY(), datejul(), intck() and intnx().
         21.  If-then-else.
         22.  Do-while Vs Do-until
         23.  Label statement.
         24.  IF vs WHERE statements
         25.  LENGTH statement


PROCEDURES: 
  1. Proc Sort – nodup/nodupkey/dupout/out=
  2. Proc Report – Define/Group/Order/Break/Rbreak/Compute
  3. Proc Tabulate (Page, Row, Col), how to add statistics to Tabulate Report
  4. Proc transpose – By / Var / ID statements
  5. Can u change values ‘F’ to ‘M’ and ‘M’ to ‘F’ in sashelp.class table?
  6. Proc Means – By / Class /Output Out= /  
  7. How _type_ and _Freq_ are calculated?
  8. Proc Datasets
  9. Proc Compare
  10. Proc Format
  11. Proc Printto
ODS:
  1. ODS TRACE ON/OFF
  2. ODS SELECT / EXCLUDE
  3. How to create html/rtf/pdf outputs.
  4. How can you apply style attributes to different procs like PRINT, REPORT, Tabulate …
COMBINING DATASETS:
  1. Set ds1 dsn2; Vs Set dsn1; Set dsn2;
  2. Proc Append – Force option
  3. Append Vs Stacking
  4. How to update an existing dataset with another SAS dataset using DATA step?
  5. Interleaving Vs stacking
  6. Merge with BY Vs Merge without BY statements
  7. Merge with IN = option
  8. First.var and Last.var —– Purpose?
  9. Merge Vs Joins
SAS/SQL:
  1. Syntax for a) CREATE table b) INSERT c) INNER joins
  2. How to Sort datasets
  3. How to remove duplicates
  4. How to count no. of observations
  5. How to get employee details with highest salary
  6. How to get employee details with second highest salary
  7. What is union and union corr ?
  8. What is self  join
  9. How to create a view
  10. Table Vs View
  11. What is Cartesian product?
  12. Group By / Order By / Having
  13. Tables VS Views
SAS/ACCESS:
  1. Libname
  2. SQL Passthrough
  3. DBload process
  4. Libname Vs SQL Pass through
  5. DBlaod Vs (Libname & SQL Passthrough)
  6. Syntax for libname
  7. Syntax for sql pass through
  8. Syntax for dbload.
MACROS:
  1. Ways to create macro variables
  2. Data variable vs macro variables
  3. Data types in macros.
  4. Length range for numeric, character, macro variable.
  5. Purpose of %eval and %syseval
  6. Local macro variable Vs Global macro variable.
  7. User macro var Vs System macro var.
  8. Creating variables using INTO class (by default global)
  9. %local and % global
  10. Indirect reference in macros
  11. Nested macros
  12. %sysfunc
  13. Quoting functions – %str, %nrstr
  14. Call symput (executed by sas processor)
  15. Symget Function
  16. How to debug the macros?
  17. Difference between MLOGIC and Symbolgen?
  18. What is Symbol table?
  19. How to create global macro variables inside a macro?
  20. How to create local macro variables using Call Symput?