Answer:
word = str("Enter a word: ")
if "mold" in word:
print("Mold is in the variable word.")
else:
print("Mold is not in the variable word.")
The answer is
mobile commerceMobile commerce or M-commerce is the transaction of goods
and services through handheld devices like cellular phones and PDAs. It continues
to grow by including purchase and sale of a huge range of products and services
like online banking and information delivery.
Simply, it is all about doing
transactions through digital means.
Answer:
The answer is "select the table"
Explanation:
Answer:
False
Explanation:
insturctions are represented in binary numbers, data are represented in decimal numbers.
Answer:
Algorithm:
1.Create a variable N.
2.Read the value of N from user.
3.for i=1 to N.
3.1 Print value of i.
4.end program.
Implementation in C++:
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int N;
cout<<"Enter value of N:";
// read the value of N
cin>>N;
cout<<"Natural number from 1 to "<<N<<" are:";
for(int i=1;i<=N;i++)
{
// print the numbers
cout<<i<<" ";
}
return 0;
}
Output:
Enter value of N:6
Natural number from 1 to 6 are:1 2 3 4 5 6