Answer:
script kiddies
Explanation:
script kiddies is used to describe individuals who want to attack computers yet lack the knowledge of computers and networks needed to do so
It's d. Graphic designer because they design things on the computer with code
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
void display(int array_test [], int n){
for(int i = 0; i<n;i++){
cout<<array_test[i]<<" "; }
}
int main(){
int n;
cin>>n;
int array_test[n];
for(int i = 0; i<n;i++){
cin>>array_test[i];
}
display(array_test,n);
return 0;
}
Explanation:
This defines the display function
void display(int array_test [], int n){
This iterates through the array
for(int i = 0; i<n;i++){
This prints each element of the array
cout<<array_test[i]<<" "; }
}
The main begins here
int main(){
This declares n as integer; n represents the length of the array
int n;
This gets input for n
cin>>n;
This declares the array
int array_test[n];
The following iteration gets input for the array
for(int i = 0; i<n;i++){
cin>>array_test[i];
}
This calls the display function to display the elements of the array
display(array_test,n);
return 0;
}
Answer:
Advance your career
Gain more knowledge
And have another way to talk to your friends especially during the pandemic
Answer:
1. Spaghetti code.
2. Business process management.
3. Procure-to-pay
4. Order-to-cash
5. User tier
6. Firewall
7. Database tier
8.Application tier
9. Three-tier architecture
Explanation:
1.Programming code used to connect stand-alone systems is spaghetti code.
2. Transforming business processes to improve efficiency business process management.
3. Corresponds to the purchasing cycle is called procure to pay.
4. Corresponds to the sales cycle is order-to-cash
5. Consists of front-end client computers and the user interface is user tier.
6. Software programs on a router that monitor network traffic is firewall
7. Comprised of a centralized relational database and an RDBMS is database tier.
8. Consists of servers and application software is application tier.
9. When an enterprise system uses layers of IT components: enterprise database, application, and client computers is three tier architecture.