The answer is a Flash drive or better, an SD card
An SD card is a non-volatile memory use mostly in portable devices such as cameras, phones and other mobile solutions like tablets. They are capable of being a life in certain situations. They store all your documents, pictures, and photos in rows of tiny memory chips. In general, most modern consumer cameras use either Compact Flash or SD cards.
a. A sales force automation system
b. A customer interaction center
c. Bundling
d. Campaign management
e. Purchasing profiles
Answer:
c. Bundling.
Explanation:
Haya wants to sell ties for the college students and she set up a tie store on her campus and offer solid color tie and sports theme ties also.
For creating an interest in college students in the first month of operation she should consider bundling.
Bundling means selling different items together as a package.
I think ICTs can be innovatively used in the absence of minimum literacy levels among the poor. Nowadays, as technology has improved, there are cheaper gadgets that enable one, having a little bit difficulty with finances, to buy.
Boolean
text
memo
Answer:
What data type is suitable to show the arrival of a flight
The type of data that is suitable to show the arrival of the flight is the date/time.
Hope this helps! :)
Please mark brainliest
Answer:
The program to this question can be given as:
Program:
#include <iostream> //header file
using namespace std; //using name space.
int CountCharacters(char userChar,string userString) //define function.
{
int count = 0; //define variable
for (int i=0;i<userString.length();i++) //loop
if (userString[i]==userChar) //if block
count++; //increment the value.
return count; //return value.
}
int main() //main method.
{
string userString= "Clanguage"; //define variable and assign value.
char userChar = 'a'; //define variable and assign value.
cout << CountCharacters(userChar,userString); //calling function and print value.
return 0;
}
Output:
2
Explanation: