Answer:
i know a tutor who will help with this question
Explanation:
Answer:
Logistic Regression is used to solve the classification problems, so it’s called as Classification Algorithm that models the probability of output class. It is a classification problem where your target element is categorical
Explanation:
Answer:
The program is written in c++ , go to the explanation part for it, the output can be found in the attached files.
Explanation:
C++ Code:
#include <iostream>
using namespace std;
int main() {
int x;
cout<<"Enter a number: ";
cin>>x;
int largest = x;
int position = 1, count = 0;
while(x != 1)
{
count++;
cout<<x<<" ";
if(x > largest)
{
largest = x;
position = count;
}
if(x%2 == 0)
x = x/2;
else
x = 3*x + 1;
}
cout<<x<<endl;
cout<<"The largest number of the sequence is "<<largest<<endl;
cout<<"The position of the largest number is "<<position<<endl;
return 0;
}
I believe it's A. online meeting
The answer is the amount of money you put in it, brainliest please.