Medical representative interview questions – Part 2

Medical Representative interview questions:

This post is continuation of the MR interview questions part 1. Two types of question asked in mr interview. This post covers basic medical organ systems knowledge required for mr. For getting a better idea for freshers, you should read the both posts before attending an interview.

11) What is the difference between bacteriostatic and bactericidal agent?

Ans) Bacteriostatic agent means it wont allow or prevent the grow of new bacteria, it wont have any effect on already developed bacteria.

Bactericidal agent kills the bacteria.

Related: Clinical trial phases- Overview
medical representative interview

12) What are the organ systems present in our body?

Ans) Circulatory system

Respiratory system

Excretory system

Nervous system

Digestive system

Skeletal system

Muscular system

Reproductive system

13) Explain about circulatory system?

Ans) This is also known as vascular or cardiovascular system. It contains heart, lungs , arteries, veins . This system responsible for providing the oxygen and nutrients to each and every part of the body.

14) Explain about respiratory system?

Ans) It consists of nose, nasal cavity, mouth, Pharynx, larynx, Trachea, Bronchi, bronchioles and lungs. It diffuses oxygen into the blood coming from heart (pulmonary artery) and also removes carbon diaoxide (CO2) from the blood steam.

15) What do you know about excretory system?

Ans) This system eliminates the waste produced in the body. Main organs involved in this system are kidneys, liver, lungs and sweat glands etc.

16) Explain about nervous system?

Ans) This system is responsible for passing the signals (information) between different parts of the body. It consists of brain, spinal cord and complex network of nerves. Nervous system is divided into central and peripheral nervous system.

17) Digestive system:

Ans) This is responsible for digesting the food we take. Gastrointestinal tract contains mouth, oesophagus, stomach, small intestine, large intestine and anus.

18) Skeletal system:

Ans) Main functions of skeletal muscle system is to support, movement and protection of the body. Adult human skeletal system contains 206 bones.

19) Muscular system:

Ans) Muscles are attached to bones, responsible for movement of the body. 3 types of muscle tissues are available i.e skeletal muscle, smooth muscle and cardiac muscle.

20) What is the normal blood pressure and normal fasting sugar level?

Ans) Normal blood pressure is 120/80mmHg.

120 indicates Systolic pressue and 80 diastolic pressure.

Normal fasting sugar level for adult is 70-99 mg/dL.

FYI

Normal heart beats per minute for adults= 60 to 100,

Normal breathing rate per minute for adults= 12 to 20.

Medical representative training courses:

Few training institutes are offering medical representative training courses. Here we mentioned a few institutes. Have a look.

1) Indian Institute of Medical Representative(IIMR) Pvt Ltd.

Institute located in Delhi. It is offering three medical representative courses named a) Certificate in Pharma Management(3 months course) b) Diploma in Pharma management (6 Months course) c) Advance diploma/Post Graduate Programme in Pharma Management(12 months course) . For more details visit IIMR institute website.

2) Correograph Institute:

It is a Kolkata based institute offering 2 months medial representative training course. It also campuses in Asansol(West bangal), Durgapur (West Bengal), Patna (Bihar). For more information you can visit Correograph institute website.

3) Institute of Pharmaceutical &Healthcare Management and research(IPHMR)

It is also offering medical representative training course. Institute is located in Kolkata. For more information visit the IPHMR institute website here.

Please share your opinions below.

Clinical sas programmer interview questions for freshers –Part 3

Clinical sas programmer interview questions for freshers 

This is the continuation of clinical sas programmer interview questions part2.

21) how to assign the title and footnotes for the created report or tables?

Ans: we can create the title and footnotes in SAS using title and footnote statement.

The syntax is as follows,

Title1 “  the demographic results for patient n=20 “ ;

Title are visible at the top of the report or table.

And

Footnote1 “ here we are in this table we are having the 2 dropouts”;

And footnote are visible at the bottom of the report or table.

We will create the 10 title and and 10 footnote at a time in SAS. If we assign the same title or footnote two time in SAS programme it will override to next one and like that output will be create in the report window.

Related: Phases of clinical trials- Overview

22) how to convert the SAS report and output tables into the external files?

Ans: there are many external reporting files are available for submitting the reports and dataset. Which are as follows,

  1. pdf (portable data file)
  2. rtf (rich text file)
  3. txt (text file)
  4. doc (word file)

Many time we want to convert our SAS output report and outputs into this external reporting files. For that within SAS output delivery system (ODS) is the statement available.

For EX:

Suppose, we want to make PDF file output

The syntax is as follows.

Ods pdf file = “path with extension where we want to create the file”;

Proc print data=sashelp.class;

Run;

Ods pdf close;

Whichever program are mentioned within first ods and last ods statement that output will be created in the pdf file.

clinical sas programmer interview questions pharmaclub

23) what is the use of array in SAS programme?

Ans: suppose if we want to do same task repeatedly many time say 20 time. If we are going by traditional way, we want to make programme 20 times. It will take lots of time and hard work. By using array, we will do it by using the single programme. It will reduce time as well as hard work.

i.e by using array we will make the series of observation into single variable.

The syntax of array is as follows,

Array array_name (n) Array_values;

24) suppose we have given the following programme

Libname abcd “path of folder”;

Data abcd.one;

       A=4;

        B=7

        D=a*b;

Run;

What output we will get for variable D?

Ans: In SAS different operators are available for making some expression or calculations.

  1. exponential operator (**) means (^)
  2. subtraction (-)
  3. multiplication (*)
  4. addition (+)
  5. division (/)

Here in our programme it is an exponential operator

Here A =4 and b=7

So we will get

C=a*b=4**7 =16384

We will get this output in the output window.

25) what is the use and difference of drop and keep statement as well as options in SAS?

Ans: the drop and keep options we are using independently in the options statement. As well as in set statement and data step.

The syntax is

Options drop=var_a keep=var_c;  * means we are droping here variable var_a and keeping variable var_c;

Also we can use in data and set statement.

EX.

Data abc (keep=var_a);

                                Set abc1 (drop=var_abc);

Run;

 Now, drop and keep statement we will be use in the data set for dropping and keeping the variables.

Ex.

Data abc ;

Set abcd;

Drop var_1;

Keep var_2;

Run;

26) How to deal with the missing date values in SAS?

Ans: In SAS while working on the data some time we are having some missing date values.

For example:

Data abc;

                                Input date &;

Datalines

21/07/18

;

Here we want this date as in some century.

Date= 21/07/18 here we don’t know this date belongs to which century.

Within SAS we are having yearcutoff option which creates the 100 years’ time span.

The by default yearcutff value is 1920 that is it will create (1920-2019) this 100 years’ time span.

And

Here our data =21/07/18 are come under 2018 century. So this 21/07/2018 will be shown in the output. Like that we are dealing with the missing date values in SAS.

27)  what is the use of proc print procedure?

Ans: this is the procedure in SAS which shows the listing output of the SAS dataset in the output window. Also we can restrict the listing dataset for showing the observations that we don’t want in the output window using obs and firstobs option.

For Ex.

Suppose we are having SAS dataset sys_bp which contain 20 observations

Now we want to show listing output and only first 10 observations.

Data SYS_bp;

             Set SYS_bp2;

Run;

Proc print data=sys_bp firstobs=1 obs=10;

Run;

That is, we will get the listing output for only first 10 variables in the output window.

28) Suppose we are having the SAS dataset

Data ab;

                   Input pid gender $ 6.;

Datalines;

01 Male;

02 Female;

03 Male;

04 Female;

Run;

Now we want to convert this male and female values in binary number 0 and 1.

Write the programme for it?

Ans:

Here for doing this task we want to use here conditional looping or also we will do it by creating our own user defined format. In SAS there are many ways for doing one task or thing differently.

First we will do it using conditional looping

Data ab;

                                Input pid gender $ 6.;

                                If gender=” Male” then sex=1;

                                Else if gender =” female” then sex=0;

Run;

Now we can do it using proc format

First we will create the user defined format

Proc format;

               Value gender$

            “Male” = 1

            “Female”=0

;

Data ab;

                  Input pid gender $ 6. ;

                  Format gender$.;

Datalines;.

01 Male;

02 Female;

03 Male;

04 Female;

Run;

29) what is the SAS standard rule for the naming and assigning length for character and numeric variable in SAS?

Ans: In SAS for each type of variables we are having some SAS standard rules which is as follows

  1. Character variables: this variable contains only A-Z letters, and special characters.

The maximum length of the character variables is 32k means (32767 bytes). For 1-character digit it will take the 1 bytes.

  1. numeric variable: this variable contains the 0-9 digits, E notations etc.

The maximum length of the numeric variable Is 8 bytes which is very huge length lots of numeric values comes under this length.

Also for assigning label length is 256-character long. If it exceeds the 256 character, then SAS programme shows the error in the log window.

30) what is the use of where statement in SAS?

Ans: In practically when we are working in clinical related fields many time we want to subset the dataset or categorise the dataset for doing it where statement is very useful.

To create the subset of the larger dataset where statement is used.

For Ex: Suppose, we are having the demographics data which contains all the demographics information of (n=50) patients. But we want only those patients for the analysis whose age is greater than 18. By using where statement we can do it.

Programme is as follows,

Data abc;

              Set abc1;

              Where age > 18;

Run;

Here we will get new SAS dataset abc which contains all observations for those patients age is greater than 18.

Author: Mayur Kharche (Clinical sas programmer& Biostatistician)

Please share this post and comment your opinion below. If you need any other clinical sas programmer interview questions feel free to drop a comment below.