If you sign a contract or official document with your non-dominant hand, you do not have to follow that agreement or set of rules
2) student recording her answer to a question in an online test
3) customer adding an item to the online shopping cart
Select one:
a) 1 and 3 only
b) 1 only
c) All of them
d) None of them
Answer: (C) All of them.
Explanation:
All the given options are example of the transaction in the information system.
As, the money deposited in the bank account is the process that take place computerized for transaction purpose. Now a days we can easily done transaction through wire transfer at anywhere and anytime by using the information system technology.
Students can easily study online and also record their answers in the online test by using the information system technology.
Customers can also doing shopping online by adding various products and items in the online shopping cart by using various e-commerce websites like amazon, flip-cart etc.
b. Run
c. Control Panel
d. Start
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int main(){
int numbers[50];
int evekount = 0, odkount = 0;
for(int i = 0; i<50;i++){
cin>>numbers[i];
if(numbers[i]%2==0){ evekount++; }
else{ odkount++; }
}
cout<<"Even Count: "<<evekount<<endl;
cout<<"Odd Count: "<<odkount<<endl;
return 0;
}
Explanation:
This declares the integer array of number
int numbers[50];
This initializes the even count and odd count to 0
int evekount = 0, odkount = 0;
This iterates from 1 to 50
for(int i = 0; i<50;i++){
This gets input for the array
cin>>numbers[i];
This checks for even
if(numbers[i]%2==0){ evekount++; }
This checks for odd
else{ odkount++; }
}
This prints the even count
cout<<"Even Count: "<<evekount<<endl;
This prints the odd count
cout<<"Odd Count: "<<odkount<<endl;
b. Deliver elegant presentations to a large audience easily
c. Create professional documents with an intuitive WYSIWYG interface
d. Organize, store, and retrieve large amounts of information easily
Answer: (D) Organize, store, and retrieve large amounts of information easily
Explanation:
The database program basically helps to store and organize the data or information easily in the database system. The database program is the backbone of the business information system and we can also retrieve the huge amount of data easily.
It basically provide various types of functions such as we can easily create the file, update. data entry and also report the file. Now a days, the data program is famous by the term DBMS (Database management system).
Therefore, Option (D) is correct.
Answer:
they are similar so I think it is true
Explanation:
Mark as brainlist