Free Essay

Sas Certification Sample Test 50

In:

Submitted By xuefeihk
Words 4408
Pages 18
SAS 认证考试样题

1.A raw data file is listed below.
1---+----10---+----20---+--son Frank 01/31/89 daughter June 12-25-87 brother Samuel 01/17/51

The following program is submitted using this file as input: data work.family; infile 'file-specification'; run;

Which INPUT statement correctly reads the values for the variable Birthdate as SAS date values?
a. input b. input c. input d. input relation relation relation relation $ $ $ $ first_name first_name first_name first_name $ $ $ $ birthdate birthdate birthdate birthdate date9.; mmddyy8.; : date9.; : mmddyy8.;

Correct answer: d An informat is used to translate the calendar date to a SAS date value. The date values are in the form of two-digit values for month-day-year, so the MMDDYY8. informat must be used. When using an informat with list input, the colon-format modifier is required to correctly associate the informat with the variable name. You can learn about
• •

informats in Reading Date and Time Values the colon-format modifier in Reading Free-Format Data.

2.A raw data file is listed below.
1---+----10---+----20---+--Jose,47,210 Sue,,108

The following SAS program is submitted using the raw data file above as input: data employeestats; input name $ age weight; run;

The following output is desired: name age weight Jose 47 210 Sue . 108

Which of the following INFILE statements completes the program and accesses the data correctly?
a. infile 'file-specification' pad; b. infile 'file-specification' dsd;
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

c. infile 'file-specification' dlm=','; d. infile 'file-specification' missover;

Correct answer: b The PAD option specifies that SAS pad variable length records with blanks. The MISSOVER option prevents SAS from reading past the end of the line when reading free formatted data. The DLM= option specifies the comma as the delimiter; however, consecutive delimiters are treated as one by default. The DSD option correctly reads the data with commas as delimiters and two consecutive commas indicating a missing value like those in this raw data file. You can learn about
• • •

the PAD option in Reading Raw Data in Fixed Fields the MISSOVER option in Creating Multiple Observations from a Single Record the DLM= option and the DSD option in Reading Free-Format Data.

3.The following program is submitted: data numrecords; infile cards dlm=','; input agent1 $ agent2 $ agent3 $; cards; jones,,brownjones,spencer,brown ; run; What is the value for the variable named Agent2 in the second observation?

a. b. c. d.

brown spencer ' ' (missing character value) There is no value because only one observation is created.

Correct answer: d The CARDS statement enables you to read instream data. Any number of consecutive commas are considered to be a single delimiter as a result of the DLM= option, and the length of each variable defaults to 8 bytes. Therefore, the values jones, brownjon, and spencer are assigned to Agent1, Agent2, and Agent3, respectively, for the first observation. The rest of the data on the record is not read by the INPUT statement and is not output to the data set. You can learn about
• •

the CARDS statement in Creating SAS Data Sets from Raw Data the default length of variables in Reading Free-Format Data.

SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

4.A raw data file is listed below.
1---+----10---+----20---+----30---+----40---+----50 TWOSTORY 1040 2 1SANDERS ROAD $55,850 CONDO 2150 4 2.5JEANS AVENUE $127,150

The following program is submitted using this file as input: data work.houses; infile 'file-specification'; run;

Which one of the following INPUT statements reads the raw data file correctly?
a. input @1 style $8. +1 sqfeet 4. +1 bedrooms 1. @20 baths 3. street 16. @40 price dollar8; input @1 style $8 +1 sqfeet 4. +1 bedrooms 1. @20 baths 3. street $16 @40 price dollar8.; input @1 style $8. +1 sqfeet 4. +1 bedrooms 1. @20 baths 3. street $16. @40 price dollar8.; input @1 style $8. +1 sqfeet 4. +1 bedrooms 1. @20 baths 3 street 16. @40 price dollar8.;

b.

c.

d.

Correct answer: c Formatted input requires periods as part of the informat name. The period is missing from the variables Style and Street in Answer b, the variable Baths in Answer d, and the variable Price in Answer a (which is also missing a dollar sign to read the variable Street as a character value). You can learn about formatted input and informats in Reading Raw Data in Fixed Fields. 5. The following SAS program is submitted at the start of a new SAS session: libname sasdata 'SAS-data-library'; data sasdata.sales; set sasdata.salesdata; profit=expenses-revenues; run;
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

proc print data=sales; run;

The SAS data set Sasdata.Salesdata has ten observations. Which one of the following explains why a report fails to generate? a. The DATA step fails execution. b. The SAS data set Sales does not exist. c. The SAS data set Sales has no observations. d. The PRINT procedure contains a syntax error. Correct answer: b The DATA step creates a permanent SAS data set, Sasdata.Salesdata. The PRINT procedure is printing a temporary SAS data set, Sales, that is stored in the Work library. At the beginning of the SAS session, Work.Sales does not exist. You can learn about
• •

creating permanent data sets with the DATA step in Creating SAS Data Sets from Raw Data temporary data sets in Basic Concepts.

6. Which action assigns a reference named SALES to a permanent SAS data library? a. Issuing the command: libref SALES 'SAS-data-library'

b. c. d.

Issuing the command: Submitting the statement: Submitting the statement:

libname SALES 'SAS-data-library' libref SALES 'SAS-data-library'; libname SALES 'SAS-data-library';

Correct answer: d The LIBNAME statement assigns a reference known as a libref to a permanent SAS data library. The LIBNAME command opens the LIBNAME window. You can learn about the LIBNAME statement in Referencing Files and Setting Options. 7. The following SAS program is submitted: data newstaff; set staff; run;

Which one of the following WHERE statements completes the program and selects only observations with a Hire_date of February 23, 2000?
a. where hire_date='23feb2000'd; b. where hire_date='23feb2000'; c. where hire_date='02/23/2000'd;
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

d. where hire_date='02/23/2000';

Correct answer: a A SAS date constant must take the form of one- or two-digit day, three-digit month, and two- or four-digit year, enclosed in quotation marks and followed by a d ('ddmmmyy'd). You can learn about SAS date constants in Creating SAS Data Sets from Raw Data.

8. Which one of the following SAS date formats displays the SAS date value for January 16, 2002 in the form of 16/01/2002? a. DATE10. b. DDMMYY10. c. WEEKDATE10. d. DDMMYYYY10. Correct answer: b The requested output is in day-month-year order and is 10 bytes long, so DDMMYY10. is the correct format. Although WEEKDATE10. is a valid SAS format, it does not display the SAS date value as shown in the question above. DDMMYYYY10. is not a valid SAS date format, and the DATEw. format cannot accept a length of 10. You can learn about
• •

the DDMMYY10. format in Creating List Reports the WEEKDATE10. format in Reading Date and Time Values.

9. Which one of the following displays the contents of an external file from within a SAS session? a. the LIST procedure b. the PRINT procedure c. the FSLIST procedure d. the VIEWTABLE window Correct answer: c The PRINT procedure and VIEWTABLE window display the values in SAS data sets. The FSLIST procedure displays the values in external files. There is no LIST procedure in SAS. You can learn about


the PRINT procedure in Creating List Reports
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题



the VIEWTABLE window in Referencing Files and Setting Options.

10. The SAS data set Sashelp.Prdsale contains the variables Region and Salary with 4 observations per Region. Sashelp.Prdsale is sorted primarily by Region and within Region by Salary in descending order. The following program is submitted: data one; set sashelp.prdsale; retain temp; by region descending salary; if first.region then do; temp=salary; output; end; if last.region then do; range=salary-temp; output; end; run;

For each region, what is the number of observation(s) written to the output data set? a. 0 b. 1 c. 2 d. 4 Correct answer: c The expression first.region is true once for each region group. The expression last.region is true once for each region group. Therefore, each OUTPUT statement executes once for a total of 2 observations in the output data set. You can learn about the FIRST.variable expression and the OUTPUT statement in Reading SAS Data Sets.

11. The following SAS program is submitted: proc contents data=sasuser.houses; run;

The exhibit below contains partial output produced by the CONTENTS procedure.
Data Set Name Member Type Engine Created 2003 03:09:25 PM Last Modified 2003 03:09:25 PM Protection SASUSER.HOUSES Observations DATA Variables V9 Indexes Tuesday, April 22, Observation Length 56 Tuesday, April 22, Deleted Observations Compressed
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

15 6 0

0 NO

SAS 认证考试样题

Data Set Type Label Residential housing for sale Data Representation WINDOWS_32 Encoding wlatin1 Western (Windows)

Sorted

NO

Which of the following describes the Sasuser.Houses data set? a. The data set is sorted but not indexed. b. The data set is both sorted and indexed. c. The data set is not sorted but is indexed. d. The data set is neither sorted nor indexed. Correct answer: d The exhibit above shows partial output from the CONTENTS procedure, In the top righthand column of the output, you see that Indexes has a value of 0, which indicates that no indexes exist for this data set. Also, Sorted has a value of NO, which indicates that the data is not sorted. You can learn about the CONTENTS procedure in Referencing Files and Setting Options. 12.The following SAS program is submitted: proc sort data=work.test; by fname descending salary; run;

Which one of the following represents how the observations are sorted? a. The data set Work.Test is stored in ascending order by both Fname and Salary values. b. The data set Work.Test is stored in descending order by both Fname and Salary values. c. The data set Work.Test is stored in descending order by Fname and ascending order by Salary values. d. The data set Work.Test is stored in ascending order by Fname and in descending order by Salary values. Correct answer: d The DESCENDING keyword is placed before the variable name it modifies in the BY statement, so the correct description is in descending order by Salary value within ascending Fname values. You can learn about the SORT procedure and the DESCENDING keyword in Creating List Reports. 13.The following SAS program is submitted: data names;
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

title='EDU'; if title='EDU' then Division='Education'; else if title='HR' then Division='Human Resources'; else Division='Unknown'; run;

Which one of the following represents the value of the variable Division in the output data set? a. Educatio b. Education c. Human Re d. Human Resources Correct answer: b The length of the variable Division is set to 9 when the DATA step compiles. Since the value of the variable Title is EDU, the first IF condition is true; therefore, the value of the variable Division is Education. You can learn about
• •

the length of a variable in Understanding DATA Step Processing IF-THEN statements in Creating and Managing Variables.

14.Which one of the following SAS programs creates a variable named City with a value of Chicago? data work.airports; AirportCode='ord'; if AirportCode='ORD' City='Chicago'; run; data work.airports; b. AirportCode='ORD'; if AirportCode='ORD' City='Chicago'; run; data work.airports; c. AirportCode='ORD'; if AirportCode='ORD' then City='Chicago'; run; data work.airports; d. AirportCode='ORD'; if AirportCode='ORD'; then City='Chicago'; run; a.

Correct answer: c The correct syntax for an IF-THEN statement is: IF expression THEN statement; In this example, the variable City is assigned a value of Chicago only if the expression AirportCode='ORD' is true.
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

You can learn about IF-THEN statements in Creating and Managing Variables. 15.The following SAS program is submitted: data work.building; code='DAL523'; code='SANFRAN604'; code='HOUS731'; length code $ 20; run;

Which one of the following is the length of the code variable? a. 6 b. 7 c. 10 d. 20 Correct answer: a The DATA step first goes through a compilation phase, then an execution phase. The length of a variable is set during the compilation phase and is based on the first time the variable is encountered. In this case, the variable code is set to the length of the text string DAL523 which is 6 characters long. The next assignment statements are ignored during compilation. The LENGTH statement is also ignored since the length has already been established, but a note will be written to the log. You can learn about
• •

the compilation phase of the DATA step in Understanding DATA Step Processing the LENGTH statement in Creating and Managing Variables.

16. Which of the following statements creates a numeric variable named IDnumber with a value of 4198?
a. b. c. d. IDnumber=4198; IDnumber='4198'; length IDnumber=8; length IDnumber $ 8;

Correct answer: a The first reference to the SAS variable in the DATA step sets the name, type, and length of the variable in the program data vector (PDV) and in the output SAS data set. The assignment statement IDnumber=4198; is the first reference and creates a numeric variable named IDnumber with a default storage length of 8 bytes. You can learn about


creating variables in the DATA step in Understanding DATA Step Processing
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题



numeric variables in Basic Concepts.

17. The following program is submitted: data fltaten; input jobcode $ salary name $; cards; FLAT1 70000 Bob FLAT2 60000 Joe FLAT3 30000 Ann ; run; data desc; set fltaten; if salary>60000 then description='Over 60'; else description='Under 60'; run; What is value of the variable named description when the value for salary is 30000?

a. b. c. d.

Under 6 Under 60 Over 60 ' ' (missing character value)

Correct answer: a The variable description is being created by the IF-THEN/ELSE statement during compilation. The first occurrence of the variable description is on the IF statement, and since it is assigned the value Over 60, the length of the variable is 7. Therefore, for the salary value of 30000, description has the value of Under 6 (the 0 is truncated.) You can learn about
• •

the compilation phase of the DATA step in Understanding DATA Step Processing IF-THEN/ELSE statements in Creating and Managing Variables.

18. A raw data file is listed below.
1---+----10---+----20---+--10 23 20 15

The following program is submitted: data all_sales; infile 'file-specification'; input receipts; run;

SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

Which statement(s) complete(s) the program and produce(s) a running total of the Receipts variable?
a. total+receipts; total 0; b. sum total; c. total=total+receipts; d. total=sum(total,receipts);

Correct answer: a The SUM function and the assignment statement do not retain values across iterations of the DATA step. The sum statement total+receipts; initializes total to 0, ignores missing values of receipt, retains the value of total from one iteration to the next, and adds the value of receipts to total. You can learn about the sum statement in Creating and Managing Variables. 19.A raw data file is listed below.
1---+----10---+----20---+--1901 2 1905 1 1910 6 1925 1 1941 1

The following SAS program is submitted and references the raw data file above: data money; infile 'file-specification'; input year quantity; total=total+quantity; run; What is the value of total when the data step finishes executing?

a. b. c. d.

0 1 11 . (missing numeric value)

Correct answer: d The variable Total is assigned a missing value during the compilation phase of the DATA step. When the first record is read in, SAS processes: total=.+2; which results in a missing value. Therefore the variable Total remains missing for all observations. You can learn about


the compilation phase of the DATA step in Understanding DATA Step Processing

SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题



using missing values with arithmetic operators in Creating SAS Data Sets from Raw Data.

20.The following program is submitted: data test; average=mean(6,4,.,2); run; What is the value of average?

a. b. c. d.

0 3 4 . (missing numeric value)

Correct answer: c The MEAN function adds all of the non-missing values and divides by the number of non-missing values. In this case, 6 + 4 + 2 divided by 3 is 4. You can learn about the MEAN function in Transforming Data with SAS Functions. 21.The following SAS program is submitted: data work.AreaCodes; Phonenumber=3125551212; Code='('!!substr(Phonenumber,1,3)!!')'; run;

Which one of the following is the value of the variable Code in the output data set? a. ( 3) b. (312) c. 3 d. 312 Correct answer: a An automatic data conversion is performed whenever a numeric variable is used where SAS expects a character value. The numeric variable is written with the BEST12. format and the resulting character value is right-aligned when the conversion occurs. In this example, the value of Phonenumber is converted to character and right-aligned before the SUBSTR function is performed. Since there are only 10 digits in the value of Phonenumber, the right-aligned value begins with two blanks. Therefore the SUBSTR function picks up two blanks and a 3, and uses the BEST12. format to assign that value to Code. Then, the parentheses are concatenated before and after the two blanks and a 3. You can learn about automatic data conversion and the SUBSTR function in Transforming Data with SAS Functions. 22.The following SAS program is submitted: data work.inventory; products=7;
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

do until (products gt 6); products+1; end; run;

Which one of the following is the value of the variable products in the output data set? a. 5 b. 6 c. 7 d. 8 Correct answer: d A DO UNTIL loop always executes at least once because the condition is not evaluated until the bottom of the loop. In the SAS program above, the value of Products is incremented from 7 to 8 on the first iteration of the DO UNTIL loop, before the condition is checked. Therefore the value of Products is 8. You can learn about DO UNTIL loops in Generating Data with DO Loops. 23.The following program is submitted: data work.test; set work.staff (keep=salary1 salary2 salary3); run;

Which ARRAY statement completes the program and creates new variables?
a. b. c. d. array array array array salary{3}; new_salary{3}; salary{3} salary1-salary3; new_salary{3} salary1-salary3;

Correct answer: b Although each of the ARRAY statements listed above is a valid statement, only Answer B creates new variables named new_salary1, new_salary2 and new_salary3. Answer C and Answer D both create an array that groups the existing data set variables salary1, salary2, and salary3. Since the array in Answer A is named salary, it also uses the existing data set variables. You can learn about creating new variables in an ARRAY statement in Processing Variables with Arrays. 24.Which of the following permanently associates a format with a variable? a. the FORMAT procedure b. a FORMAT statement in a DATA step c. an INPUT function with format modifiers d. an INPUT statement with formatted style input Correct answer: b
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

To permanently associate a format with a variable, you use the FORMAT statement in a DATA step. You can use the FORMAT procedure to create a user-defined format. You use the INPUT function to convert character data values to numeric values with an informat. You use the INPUT statement to read data into a data set with an informat. You can learn about
• • • • •

permanently assigning a format to a variable in Creating and Managing Variables the FORMAT statement in Creating List Reports the FORMAT procedure in Creating and Applying User-Defined Formats the INPUT function in Transforming Data with SAS Functions the INPUT statement in Reading Raw Data in Fixed Fields.

25.The following report is generated:
Style of homes Price CONDO RANCH SPLIT TWOSTORY n Asking

4 4 3 4

$99,313 $68,575 $77,983 $83,825

Which of the following steps created the report? proc freq data=sasuser.houses; tables style price /nocum; format price dollar10.; label style="Style of homes" price="Asking price"; run; proc print data=sasuser.houses; b. class style; var price; table style,n price*mean*f=dollar10.; label style="Style of homes" price="Asking price"; run; proc means data=sasuser.houses n mean; c. class style; var price; format price dollar10.; label style="Style of homes" price="Asking price"; run; proc report data=sasuser.houses nowd headline; d. column style n price; define style / group "Style of homes"; define price / mean format=dollar8. "Asking price"; run; a.

SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

Correct answer: d The FREQ procedure cannot create the average asking price. The CLASS statement and the VAR statement are not valid for use with the PRINT procedure. The MEANS procedure output would have both the N statistic and the N Obs statistic since a CLASS statement is used. The REPORT procedure produced the report. You can learn about
• • • •

the FREQ procedure in Producing Descriptive Statistics the PRINT procedure in Creating List Reports the MEANS procedure in Producing Descriptive Statistics the REPORT procedure in Creating Enhanced List and Summary Reports.

26.A SAS report currently flows over two pages because it is too long to fit within the specified display dimension. Which one of the following actions would change the display dimension so that the report fits on one page? a. Increase the value of the LINENO option. b. Decrease the value of the PAGENO option. c. Decrease the value of the LINESIZE option. d. Increase the value of the PAGESIZE option. Correct answer: d The PAGESIZE= SAS system option controls the number of lines that compose a page of SAS procedure output. By increasing the number of lines available per page, the report might fit on one page. You can learn about the PAGESIZE= option in Referencing Files and Setting Options. 27.Which one of the following SAS REPORT procedure options controls how column headings are displayed over multiple lines? a. SPACE= b. SPLIT= c. LABEL= d. BREAK= Correct answer: b The SPLIT= option specifies how to split column headings. The SPACE=, LABEL= and BREAK= options are not valid options in PROC REPORT. You can learn about the SPLIT= option for the REPORT procedure in Creating Enhanced List and Summary Reports.

SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

28.The following SAS program is submitted: ods html file='newfile.html'; proc print data=sasuser.houses; run; proc means data=sasuser.houses; run; proc freq data=sasuser.shoes; run; ods html close; proc print data=sasuser.shoes; run;

How many HTML files are created? a. 1 b. 2 c. 3 d. 4 Correct answer: a By default, one HTML file is created for each FILE= option or BODY= option in the ODS HTML statement. The ODS HTML CLOSE statement closes the open HTML file and ends the output capture. The Newfile.html file contains the output from the PRINT, MEANS, and FREQ procedures. You can learn about the ODS HTML statement in Producing HTML Output. 29.A frequency report of the variable Jobcode in the Work.Actors data set is listed below. Jobcode Frequency Frequency Percent Actor I 2 Actor II 2 Actor III 2 Percent Cumulative Cumulative
33.33 33.33 33.33 2 4 6 33.33 66.67 100.00

Frequency Missing = 1 The following SAS program is submitted: data work.joblevels; set work.actors; if jobcode in ('Actor I', 'Actor II') then joblevel='Beginner'; if jobcode='Actor III' then joblevel='Advanced'; else joblevel='Unknown'; run;

Which of the following represents the possible values for the variable joblevel in the Work.Joblevels data set? a. Advanced and Unknown only
SAS 中文论坛网站 http://www.mysas.net SAS 中文论坛 FTP 站 ftp://mysas.vicp.net

SAS 认证考试样题

b. Beginner and Advanced only c. Beginner, Advanced, and Unknown d. ' ' (missing character value) Correct answer: a The DATA step will continue to process those observations that satisfy the condition in the first IF statement Although Joblevel might be set to Beginner for one or more observations, the condition on the second IF statement will evaluate as false, and the ELSE statement will execute and overwrite the value of Joblevel as Unknown. You can learn about
• •

the IF statement in Creating SAS Data Sets from Raw Data the ELSE statement in Creating and Managing Variables.

30.The descriptor and data portions of the Work.Salaries data set are shown below.
Variable name salary status Type Char Char Char Len 8 8 8 Pos 0 16 8

name Liz Herman Marty

status S S S

salary 15,600 26,700 35,000

The following SAS program is submitted: proc print data=work.salaries; where salary

Similar Documents

Free Essay

Gsgsgs

...IS : 28 - 1985 ( Reaffirmed 2001 ) Indian Standard SPECIFICATION FOR PHOSPHOR BRONZE INGOTS AND CASTINGS ( Fourth Rer+siorz ) Second Reprint May 1997 IJDC 669.35’779-412 0 Copy-iglrt 1986 BUREAZJ OF INDIAN STANDARDS MANAK BIIAVAN, 9 BAHADUR SHAH ZAFAR MARG NEW DELHI 110002 Gr 3 August 1986 IS:28 -1985 Indian Standard SPECIFICATION FOR PHOSPHOR BRONZE INGOTS AND CASTINGS ( Fourth Revision ) Copper and Copper Alloys Sectional Committee, Cha:rman DR L. R. VAIDYANATE Indian Copper Representing Development SMDC 11 Centre, Calcutta h4tmbrrJ SHSI D. DE SA~KAR ( Altrrnatc to Dr L. R. Vaidyanath ) Bralco Metal Industries Pvt Ltd. Bombay SHRI DEV KUYAR AWAKWAL SHHI RAJ KU~AR AWARWAL ( Altnnute ) Ministry of Defence ( DC1 )/DPI (N) SARI BACEITAR SIKWH SERI M. R. ACHARYA (Alternate) National Test House, Calcutta SH~I K. L. BARUI SHRI H. P. DUBEY ( Altnnatr ) Indian Telephone Industries Ltd. Bangalore SHRI J. NAOESH BRATT SEW A. R. SUKUIUARAN ( Akmatr ) Hindustan Cables Ltd, Burdwan SERIC.D. BHATTAOHAR~YA SHRX M. JHA ( Altcmat~ ) Raahtriya Metal Industries Ltd, Bombay SERI BALK~~HNA BINANI DB V. S. PATKAR ( Aftematr ) Hindustan Copper Ltd, Calcutta DR S. K. BISWAS Alcobex Metalr (P) Ltd, Jodhpur PROP A. D. BOHR A SHRI S.D.NARKEADE (Afternutr) NE0 Pipes & Tube Co Ltd, Calcutta SERI P. R. DHAR SHRl A. K. MITRA ( Alt#~t# ) Ministry of Finance ( India Government Mint ), Sn~r H. N. GUPTA Calcutta Bharat Heavy Electricals Ltd SHRI...

Words: 3486 - Pages: 14

Premium Essay

Financial Statement Fraud

...Financial Statement Fraud ACCT 710: Assignment 6-2 Shannon Baxley David Welch September 24, 2011 Table of Contents Abstract………………………………………………………………………………………3 Introduction…………………………………………………………………………………..3 Literature Reviews……………………………………………………………………………5 Conclusion…………………………………………………………………………………..16 References…………………………………………………………………………………...18 Abstract This paper describes financial statement fraud (FSF) and how it may occur within companies. The reason of this study was to research FSF detection and prevention. Research was also done to determine any influences that SAS (Statement on Auditing Standards) No. 82 and SAS No. 99 had on audit programs and the analysis from external auditors. Thirteen scholarly journals were reviewed in order to analyze SAS No. 82 and No. 99 and to show ways to detect and prevent fraud. Results found that managers and/or auditors can create fraud intentionally and unintentionally. There are ways to prevent fraud and educating managers and/or auditors is a good way to make sure fraud does not occur. Introduction Financial statement fraud (FSF) involves the premeditated issuing of phony information on a financial statement (financial statement fraud, 2011). FSF occurs when a company exaggerates assets or revenue, or when it devalues liabilities and expenses (financial statement fraud, 2011). The American Institute of Certified Public Accountants or AICPA defines fraudulent financial reporting as “intentional misstatements or omissions...

Words: 5162 - Pages: 21

Free Essay

Burnsmr7E Tif Ch02

...C) QRCA (Q Research Council & Association) D) AAPOR (American Association for Public Opinion Research) E) CASRO (Council of American Survey Research Organizations) Answer: B Difficulty: Easy Objective: 1 Question type: Concept Course LO: Define the nature and role of marketing research 2) The marketing research industry has a certification program for marketing researchers, and this certification program is hosted by: A) American Marketing Association. B) Research Certification Board. C) Marketing Research Corporation. D) Marketing Research Association. E) Association of Specialized and Professional Accreditors. Answer: D Difficulty: Easy Objective: 1 Question type: Concept Course LO: Define the nature and role of marketing research 3) What did the Marketing Research Association do in 2005 that changed the credentialing of marketing research professionals? A) They brought a lawsuit against several practitioners who were not qualified to practice marketing research. B) They required all practitioners to take a test on qualitative research methods. C) They created the Professional Researcher Certification program. D) They required all AACSB accredited colleges to offer a course in marketing research. E) Nothing has been done; one of the problems the industry has is that there is no credentialing program. Answer: C Difficulty: Moderate Objective: 1 Question type: Concept Course LO: Define the nature and role of marketing research ...

Words: 5905 - Pages: 24

Premium Essay

Mba Project

...1. INTRODUCTION 1.1 INTRODUCTION TO THE STUDY INTRODUCTION Employee or labour welfare is a comprehensive term including various services, benefits and facilities offered to employees by the employer. Through such generous fringe benefits the employer makes life worth living for employees. The welfare amenities are extended in addition to normal wages and other economic rewards available to employees as per the legal provisions. According to Dr. Parandikar, “Labour welfare work is work for improving the health, safety and general well being and the industrial efficiency of the workers beyond the minimum standard laid down by labour legislation” Welfare measures may also be provided by the government, trade unions and non-government agencies in addition the employer. The basic purpose of labour welfare is to enrich the life of employees and keep them happy and contented. Welfare measures may be both statutory and voluntary. Labour laws require the employer to extend certain benefits to employees in addition to wages. Voluntary benefits are the result of employer’s generosity, enlightenment and philanthropic feelings. MEANING OF EMPLOYEE WELFARE According to the Oxford dictionary employee welfare or labour welfare means “the efforts to make life worth living for workmen”. According to the Labour Investigation Committee (1946), employee welfare means “anything done for intellection physical, moral and economic betterment of the workers...

Words: 7753 - Pages: 32

Premium Essay

World Health Alternatives, Inc. Fraud

...ACC 655 – Advanced Auditing Term Paper: World Health Alternatives, INC – Fraud Brian O’Rourke, Katharina Ryska 10/14/2013 Introduction Scandals like Enron, Worldcom and Tyco have taught society about CEO’s fudging financial statements in order to make some extra money. With millions of dollars lost for the shareholders, members of the management engaging in fraudulent activity face high penalties. However, these penalties do not stop executives from trying to scam the system. World Health Alternatives, Inc got negative press following a big fraud investigation. The company with its number of wholly owned subsidiaries provides “medical, professional, and administrative staffing services to the healthcare industry in the United States.” By comprising nurse and physician staffing one would expect the company to have integrity. This paper is going to look at the fraud case, auditor’s responsibility, financial statements as well as the charges against the auditor. Furthermore, this paper is trying to see if the SEC allegations were warranted against the auditor. Overview of the Case According to the SEC, World Health Altneratives, Inc (World Health) engaged in fraudulent and improper conduct from at least May 2003 – August 2005. They manipulated accounting entries by understating expenses and liabilities, which made World Health look more financially sound. According to the SEC Website, “every annual and quarterly report that World Health filed with the Commission contained...

Words: 2938 - Pages: 12

Free Essay

Hrm System of Garments Industry

...Chapter 1 Introduction Origin of the report After Liberation when country's traditional items of export could not yield expected result, in late 70s the government and a section of entrepreneurs - young, educated and dynamic, began to emphasize on development of non-traditional items of export. By the year 1983, Ready-Made-Garment (RMG) emerged to be a non-traditional export oriented sector most promising in the socioeconomic context of the country. By that time, those entrepreneurs felt a necessity of sectoral trade body, non-government in nature, free from traditional bureaucracy, to help the RMG sector and to boost up the foreign exchange earnings of the country urgently needed at that time. Responding to that necessity, 19 (Nineteen) RMG manufacturers and exporters joined together and by their untiring efforts got Bangladesh Garment Manufacturers and Exporters Association (BGMEA) incorporated on February 20, 1983, Today 2400 small and medium scale privately owned garment factories, registered with BGMEA, spread in cluster over the EPZ and urban areas of Dhaka, Chittagong and Khulna, are manufacturing ready-made garments of varied specifications as per size and designs stipulated by the overseas buyers. Starting with a few items, the entrepreneurs in the RMG sector have widely diversified the product base ranging from ordinary shirt, T-shirt, trousers, shorts, pajama, ladie's wear and children's wear to sophisticated high value items like quality suits, branded jeans...

Words: 11866 - Pages: 48

Premium Essay

Thesis

...FAR EASTERN UNIVERSITY Nicanor Reyes St., Sampaloc Manila Job Opportunities for Internal Auditing Graduates A Research Paper Presented to the Institute of Accounts, Business & Finance Proponents: Ballan, Mary Jane M. Bautista, Dennis V. Burce, Jayraldine D. Culaton, Mary Joy C. Dacillo, Jessmin P. (Leader) Maquinano, Jem Karol R. Ortiz, Maribel G. Quiros, Marco M. Reyes, Angela M. Palencia, Alfred Foster M. Pascual, Karl Alexis M. Villanueva, Christian Paul M. In Partial Fulfillment Of the Requirement for the Degree of Bachelor of Science in Business Administration Major in Internal Auditing Dr. FE R. OCHOTORENA, CPA Adviser First Semester Academic Year 2014-2015 Job Opportunities for Internal Auditing Graduates AIA0807/Group 3 Abstract Internal auditing helps the organization to achieve its future goals by improving the business process of the organizations. The purpose of this study is to determine the job opportunities of Internal Auditing graduates. This study used the descriptive method of research and used non-probability sampling technique specifically stratified random sampling. This study revealed that job opportunities for the Internal Auditing graduates are rising in foreign companies particularly for the positions of Junior Internal Auditors given that Internal Auditing is designed to add value by helping organizations achieve its objectives. We conclude that many companies are already appreciating the importance of internal auditing function...

Words: 4735 - Pages: 19

Premium Essay

Moort Arbition

.... . . . . . . . . . . . Case 1135: CISG [1]; [6] - Australia: Supreme Court of Australia, Attorney-general of Botswana -v- Aussie Diamond Products Pty Ltd [No. 3] [2010] WASC 141 (23 June 2010) . . . . Case 1136: CISG 8 - Australia: Supreme Court of New South Wales, Franklins Pty Ltd v Metcash Trading Ltd [2009] NSWCA 407 (16 December 2009) . . . . . . . . . . . . . . . . . . . . . . . . . . . Case 1137: CISG 7; 8; 9 [relevant but court considered domestic Australian law] - Australia: Supreme Court of South Australia, Vetreria Etrusca Srl v Kingston Estate Wines Pty Ltd [2008] SADC 102 (14 March 2008) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Case 1138: CISG 35; 38; 39; 50; 46; 78; Limitation Convention 3; 8 - Serbia: Foreign Trade Court of...

Words: 5224 - Pages: 21

Premium Essay

Opeartions Management

...Chapter 1-17 Operations Management Roberta Russell & Bernard W. Taylor, III Organization of This Text: Part I – Operations Management Intro. to Operations and Supply Chain Management: Quality Management: Statistical Quality Control: Product Design: Service Design: Processes and Technology: Facilities: Human Resources: Project Management: Chapter 1 (Slide 5) Chapter 2 (Slide 67) Chapter 3 (Slide 120) Chapter 4 (Slide 186) Chapter 5 (Slide 231) Chapter 6 (Slide 276) Chapter 7 (Slide 321) Chapter 8 (Slide 402) Chapter 9 (Slide 450) 1 -2 Organization of This Text: Part II – Supply Chain Management Supply Chain Strategy and Design: Global Supply Chain Procurement and Distribution: Forecasting: Inventory Management: Sales and Operations Planning: Resource Planning: Lean Systems: Scheduling: Chapter 10 (Slide 507) Chapter 11 (Slide 534) Chapter 12 (Slide 575) Chapter 13 (Slide 641) Chapter 14 (Slide 703) Chapter 15 (Slide 767) Chapter 16 (Slide 827) Chapter 17 (Slide 878) 1 -3 Learning Objectives of this Course Gain an appreciation of strategic importance of operations and supply chain management in a global business environment Understand how operations relates to other business functions Develop a working knowledge of concepts and methods related to designing and managing operations and supply chains Develop a skill set for quality and process improvement 1 -4 Chapter 1 Introduction to Operations and Supply Chain Management Operations Management Roberta...

Words: 23545 - Pages: 95

Free Essay

Nursing Ethics

...Page 1 of 14 NURSING LAW AND ETHICS JURIS OUTLINE ( Atty. Aleth Joyce T. Cubacub) Chapter 1- Overview Nursing Profession - Process of constant change - Etymological perspective it comes from the Latin word meaning NUTRIX or nourish Nursing - Art, a science and a social science - Being an art, deals with skills that require dexterity and proficiency - Science : systematic and well-defined body of knowledge which utilizes scientific methods and procedures in the application of nursing process - Social Science: primordial interest is man whether well or sick - It is involved in total quality patient care when giving the patient prescribed medication or treatments - Primary focus is the individual’s response to health related problems FOUR FUNDAMENTAL RESPONSIBILITIES OF NURSING a. Promote health b. Prevent illness c. Restore health and d. To alleviate sufferings - Noble goal to promote the harmonious or symphonic interaction between men and their environment CHARACTERISTICS OF NURSING a. Nursing is caring b. Involves close, personal contact with the recipient of care; c. Concerned services ( humans as physiological, psychological and sociological organisms) d. Committed to personalized services regardless of color, creed or social or economic status e. Committed to promoting individual, family , community and national health goals f. Committed to involvement in ethical, legal and political issues in the delivery of health care NURSING PROCESS - Use nurse process as a tool in nursing...

Words: 5411 - Pages: 22

Free Essay

Dell 1435c

...Dell™ PowerEdge™ SC1435 Systems Hardware Owner’s Manual w w w. d e l l . c o m | s u p p o r t . d e l l . c o m Downloaded from www.Manualslib.com manuals search engine Notes, Notices, and Cautions NOTE: A NOTE indicates important information that helps you make better use of your computer. NOTICE: A NOTICE indicates either potential damage to hardware or loss of data and tells you how to avoid the problem. CAUTION: A CAUTION indicates a potential for property damage, personal injury, or death. ____________________ Information in this document is subject to change without notice. © 2006 Dell Inc. All rights reserved. Reproduction in any manner whatsoever without the written permission of Dell Inc. is strictly forbidden. Trademarks used in this text: Dell, the DELL logo, Inspiron, Dell Precision, Dimension, OptiPlex, Latitude, PowerConnect, PowerEdge, PowerVault, PowerApp, Dell OpenManage, and Dell XPS are trademarks of Dell Inc.; Microsoft, Windows, MS-DOS, and Windows Server are registered trademarks of Microsoft Corporation; AMD and AMD PowerNow! are trademarks of Advanced Micro Devices, Inc.; EMC is a registered trademark of EMC Corporation. Other trademarks and trade names may be used in this document to refer to either the entities claiming the marks and names or their products. Dell Inc. disclaims any proprietary interest in trademarks and trade names other than its own. Model SVUA August 2006 P/N HJ362 Rev. A00 Downloaded from www.Manualslib...

Words: 32860 - Pages: 132

Free Essay

Mil Standards - Electronics

...develop and use a performance specification or non-Government standard, a detail specification may be developed and used, but only as a last resort. 4. There are two primary objectives for the changes to this standard. First, for the DoD to meet its military needs in the current economic and political environment, it must increase access to an expanded industrial base that can meet defense needs at lower costs with state-of-the-art commercial technology. The changes herein will move the DoD to greater use of performance-based specifications and commercial-type specifications and standards. The second objective is to ensure that the contents of specifications cover only the requirements for a product (preferably in terms of performance) and the tests to verify that those requirements are met. Specifications...

Words: 33441 - Pages: 134

Free Essay

The Effects of Parental Social-Economic Status on the Academic Performance of Secondary School Students

...PARENTS’ SOCIO-ECONOMIC STATUS AND STUDENTS’ ACADEMIC PERFORMANCE. CHAPTER ONE Background to the Study It is an undebatable fact that the home is the fulcrum around which the early years of a child revolves. The central figures are the parents. While child-bearing and child-rearing cannot be divorced one from the other, the type of child-rearing practiced in a family has a tremendous impact on the entire life of the child including his or her academic life. Generally, the social climate or environment in which an individual finds him or her self to a large extent determines his or her behaviour and personality development. Consequently, parental guidance and discipline usually influence the behaviour of the children and at the apex of this parental influence is the mother. According to Olayinka and Omoegun (2001), the word "family" has its origin in the Latin word which could be translated to mean "domestic group". A domestic group is a group of people who habitually share a common dwelling and common food supply. According to Murdoch (1965) family is a social group characterized by common residence, economic, cooperation and reproduction; it includes adults of both sexes, at least two of who maintains a socially approved sexual relationship and one more children, own or adopted by the sexually cohabiting adult. The family provides for the physical maintenance of the child, offers him his first and most continuing social contracts, and gives him affection and other emotional...

Words: 8319 - Pages: 34

Premium Essay

No File Was Uploaded

...Notes I.28 Session – I important that they would affect the auditor’s report if not resolved. They include the following: • Matters that are significant and involve issues regarding the appropriate selection, application and consistency of accounting principles pertaining to the financial statements, including related disclosures. Such matters often relate to accounting for complex or unusual transactions or to estimates and uncertainties and any applicable management assumptions. Results of auditing procedures that indicate the financial statements or disclosures could be materially misstated or that the auditing procedures need to be significantly modified. Circumstances that cause the auditor significant difficulty in applying auditing procedures he or she considers necessary. Other findings that could result in modification of the auditor’s report. Compliance of Auditing Standards and Audit Documentation – a must for all practice units satisfy any applicable legal or regulatory requirements for records retention. Internationally the norm is assemble the final audit file and submit it for archiving within 60 days from the date of our audit report. The PCAOB standard has shortened this period to 45 days. 51 The auditor would also need to adopt procedures that enable him or her to gain access to the documentation throughout that period. One way for auditors to accomplish this is by creating a policy to maintain electronic documentation. One needs to bear in mind...

Words: 4887 - Pages: 20

Premium Essay

Aadfef

...Journal of Operations Management 24 (2006) 440–457 www.elsevier.com/locate/jom Disentangling leanness and agility: An empirical investigation Ram Narasimhan a,*, Morgan Swink a, Soo Wook Kim b,1 a Department of Marketing and Supply Chain Management, Eli Broad College of Business, Michigan State University, East Lansing, MI 48824, United States b College of Business Administration, Seoul National University, San 56-1, Sillim-dong, Kwanak-gu, Seoul, Korea Received 20 May 2004; received in revised form 3 October 2005; accepted 1 November 2005 Available online 19 January 2006 Abstract Manufacturing plant managers have sought performance improvements by adhering to the guiding principles of leanness and agility. Lean manufacturing and agile manufacturing paradigms have also received considerable attention in operations management literature. However, paradoxically, the extant literature is lacking in clarity and fails to delineate with sufficient precision how and why leanness and agility differ. Given the resource constraints within which most manufacturing firms have to operate today, it is useful, if not critical, to develop a good understanding of how these paradigms differ and what their constituent dimensions are. Such an understanding is also essential for developing and testing theories relating to leanness and agility. Through a literature review we discuss leanness and agility in two ways: (1) as manufacturing paradigms and (2) as performance capabilities. Our empirical...

Words: 11727 - Pages: 47