Suppose the author of an online banking software system has programmed in a secret feature so that the program emails him the account information for any account whose balance has just gone over $10,000. What term best describes this approach to computer crime and what are some of its harm?

Answers

Answer 1
Answer:

Answer and Explanation:

This type of attack is caused by Trojan Horse.

Most of the times, Trojan is veiled as genuine programming which for this situation is an internet banking framework and can empower the spying by the cyber criminals, theft and gain to remote access to your framework and data. These activities can include:  

  • Erasing information  or data
  • Key logging  
  • Information Corruption /Corruption of data
  • Duplicating data
  • Blocking information  

Among other hurtful activities none of which look good with the beneficiary PC.


Related Questions

The program that you create for this exercise will begin by reading the cost of a meal ordered at a restaurant from the user. Then your program will compute the tax and tip for the meal. Use your local tax rate when computing the amount of tax owing. Compute the tip as 18 percent of the meal amount (without the tax). The output from your program should include the tax amount, the tip amount, and the grand total for the meal including both the tax and the tip. Format the output so that all of the values are displayed using two decimal places.
In which situation does a linear search always perform better than a binary search?
Where in the computer is a variable such as "X" stored?
1. What are the advantages and disadvantages of technology in communication?
How do you calculate the total resistance in a series circuit with more than one resistor?

If you are looking for a keyboard to project from a device to a flat surface, which of the following would you use?

Answers

a virtual keyboard perhaps

Which of the following examples requires a citation in a paper you're writing?A. General information you already knew but want to clarify or conform
B. The table of contents
C. A paraphrasing of your original work in a different section of your paper
D. A direct quotation that is marked off by quotation marks

Answers

Answer:

D. A direct quotation that is marked off by quotation marks

Explanation:

Quotation marks are responsible for indicating that some texts are explicitly referenced in a paper with no changes made. This type of quote must be very well referenced in the paper, both on lines where the quotes are written with author's surname, date of publishing, page referenced, and also on the bibliography at the end of the paper with all these references very well detailed, including text's title, translators (if any), number of editions, publishing house, and more. It is important to highlight it depends on the policies of publishing the paper must follow because there are different patterns for referencing and quoting.

After the statements that follow are executed,var firstName = "Ray", lastName = "Harris";
var fullName = lastName;
fullName += ", ";
fullName += firstName;

a.firstName="Harris"
b.firstName="Ray Harris"
c.fullName="Ray Harris"
d.fullName="Harris, Ray"

Answers

Answer:

d. fullName="Harris, Ray"

Explanation:

// here we define two variables firstName="Ray" and lastName= "Harris"

var firstName = "Ray", lastName = "Harris";

// then we create another variable fullName and assign it the value stored in variabl lastName that is "Harris"

var fullName = lastName;

// then we added a coma and space. At this point fullName= Harris,

fullName += ", ";

// then we added firstName to the variable fullName. At this point fullName=Harris, Roy

fullName += firstName;

Note: the += operator means that add the variable on the left by an amount on the right

a+= b; or a = a + b; both mean same

write a program that calculates the average of a group of 5 testscores, where the lowest score in the group is dropped. it shoulduse the following functionsa. void getscore() should ask the use for the test score, store itin a reference parameter variable and validate it. this functionshould be called by main once for each ofthe five score to be entered.

Answers

C++ program for calculating the average of scores

#include <iostream>

using namespace std;

const int n=5;//As per question only 5 test scores were there

int numbers[5];

void getscore(int i)//defining function for taking input

{

cin >> numbers[i];

while(numbers[i]<0 || numbers[i]>100)//score should be between 0 to 100

{

cout<<"\nThe number should be between 0 to 100\n";

cin>>numbers[i];

}

}

int main()//driver function

{

cout << "Enter 5 scores:\n";

for (int i = 0; i < n; i++)

{

getscore (i);//calling function each time for input

}

int s = 101;

double avg = 0;

for (int i = 0; i < n; i++)//loop for finding the smallest

{

s = numbers[i] < s ? numbers[i] : s;

}

for (int i = 0; i < n; i++) //loop for finding the Average

{

avg += numbers[i];

}

avg -= s;

avg /= 4;

cout << "Average of the four scores are: " << avg<< endl;//printing the output

return 0;

}

Output

Enter 5 scores:

4

5

6

7

8

Average of the four scores are: 6.5

How many thermal performance control modes are there in Alienware Area 51m to support different user scenarios?

Answers

It should be noted that the number of thermal performance mode is 5.

From the complete information, it should be noted that there are five thermal performance control modes are there in Alienware Area 51m to support different user scenarios.

The modes are:

  • Full speed mode.
  • Performance mode.
  • Balanced mode.
  • Quiet mode.
  • Cool mode.

In conclusion, the correct option is 5

Learn more about modes on:

brainly.com/question/25604446

Answer:

3

Explanation:

The Dell Alienware Personal Computers refers to a range of PC's which are known for their strength, durability and most commonly their graphical performance. Th ecomputwrs are built to handle very high and intensive graphic demanding programs including gaming. The Alienware area 51m is a laptop which has been loaded with the capability and performance of a high graphic demanding desktop computers boasting massive memory size and greater graphic for better game play and high graphic demanding programs.

The laptop features an improved thermal and performance capability to handle the effect of different graphic demanding programs. Therfore, the laptop has 3 different thermal a d performance system modes which altenrtes depending on graphic demands in other to handle intensive demands.

Which feature in Access is used to control data entry into database tables to help ensure consistency and reduce errors?O subroutines
O search
O forms
O queries

Answers

To control data entry into database tables to help ensure consistency and reduce errors will be known as forms in data entry.

What are forms in data entry?

A form is a panel or panel in a database that has many fields or regions for data input.

To control data entry into database tables to help ensure consistency and reduce errors will be forms.

Then the correct option is C.

More about the forms in data entry link is given below.

brainly.com/question/10268767

#SPJ2

The answer is: Forms