Answer:
A program that implement a bubble sort:
#include<iostream.h>
#include<conio.h>
int main()
{
int ar[50],no,i,j,temp;
cout<<"Enter array size ";
cin>>no;
cout<<"Enter array elements ";
for(i=0;i<no;++i)
cin>>ar[i];
for(i=1;i<no;++i)
{
for(j=0;j<(no-i);++j)
if(ar[j]>ar[j+1])
{
temp=ar[j];
ar[j]=ar[j+1];
ar[j+1]=temp;
}
}
cout<<"Bubble Sort array";
for(i=0;i<no;++i)
cout<<" "<<ar[i];
return 0;
}
If a person want to load the "my-data.csv" file to Dataframe one can use import pandas as pd.
<h3>What is pandas?</h3>
Pandas is known to be a tools that carry out data transformations. It often helps to filter and analyze any kind of data.
Note that for import one can use:
- import numpy as np.
- import pandas as pd.
Therefore, If a person want to load the "my-data.csv" file to Dataframe one can use import pandas as pd.
Hence, the second(2) option is correct.
Learn more about Dataframe from
brainly.com/question/25525005
#SPJ1
This answer could be either, but personally false. Humor drives attention into your work (if the humor isn’t about it then yes it would drive it far off) but it makes people focus and listen to your presentation so they would answer your jokes. Hope this helped!
Neglecting to do market research can result in indecision and inaction, fear of risk or the truth, and/or too many options, which can lead to paralysis. ... When launching a new product, effective market research will help you narrow down your true market potential and your most likely customers.