Question: Given the declarations below, using the substr function, which statements will assign First to the name 1 variable and Last to the name 2 variable?

Given the declarations below, using the substr function, which statements will assign "First" to the name1 variable and "Last" to the name2 variable?
string name = "First Last"; // note the space between First and Last
string name1="";
string name2="";
a.
name1= name.substr(1,5);
name2= name.substr(6);
b.
name1= name.substr(1,6);
name2= name.substr(6);
c.
name1= name.substr(0,5);
name2= name.substr(6);
d.
name1= name.substr(0,5);
name2= name.substr(5);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!