Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Test Inputs Write a function called Checkinputs which checks if three inputs parameters are the correct data types. The first, second, and third input variables

image text in transcribed

Test Inputs Write a function called Checkinputs which checks if three inputs parameters are the correct data types. The first, second, and third input variables must be a string, numeric, and logical data type, respectively. The output of Checklnputs should be a logical row array, errorCode with 4 values. If all the tests pass,then errorCode should consist of only false values. If the 1st input parameter is not a string, the 1st array element in errorCode is set true. If the 2nd input parameter is not a numeric, the 2nd array element in errorCode is set true. If the 3rd input parameter is not a logical variable, the 3rd array element in errorCode is set true. The 4th array element in errorCode is set true if three input parameters are not present. Ex >> name= 'Joe'; gpas3 ; en rollStatusrue; %ALI errorCode = Check!nputs(name, gpa, enrollstatus) errorCode = datatypes correct 1x4 logical array incorrect >> name-1; gpa=3; enrollstatus=true; % First datatype errorCode = Check!nputs(name, gpa, enrollstatus) errorCode 1x4 logical array >> name=' Joe'; gpa=3; en rollStatus-1 % Third datatype errorCode = Check!nputs(name, gpa, enrollstatus) enrollsStatus- incorrect 1 errorCode = 1x4 logical array Check!nputs(name , gpa) % Absent input argument >> errorCode errorCode = = 1x4 logical array

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Experts Guide To Database 2

Authors: Bruce L. Larson

1st Edition

0070232679, 978-0070232679

More Books

Students also viewed these Databases questions

Question

Briefly explain the free cash flow valuation approaches

Answered: 1 week ago

Question

What do you understand by "Workcenter" of Product-Process Matrix

Answered: 1 week ago