aliensbrain
  • Home
  • Study
  • Quizzes
  • 🎤AI Practicefree
  • Notebooks
  • Community
  • Sign in
  • SAS Programming Fundamentals
  • How many observations will be there in the output dataset...
Multiple choice technology programming languages

How many observations will be there in the output dataset person? Data person; infile datalines; input name $ dept $ age; if age le 30; datalines; John Sales 38 Mary Brown Acctng 32 Spielberg Manager 28 ;

  1. 2

  2. 3

  3. 1

  4. 0

Reveal answer Fill a bubble to check yourself
A Correct answer

Keep practicing — related questions

  • data a; do X=1 to 3 ; input ID NAME $ AGE; end; datalines; 01 vivek 22 02 vital 25 03 rajes 20 ; What will ...
  • Data X; do i = 1 to 10; i = i*3; output; end; output; Run; How many observations will be there in Dataset X...
  • How many observations will be there in the output dataset TEMP? Data temp; Set test (firstobs=50 obs=450); ...
  • How many observations will be there in the output dataset TEMP? Data temp; Set test (firstobs=50 obs=450); ...
  • data sw; input name $ gender ; datalines; bary 0 bary 0 celina 1 ; run; data re; input name $ gender salary...
  • Following code is submitted. data temp: do i=1 to 3; do j=1 to 4; salary=salary+300; end; end; run; how man...
  • DATA TEMP; Infile ‘filename’; Input ID $5 @; If ID = ‘RAMES’ then input Y $6 Z $10 @; else ID = ‘VIJAY’ the...
  • Dataset: A SEQID 1 2 Data B; do i =1 to 10; set A; c = _n_; output; end; run; How many observations will be...
Play the full quiz 🎤 Practise this topic out loud
Advertisement
© Aliensbrain | all rights reserved
  • About
  • Contact
  • Terms and Condition
  • Privacy Policy