Since you have not provided the choices wherein I will have to choose from to arrive at an answer, I will just explain to you the concept revolving around a hosted blog software. Hosted blog software are basically installed by the owner of the web server in which among its famous platforms is the Blogger.
The simulation, player 2 will always play according to the same strategy.
Method getPlayer2Move below is completed by assigning the correct value to result to be returned.
Explanation:
- You will write method getPlayer2Move, which returns the number of coins that player 2 will spend in a given round of the game. In the first round of the game, the parameter round has the value 1, in the second round of the game, it has the value 2, and so on.
#include <bits/stdc++.h>
using namespace std;
bool getplayer2move(int x, int y, int n)
{
int dp[n + 1];
dp[0] = false;
dp[1] = true;
for (int i = 2; i <= n; i++) {
if (i - 1 >= 0 and !dp[i - 1])
dp[i] = true;
else if (i - x >= 0 and !dp[i - x])
dp[i] = true;
else if (i - y >= 0 and !dp[i - y])
dp[i] = true;
else
dp[i] = false;
}
return dp[n];
}
int main()
{
int x = 3, y = 4, n = 5;
if (findWinner(x, y, n))
cout << 'A';
else
cout << 'B';
return 0;
}
Answer:
The correct options to the following question is an option (A) and option (C)
Explanation:
Service Cloud is the part of the Salesforce and it is an application that helps us retaining to our customers, helps in retaining the customer's satisfaction and also helps to maintain the customer's loyalty.
It is the service platform that helps the organizations that sell products and the services and it also helps the companies to focuses and resolve the customer's problem.
Answer:
C++ code given below with appropriate comments
Explanation:
pattern.cpp
#include<iostream>
using namespace std;
void printCross(int n)
{
int i,j,k;
if(n%2) //odd number of lines
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==i || j==(n-i+1))
cout<<j;
else
cout<<" ";
}
cout<<"\n";
}
}
else //even number of lines
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==i || j==(n-i+1))
{
cout<<" "<<j<<" ";
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
void printForwardSlash(int n)
{
if(n%2)
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==n-i+1)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
else
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==(n-i+1))
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
void printBackwardSlash(int n)
{
if(n%2) // odd number of lines
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==i)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
else //even number of lines
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==i)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
int main()
{
int num;
char ch;
cout<<"Create a numberes shape that can be sized."<<endl;
cout<<"Input an integer [1,50] and a character [x,b,f]."<<endl;
cin>>num>>ch;
if(ch=='x' || ch=='X')
printCross(num);
else if(ch=='f' || ch=='F')
printForwardSlash(num);
else if(ch=='b' || ch=='B')
printBackwardSlash(num);
else
cout<<"\nWrong input"<<endl;
return 0;
}
Answer:
Opportunity cost doesn't only occur when you spend money. For example, if I can eat one snack at a party and I like both cake and cookies, I have to choose one over the other. This is an example of opportunity cost without spending money.