Answer:
The solution code is written in Python:
- name = input("Enter your name: ")
-
- name_components = name.split(" ")
-
- first_name = name_components[0]
- middle_name = name_components[1]
- last_name = name_components[2]
-
- print(last_name + ", " + first_name[0] + "." + middle_name[0])
Explanation:
Firstly, prompt user to enter name (Line 1).
Next, use the string <em>split()</em> method and use space " " as separator to split the input string into individual component, first name, middle name, last name and assign to variable <em>first_name, middle_name </em>and<em> last_name </em>(Line 5-7).
Display the output as required by the question.
<u><em>i just to the test on Plato and it said that A. accessibility is wrong the correct answer is d security #homeschoolrocks</em></u>
Have in mind that the following code is ofr C++ but I know that whatever the language you are using, you can use the same idea:
<span><iostream>
using namespace std;
int main()
{
int count=0;
string x;
while(1)
{
cout<<"Enter either goose or duck";
cin>>x;
if ( x=="Goose") break;
count++;
}
cout<<"Number of Ducks="<<count<<endl;
return 0;
}
</span>
Another one that is simplier but the language is python is:
counter = 0while True: line = input()if line == 'duck': counter += 1 elif line == 'goose':breakprint(counter)
Answer: Data and Insights
Explanation:
Data and Insights in an enterprise platform is very important as it helps users better understand their customers so that they may be able to offer them the best services.
Data allows the platform to capture the data of the customer and insights then curates and consumes the data for analysis. The result of this analysis will enable the company to better understand the customer so that they might be able to offer preferable products.