The correct option is (c) The mean is a measure of central location, calculated by summing all observations in a data set divided by the number of observations in the data set.
The correct option is (c) The mean is a measure of central location, calculated by summing all observations in a data set divided by the number of observations in the data set.
Code: #include <iostream> using namespace std; int main(void) { int choice; cout<<"\n Silver Express Theme Park Pvt. Ltd."; cout<<"\n==========================="; cout<<"\n 1.Regular Adult"; cout<<"\n 2. Student"; cout<<"\n 3.Family Ticket"; cout<<"\n EnterRead more
Code:
#include <iostream>
using namespace std;
int main(void)
{
int choice;
cout<<"\n Silver Express Theme Park Pvt. Ltd.";
cout<<"\n===========================";
cout<<"\n 1.Regular Adult";
cout<<"\n 2. Student";
cout<<"\n 3.Family Ticket";
cout<<"\n Enter the type of ticket which you want: ";
cin>>choice; //input taking
if(choice==1){ //adult tickets total amount calculation
int count;
cout<<"Enter no.of persons:";
cin>> count;
if(count>0)
cout<<"Total amount due is :"<< count*30;
else
cout<<"no.of persons must be greater than zero";
}
else if(choice==2){ //student tickets total amount calculation
int count;
cout<<"Enter no.of persons:";
cin>> count;
if(count>0)
cout<<"Total amount due is :"<< count*25;
else
cout<<"no.of persons must be greater than zero";
}
else if(choice==3){ //family tickets total amount calculation
int count;
cout<<"Number of additional children in the group(more than 2):";
cin>> count;
if(count>0)
cout<<"Total amount due is :"<< (count*15)+75;
else
cout<<"no.of persons must be greater than zero";
}
else{ //invalid option
cout<<"Invalid Option";
}
}
The correct option to the question 'Advances in the field of Computer Vision make which of the following possible' is (a) Detecting cancerous moles in skin images.
The correct option to the question ‘Advances in the field of Computer Vision make which of the following possible’ is (a) Detecting cancerous moles in skin images.
The correct option to the question 'Which of these is NOT a current application of AI' is (a) Making precise patient diagnosis and prescribing independent treatment.
The correct option to the question ‘Which of these is NOT a current application of AI’ is (a) Making precise patient diagnosis and prescribing independent treatment.
Which of the following statements best describes the mean of a data set?
The correct option is (c) The mean is a measure of central location, calculated by summing all observations in a data set divided by the number of observations in the data set.
The correct option is (c) The mean is a measure of central location, calculated by summing all observations in a data set divided by the number of observations in the data set.
See lessComputers are used for processing numerical data called _______ data.
The correct option to the question 'Computers are used for processing numerical data called _ data' is (c) character.
The correct option to the question ‘Computers are used for processing numerical data called _ data’ is (c) character.
See lessA Tourist Attraction Calculation System Silver Express Theme Park (SETP) …
Code: #include <iostream> using namespace std; int main(void) { int choice; cout<<"\n Silver Express Theme Park Pvt. Ltd."; cout<<"\n==========================="; cout<<"\n 1.Regular Adult"; cout<<"\n 2. Student"; cout<<"\n 3.Family Ticket"; cout<<"\n EnterRead more
Code:
#include <iostream> using namespace std; int main(void) { int choice; cout<<"\n Silver Express Theme Park Pvt. Ltd."; cout<<"\n==========================="; cout<<"\n 1.Regular Adult"; cout<<"\n 2. Student"; cout<<"\n 3.Family Ticket"; cout<<"\n Enter the type of ticket which you want: "; cin>>choice; //input taking if(choice==1){ //adult tickets total amount calculation int count; cout<<"Enter no.of persons:"; cin>> count; if(count>0) cout<<"Total amount due is :"<< count*30; else cout<<"no.of persons must be greater than zero"; } else if(choice==2){ //student tickets total amount calculation int count; cout<<"Enter no.of persons:"; cin>> count; if(count>0) cout<<"Total amount due is :"<< count*25; else cout<<"no.of persons must be greater than zero"; } else if(choice==3){ //family tickets total amount calculation int count; cout<<"Number of additional children in the group(more than 2):"; cin>> count; if(count>0) cout<<"Total amount due is :"<< (count*15)+75; else cout<<"no.of persons must be greater than zero"; } else{ //invalid option cout<<"Invalid Option"; } }
See lessStrong Artificial Intelligence is MCQ
The correct option to the question 'Strong Artificial Intelligence is mcq' is (c) the embodiment of human intellectual capabilities within a computer.
The correct option to the question ‘Strong Artificial Intelligence is mcq’ is (c) the embodiment of human intellectual capabilities within a computer.
See lessAdvances in the field of Computer Vision make which of the following possible?
The correct option to the question 'Advances in the field of Computer Vision make which of the following possible' is (a) Detecting cancerous moles in skin images.
The correct option to the question ‘Advances in the field of Computer Vision make which of the following possible’ is (a) Detecting cancerous moles in skin images.
See lessWhich of these is NOT a current application of AI? …
The correct option to the question 'Which of these is NOT a current application of AI' is (a) Making precise patient diagnosis and prescribing independent treatment.
The correct option to the question ‘Which of these is NOT a current application of AI’ is (a) Making precise patient diagnosis and prescribing independent treatment.
See less