Which of the following is NOT true about adjustment layers? brainbuffet

Answers

Answer 1

Answer the adjustment layers can not be used a lot?

Explanation: i think that was it

Answer 2

Answer:

Initial settings can not be modified, only layer opacity.

Explanation:


Related Questions

The term____relates to all things that we see.

Answers

Sight? The term sight, related to all things we can see.

Why do you think there is a difference in results between search engines ?

Answers

Answer:

Explanation:

Search Engine Optimization (SEO) was created. These businesses help websites improve their ranking by getting a website linked to other sites, using better keywords to describe the site and use in the site’s content, leveraging social media promotions, reWhat this means is that even the “unpaid for” search results you see probably got there because companies or organizations spent a great deal of money to get their website listed at the top. designing websites and more.

What is another way that the condition below could be written? ​ ( num <= 10 )

Answers

Answer:

 ( (num < 10) || (num = 10) )

Explanation:

Here we have the condition as num <= 10 which means the condition gets satisfied till less than 10 i.e., (9) and condition also gets satisfied when the num is equal to 10 .

We can get same result using ( (num < 10) || (num = 10) ) because in OR when either of the input is true the output is true .

Why is stranded rather than solid cable used for patch cables? Why is it critical not to score the jacket too deeply when stripping the cable? Why is it recommended to expose more than .5 inches of the wire pairs? Why is it critical to use the proper pin colors in order? Why is it critical to cut the wire pairs off .5 inches or less before inserting into the connector? Why is it critical to make sure that all of the wires are pushed to the end of the connector? Why is it recommended to double check the wire order and make sure the wires are to the end before crimping? How is a continuity tester different from a certification tester?

Answers

Answer:

The definition of the issues is listed throughout the section down.

Explanation:

Stranded cables are somewhat more compact and can be mounted quickly. Strong cables become rigid in design, and they are not versatile for installation. In comparison with solid connectors, amplification is indeed high. Unless the innermost layer including its wire is broken as we attempt to connect the cable, it will not function. So, whenever stripping the cables through the walls, it's indeed important not to rank the jack too profoundly.It would be quick to untwist the cable and then will ensure that perhaps the connection is appropriate for the most widely encountered rj-45 connection whenever the wiring of 0.5 inches becomes coupled up. If we don't keep the right pin colors in order, the relation won't work. Afterward, when another connexon is broken due to many complications, it would be impossible to figure out the contacts unless the pins coloring are not always in sequence.The connection pairs can be cut off through 0.5 inches within about therefore the gap within the connector is narrower and the wire would not be correctly attached if we break the cable further. The link is lost and the cable does not run properly. It is necessary to ensure that perhaps the wires are forced to the end of the platform since the connexon will indeed be broken as well as the connector would not operate unless the wires aren't moved. The wires will fall out of another socket as well.Before even being incorporated into another crimping unit, it is good to carefully check the connection sequence to ensure that perhaps the wires are to the end since it is impossible to verify the sequence until the wires are attached to something like the connector. Unless the connections are not always in alignment, the link will also not be provided and indeed the wire would not operate correctly, even if the link is provided. Such wires can also be presented to use load barriers, and that it's the simplest operation.The Durability Tester has been used to determine the hardness between two stages, whereas the connection efficiency is tested using the qualification tester.

Nancy is working on a spreadsheet in excel on a Microsoft windows system. Which statements are true about the software she is using?
A. Microsoft windows is an example of system utility software.
B. Besides system utilities, the only other type of software is application software.
C. Spreadsheet software, such as excel, is an example of application software.
D. Application software control and interact directly with computer hardware.

Answers

Answer:

The explanation of this question is given below in explanation section. however, the correct answer is C.

Explanation:

A. Microsoft windows is an example of system utility software (Incorrect). Microsoft windows is an example of system utitilty software. But the Nancy is using spreadsheat in excel software that is example of application software.  

B. Besides system utilities, the only other type of software is application software (incorrect). It is right that besides system utlilites, the only other type of software is application software.But this option does not match and make sense about Nancy working on the software.

C. Spreadsheet software, such as excel, is an example of application software (correct). Because, Microsoft Excel (that is spreadsheet software) is an example of application software.

D. Application software control and interact directly with computer hardware (incorrect). Because, driver that are example of utilities software, directly control and interact with hardware. So, this option is incorrect. Excel is an example of application software and application software does not directly control and interact with software.

Answer:

The answer is C.  Spreadsheet software, such as excel, is an example of application software.

Explanation:

I got it right on the Edmentum test.

LAB: Simple statistics
Given 4 floating-point numbers. Use a string formatting expression with conversion specifiers to output their product and their average as integers (rounded), then as floating-point numbers.
Output each rounded integer using the following:
print('{:.0f}'.format(your_value))
Output each floating-point value with three digits after the decimal point, which can be achieved as follows:
print('{:.3f}'.format(your_value))
Ex: If the input is:
8.3
10.4
5.0
4.8
the output is:2072 72071.680 7.125

Answers

Answer:

n1 = float(input())

n2 = float(input())

n3 = float(input())

n4 = float(input())

product = n1 * n2 * n3 * n4

average = (n1 + n2 + n3 + n4) / 4

print('{:.0f}'.format(product) + ' {:.0f}'.format(average) + ' {:.3f}'.format(product) + ' {:.3f}'.format(average))

Explanation:

Ask the user to enter 4 numbers as float

Calculate the product, multiply each number

Calculate the average, sum the numbers and divide the sum by 4

Print the results in requested formats

Describe the major research, discoveries, or impact Timothy Berners-Lee has made on the scientific community. 100 points for answer and best description gets brainleist

Answers

Answer:

Giving you brainiest

Explanation:

Because why not you just gave me a 100

A (n) _______________ is a dot or other symbol positioned at the beginning of a paragraph

Question 2 options:

Bullet


Logo


Cell


Target

Answers

Answer:

Bullet

Explanation:

I've written a paragraph before. I should know!

Answer: bullet

A bullet is this:

These are placed at the beginning of paragraphs to jot/write down thinking.

So, the answer to this is bullet.

Hope this helps!

Danielle, Edward, and Francis are three salespeople at Holiday Homes. Write an application named HomeSales that prompts the user for a salesperson initial (D, E, or F ). Either uppercase or lowercase initials are valid. Issue an error message for any invalid initials entered. For any salesperson name initial entered, further prompt a sale amount sold by the salesperson. Afterward, display the salesperson’s name and the sale amount for the salesperson.

Answers

Answer:

import java.util.Scanner;

public class HomeSales

{

public static void main(String[] args) {

    Scanner input = new Scanner(System.in);

    String name = "";

    double sale = 0.0;

   

 System.out.print("Enter a salesperson's initial (D, E, or F ) ");

 char initial = input.next().charAt(0);

 initial = Character.toUpperCase(initial);

 

 if(initial == 'D')

     name = "Danielle";

 else if(initial == 'E')

     name = "Edward";

 else if(initial == 'F')

     name = "Francis";

 else

     System.out.println("Invalid initials entered!");

     

 if(!name.equals("")){

     System.out.print("Enter sale amount ");

     sale = input.nextDouble();

     System.out.println(name + " " + sale);

 }

}

}

Explanation:

*The code is in Java.

Initialize the name and sale

Ask the user to enter the initial

Convert initial to uppercase

Check the initial using if else statement and depending on the value, set the name. If a valid initial is entered, print an error.

If the name is not empty (This implies that a valid initial was entered), ask the user to enter the sale amount and print the name and sale amount

QUESTION 7 of 10: A surplus can be best defined as:
a) Having too much money to spend
b) Not having enough money to meet your expenses
c) Having money left over after meeting your expenses
d) An Actual expense

Answers

It would actually be C because the definition of surplus is having money left over after meeting your requirements.

A surplus can be best defined as having money left over after meeting your expenses. The correct option is c.

What is surplus?

Surplus means having an excess amount of something that can be stored for future use. A surplus amount is used when there is more money or anything, like food, that can be used for emergencies.

Here, in the options, the best defines the term surplus is to put or save the excess amount of money or food or other things to use in future or emergency situations.

All others are incorrect because not having enough money to meet your expenses, is the opposite of the meaning of surplus, and the others, like having too much money to spend are also not the meaning of surplus.

Thus, the correct option is c. Having money left over after meeting your expenses.

To learn more about surplus, refer to the below link:

https://brainly.com/question/15416023

#SPJ2

The Internet is considered a WAN. *

True
False

Answers

Answer:

true. internet is definitely wan

The statement the Internet is considered a WAN is true.

We are given that;

The statement about WAN

Now,

A WAN, or a wide area network, is a computer network that spans over a large geographic area, such as regions, countries, or even the world.

The Internet is the largest and most well-known example of a WAN, as it connects millions of devices across the globe using various communication protocols and technologies.

A WAN can also be composed of smaller networks, such as local area networks (LANs) or metropolitan area networks (MANs), that communicate with each other.

Therefore, by WAN the answer will be true.

To learn more about WAN visit;

https://brainly.com/question/32733679

#SPJ6

What is the TAG to begin a Web page, as recommended by the W3C?

Answers

Answer:

<!DOCTYPE html>

Explanation:

Now i could be wrong but this is what we go with in html5 witch is what web browser uses.  I sent a photo you could use to help from the W3C website

Need some help with Discrete Mathmatics please help urgent?

Answers

Answer: 2, 4, 1, 5, 3

Explanation:

P: Arguments are not arranged in regular order like the one I am used to

Q: I cannot understand         ~Q: I can understand

R: I grumble                            ~R: I do not grumble

S: Get a headache

T: Examples are not easy

Here is the logic order of the given sentences:

2)   P

4)   P →  Q

1) ~Q → ~R

5) ~R →  S

3)   S →  T

∴)   T

Which of these is an application? Microsoft Windows Linux Microsoft Word Apple ios​

Answers

Answer:

I think it's Microsoft windows

Answer:

it is microsoft word just took test

Acceleration is the rate at which an object changes its velocity. It is typically represented by symbol a and measured in m/s2 (meters per second squared). Write the algorithm (steps in pseudocode) and the corresponding program to calculate the acceleration of a vehicle given the speed in miles per hour and the time in seconds. Use the formula provided below to calculate the acceleration in meters per second squared. The program must prompt the user to enter a velocity in miles per hour and a time in seconds as double precision real numbers and then display the resulting acceleration as a double precision real number. The acceleration must be rounded off to one decimal digit but displayed with two decimal digits.

Answers

Answer:

Pseudocode:

INPUT velocity

INPUT time

SET velocity = 0.44704 * velocity

SET acceleration = velocity / time

SET acceleration = round(acceleration, 1)

PRINT acceleration

Code:

velocity = float(input("Enter a velocity in miles per hour: "))

time = float(input("Enter a time in seconds: "))

velocity = 0.44704 * velocity

acceleration = velocity / time

acceleration = round(acceleration, 1)

print("The acceleration is {:.2f}".format(acceleration))

Explanation:

*The code is in Python.

Ask the user to enter the velocity and time

Convert the miles per hour to meters per second

Calculate the acceleration using the formula

Round the acceleration to one decimal using round() method

Print the acceleration with two decimal digits

The _________ shortcut keys underline words, and not spaces

Answers

CTRL+SHIFT+W

Have a nice day :}

When does information become a liability for an organization

Answers

Answer:

A. When it is not managed properly

Explanation:

when stuff is not mananged as it should then it becomes a liablilty

Fill in the function shopSmart(orders,shops) in shopSmart.py, which takes an orderList (like the kind passed in to FruitShop.getPriceOfOrder) and a list of FruitShop and returns the FruitShop where your order costs the least amount in total. Don't change the file name or variable names, please. Note that we will provide the shop.py implementation as a "support" file, so you don't need to submit yours. Run python autograder.py until question 3 passes all tests and you get full marks. Each test will confirm that shopSmart(orders,shops) returns the correct answer given various possible inputs. For example, with the following variable definitions: orders1 = [('apples',1.0), ('oranges',3.0)] orders2 = [('apples',3.0)] dir1 = {'apples': 2.0, 'oranges':1.0} shop1 = shop.FruitShop('shop1',dir1) dir2 = {'apples': 1.0, 'oranges': 5.0} shop2 = shop.FruitShop('shop2',dir2) shops = [shop1, shop2] test_cases/q3/select_shop1.test tests whether:

Answers

Answer:

def shopSmart(orderList, fruitShops):  #function definition

   shop = fruitShops[0] #sets the shop to first item of fruitShops list

   leastAmount = shop.getPriceOfOrder(orderList)  #passes the orderList to getPriceOfOrder method which returns the total cost and saves it to leastAmount

   for fruitshop in fruitShops[1:]:  #iterates through the shops in fruitShops list

    cost = fruitshop.getPriceOfOrder(orderList)  #checks each cost or order using getPriceOfOrder method and passing orderList to it

    if cost < leastAmount:  #checks where order costs the least amount in total

     shop = fruitshop  #sets the FruitShop where order costs the least amount in total

     leastAmount = cost  #sets that minimum of order cost to leastAmount

   return shop #returns the FruitShop where order costs the least amount in total

Explanation:

Here are the getPriceOfOrder() and getName()) methods that is used in the above method.

def getPriceOfOrder(self, orderList):        

       totalCost = 0.0              

       for fruit, numPounds in orderList:

           costPerPound = self.getCostPerPound(fruit)

           if costPerPound != None:

               totalCost += numPounds * costPerPound

       return totalCost

def getName(self):

       return self.name

Here is the main program:

orders = [('apples',1.0), ('oranges',3.0)]

dir1 = {'apples': 2.0, 'oranges':1.0}

shop1 =  shop.FruitShop('shop1',dir1)

dir2 = {'apples': 1.0, 'oranges': 5.0}

shop2 = shop.FruitShop('shop2',dir2)

shops = [shop1, shop2]

print("For orders ", orders, ", the best shop is", shopSmart(orders, shops).getName())

orders = [('apples',3.0)]

print("For orders: ", orders, ", the best shop is", shopSmart(orders, shops).getName())

Notice that the statement:

print("For orders ", orders, ", the best shop is", shopSmart(orders, shops).getName())

has orders list which is:

[('apples',1.0), ('oranges',3.0)]

and it has shops which is a list containing two shops:

shops = [shop1, shop2]

It also calls method shopSmart by passing orders and these two shops to get the shop where the order costs the least amount in total. It has a for loop that iterates through each shop and check the orders using getPriceOfOrder method to determine at which shop the order costs the least amount in total. When the least amount is found it is set to the variable leastAmount and the shop corresponding to this order which has least amount is set to shop variable. At the end this shop is returned by the function. getName() method is used in the main program to get the name of the shop with least amount of order cost. So above print statement gives the following output:

For orders  [('apples', 1.0), ('oranges', 3.0)] , the best shop is shop1    

The entire program along with its output is attached.                                

Write a function with two parameters, prefix (a string, using the string class from ) and levels (an unsigned integer). The function prints the string prefix followed by "section numbers" of the form 1.1., 1.2., 1.3., and so on. The levels argument determines how many levels the section numbers have. For example, if levels is 2, then the section numbers have the form x.y. If levels is 3, then the section numbers have the form x.y.z. The digits permitted in each level are always '1' through '9'. As an example, if prefix is the string "BOX:" and levels is 2, then the function would start by printing:

Answers

Answer:

Here is the program:

#include <iostream>  //to use input output functions

#include <string>  // to use functions to manipulate strings

using namespace std;  //to identify objects cin cout

void function(string prefix, unsigned int levels){  // function that takes two parameters, a string, using the string class and levels an unsigned integer

   if (levels == 0) {  //if number of levels is equal to 0

       cout << prefix << endl;  //displays the value of prefix

       return;    }  

  for (int i = 1; i <=9 ; i++){  //iterates 1 through 9 times

       string sections = (levels == 1 ? "" : ".");  //if the number of levels is equal to 1 then empty space in sections variable otherwise stores a dot

       string output = prefix +  std::to_string(i) + sections;   // displays the string prefix followed by the section numbers. Here to_string is used to convert integer to string

       function(output, levels - 1);   } }   //calls function by passing the resultant string and levels-1  recursively to print the string prefix followed by section numbers

int main() {  // start of main function

   int level = 2;  //determines the number of levels

   function("BOX", level);  } //calls function by passing the string prefix and level value

Explanation:

The program has a function named function() that takes two parameters, prefix (a string, using the string class from ) and levels (an unsigned integer). The function prints the string prefix followed by "section numbers" of the form 1.1., 1.2., 1.3., and so on. The levels argument determines how many levels the section numbers have. If the value of levels is 0 means there is 0 level then the value of prefix is printed. The for loop iterates '1' through '9' times for number of digits in each level. If the number of levels is 1 then space is printed otherwise a dot is printed. The function() calls itself recursively to print the prefix string followed by section numbers.

Let us suppose that prefix = "BOX" and level = 1

If level = 1 then the loop for (int i = 1; i <=9 ; i++) works as follows:

At first iteration:

i = 1

i <=9 is true because value of i is 1

string sections = (levels == 1 ? "" : "."); this statement checks if the levels is equal to 1. It is true so empty space is stored in sections variable so,

sections = ""

Next, string output = prefix +  std::to_string(i) + sections; statement has prefix i.e BOX plus value of i which is 1 and this int value is converted to string by to_string() method plus sections has an empty space. So this statement becomes

string output = BOX + 1  

So this concatenates BOX with 1 hence output becomes:

output = BOX1

At second iteration:

i = 2

i <=9 is true because value of i is 2

string sections = (levels == 1 ? "" : "."); is true so

sections = ""

Next, string output = prefix +  std::to_string(i) + sections; statement becomes

string output = BOX + 2  

So this concatenates BOX with 1 hence output becomes:

output = BOX2

At third iteration:

i = 3

i <=9 is true because value of i is 3

string sections = (levels == 1 ? "" : "."); is true so

sections = ""

Next, string output = prefix +  std::to_string(i) + sections; statement becomes

string output = BOX + 3  

So this concatenates BOX with 1 hence output becomes:

output = BOX3

Now at each iteration the prefix string BOX is concatenated and printed along with the value of i. So at last iteration:

At last iteration:

i = 9

i ==9 is true because value of i is 9

string sections = (levels == 1 ? "" : "."); is true so

sections = ""

Next, string output = prefix +  std::to_string(i) + sections; statement becomes

string output = BOX + 9  

So this concatenates BOX with 1 hence output becomes:

output = BOX9

After this the loop breaks at i = 10 because the condition i<=9 becomes false. So the output of the entire program is:

BOX1                                                                                                                                          BOX2                                                                                                                                          BOX3                                                                                                                                          BOX4                                                                                                                                          BOX5                                                                                                                                          BOX6                                                                                                                                          BOX7                                                                                                                                          BOX8                                                                                                                                          BOX9  

The program along with the output is attached.

How would you declare an interface named Sports that has the following (show them in your answer as well): A method called jump that has no parameters and does not return anything. A method called throw that has one parameter called distance and is an integer and does not return anything. 2) [5 pts] Assuming the interface exist from 1) above. Give me the class header for a class named Football that would use this interface. 3) [5 pts] Assuming a parent class called GrandParents exist. How would you create a child class called GrandChild that would be a direct child of the class GrandParents

Answers

Answer:

See explanation

Explanation:

An interface is declared as follows:

interface interface_name{          

   member fields

   methods  }  

So the Sports interface is declared as:

interface Sports{   }  

You can also write its as:

public interface Sports { }

Now this interface has a method jump that has no parameters and does not return anything. So it is defined as:

void jump();

You can also write it as:

public void jump();

Notice that it has a void keyword which means it does not return anything and empty round brackets show that it has no parameters. Lets add this to the Sports interface:

interface Sports{  

void jump();   }    

You can write it as:

public interface Sports {

  public void void jump();  }

Next, this Sports interface has a method throw that has one parameter called distance and is an integer and does not return anything. So it is defined as:

throw(int distance);

You can also write it as:

  public void throw(int distance)

Notice that this function has a void return type and one int type parameter distance. Now lets add this to Sports interface:

interface Sports{        

   void jump();  

   void throw(int distance);   }

This can also be written as:

public interface Sports {

 public  void jump();  

   public void throw(int distance); }

Next, the class header for a class named Football that would use this interface is as follows:

class Football implements Sports{  }

You can use the methods of Sports in Football too. So the complete interface with class Football becomes:

interface Sports{  

void jump();  

void throw(int distance);

}  

class Football implements Sports{  

public void print(){

}  

public void throw(int distance) {

}

Next we have a parent class called GrandParents. So child class called GrandChild that would be a direct child of the class GrandParents is:

class GrandChild extends GrandParents {   }

Basic syntax of a parent class and its child class is:

class child_class_name extends parent_class_name

{  

  //member fields and methods

}

which term means the push that makes electrons move in a wire?
A. adapter
B. digital signal
C. voltage
D. current​

Answers

Answer:

C. Voltage

Explanation:

Answer:

Other person is correct it is voltage

Explanation:

What will happen if you delete system32?

Answers

Search Results
Featured snippet from the web
System32 contains critical system files , software programs and they are essential to boot operating system . So deleting it will cause system failure and nothing will work properly . And if you restart your pc then it wont boot at all. You will have to do a clean reinstall to fix things up again .

Which one is NOT an Apex Legend Character.
1. Mirage
2. Bangalore
3. Lifeline
4. Lara Croft
5. Crypto

Answers

Answer:

lara croft

Explanation:

i think ??????

Answer:

Lara Croft

Explanation:

She from Tomb Raider

programmning You are asked to develop a cash register for a fruit shop that sells oranges and apples. The program will first ask the number of customers. Subsequently, for each customer, it will ask the name of the customer and the number of oranges and apples they would like to buy. And then print a summary of what they bought along with the bill as illustrated in the session below: How many customers? 2 Name of Customer 1 Harry Oranges are $1.40 each. How many Oranges? 1 Apples are $.75 each. How many Apples? 2 Harry, you bought 1 Orange(s) and 2 Apple(s). Your bill is $2.9 Name of Customer 2 Sandy Oranges are $1.40 each. How many Oranges? 10 Apples are $.75 each. How many Apples? 4 Sandy, you bought 10 Orange(s) and 4 Apple(s). Your bill is $17.0

Answers

Solution:

def main():

n=int(input("How many customers? "))

print()

# User input of the fruit requirement of all customers.

for i in range(n):

print("Name of Customer",i+1)

name = input()

print("Oranges are $1.40 each. How many Oranges?")

no_of_orange = int(input())

print("Apples are $.75 each. How many Apples?")

no_of_apple = int(input())

print(name,", you bought",no_of_orange,"Orange(s) and",no_of_apple,"Apple(s).")

 

# Calculation of total bill

total_bill = (no_of_orange*1.40) + (no_of_apple*0.75);

 

#Print total_bill

print("Your bill is $",total_bill,end="");

print("\n");

if __name__=="__main__":

main()

1. The Percentage of T9 and T10 also have the wrong number format. Change them to the Correct number format(to match the rest of the data in the column). What Value now Shows in T10?​

Answers

Answer:

60%

Explanation:

After changing the number format of the percentages of T9 and T10, the value that now shows in T10 due to the change from the wrong format to the Right format is 60%

This is because when a value is entered into a column in a wrong format the value would be different from other values entered rightly but when the format is changed to the right format, the correct value would show up.

#TODO: This function needs to accept an incoming message and process it accordingly. # This function is called every time the switch receives a new message. #if message.pathThrough == True and message.origin not in self.activeLinks: #self.activeLinks.append(message.origin) #if message.pathThrough == False and message.origin in self.activeLinks: #self.activeLinks.remove(message.origin)

Answers

Answer:

This function is a method of a class object that checks a message path and register or update the previous messages list with only new messages.

Explanation:

def message_check(self ) :

If message.pathThrough == True and \ message.origin not in self.activeLinks:

Self.activeLinks.append( message.origin )

Elif message.pathThrouh == False and \ message.origin in self.activeLinks:

Self.activeLinks.remove( message.origin )

Need a little help
Stuck on this question

Answers

Answer:

B.

They are the audio technicians so they do all things audio, including sound effects and different voices.

B. Hire actors hope that helps

What was the goal of the 2009 Educate to Innovate campaign?

A) promote and develop STEM practitioners and teachers in the fields
B) strengthen America’s global lead in scientific research and education
C) assist American students in becoming leaders in math and science
D) improve technology and attract workers to STEM occupations

Answers

The letter choices are randomized for everyone, but the answer is:

— To assist American students in becoming leaders in math and science

The 2009 Educate goal is to improve technology and attract workers to STEM occupations.

What is the main goal of STEM?

The aim of STEM education is to bring up STEM literacy in terms of knowledge and understanding of scientific and mathematical things.

Therefore, The 2009 Educate goal is to improve technology and attract workers to STEM occupations and thus bring out innovation.

Therefore Option d is correct.

Learn more about STEM from

https://brainly.com/question/18243320

#SPJ9

What is the hyperlink for famous viruses ?

Answers

Answer: Hope this helps :)

Explanation: Viruses embedded themselves in genuine programs and relied on these programs to propagate. Worms were generally stand alone programs that could install themselves using a network, USB or email program to infect other computers.

Trojan horses took their name from the gift to the Greeks during the Trojan war in Homer’s Odyssey. Much like the wooden horse, a Trojan Horse looks like a normal file until some predetermined action causes the code to execute.

Today’s generation of attacker tools are far more sophisticated, and are often a blend of these techniques.

These so-called “blended attacks” rely heavily on social engineering - the ability to manipulate someone to doing something they wouldn’t normally do – and are often categorised by what they ultimately will do to your systems.


Which of the followingdemonstrates active listening while receiving constructive criticism well?
O "I don't think what you are saying is helpful to me."
O "Okay. Thank wu. So where do you want to go for lunch?"
O "You mentioned that the quality of my software code could be better. You need to look at what Joe is writing. My
code is far superior to his."
O "You mentioned that the quality of my software code could be better. Can you tell me more about this and what I should look for “

Answers

Answer:

its D

Explanation:

Answer:

d

Explanation:

d

Other Questions
Is there anymore that you can do for your own bone maintenance? What actions would you take? Are you doing a great job of maintaining calcium homeostasis? Why and why not? Can anyone help brainliest and 30pts"Anne," cried Mary, still at her window, "there is Mrs Clay, I am sure, standing under thecolonnade, and a gentleman with her. I saw them turn the corner from Bath Street justnow. They seemed deep in talk. Who is it? Come, and tell me. Good heavens! I recollect.It is Mr Elliot himself.""No," cried Anne, quickly, "it cannot be Mr Elliot, I assure you. He was to leave Bath atnine this morning, and does not come back till to-morrow."As she spoke, she felt that Captain Wentworth was looking at her, the consciousness ofwhich vexed and embarrassed her, and made her regret that she had said so much,simple as it was.Mary, resenting that she should be supposed not to know her own cousin, began talkingvery warmly about the family features, and protesting still more positively that it was MrElliot, calling again upon Anne to come and look for herself, but Anne did not mean to stir,and tried to be cool and unconcerned. Her distress returned, however, on perceivingsmiles and intelligent glances pass between two or three of the lady visitors, as if theybelieved themselves quite in the secret. It was evident that the report concerning her hadspread, and a short pause succeeded, which seemed to ensure that it would now spreadfarther."Do come, Anne" cried Mary, "come and look yourself. You will be too late if you do notmake haste. They are parting; they are shaking hands. He is turning away. Not know MrElliot, indeed! You seem to have forgot all about Lyme."To pacify Mary, and perhaps screen her own embarrassment, Anne did move quietly tothe window. She was just in time to ascertain that it really was Mr Elliot, which she hadnever believed, before he disappeared on one side, as Mrs Clay walked quickly off on theother; and checking the surprise which she could not but feel at such an appearance offriendly conference between two persons of totally opposite interest, she calmly said,"Yes, it is Mr Elliot, certainly. He has changed his hour of going, I suppose, that is all, or Imay be mistaken, I might not attend;" and walked back to her chair, recomposed, andwith the comfortable hope of having acquitted herself well.From Persuasion, by Jane Austen.Question 21Anne obviously knows Mr Elliot quite well for all the following reasons EXCEPT:A: she has knowledge of his travel plans.B: she shows discomfort at Mary spotting him.C: she is sensitive to what the other ladies might know.D: she had been speaking about Mr Elliot to others in the room.E: Mary refers to Anne meeting Mr Elliot in Lyme.Question 22Anne finally goes to the window because:A: she knows in her heart that it really is Mr Elliot.B: she wishes to prove Mary wrong.C: she wishes to calm Mary and cover up her own lack of composure.D: Mary frets that Mr Elliot will disappear from view.E: Mary is creating a fuss in front of the others in the room.Reading Comprehension Practice Test Page 7Question 23From what occurs it can be inferred that Anne:A: couldnt care less about Mr Elliot.B: had not known Mr Elliot long enough to recognise him.C: is attracted to Mr Elliot.D: is uncomfortable at Mr Elliots behaviour.E: C and D together. 5x 4= 16What is the answer Which is true of Pan-Africanism?A. It caused Europeans to oppose African civil rights,B. It only opposed imperialism in Africa,C. It helped civil rights throughout the African diaspora,D. It fought for important issues concerning the African diaspora. 104470Consider this group of rocks: granite, marble, and gneiss.What property was used to group these rocks?colorhardnessstreakO grain A prehistoric object is one that comes from a time .....? HELP QUICK PLEASE!What were three things all colonists were given upon arrival in Georgia?PICK ALL THAT APPLIESLandFarm equipmentSeedSlaves The Battle of Gettysburg was unusual compared toother battles in the East becausethe Confederacy won.Lee suffered a major defeat.Lee was defending Confederate territoryLee was invading the Union. Martha's Bakery is baking loaves of banana bread and poppy-seed almond bread. The recipe for one loaf of banana bread calls for two cups of flour and one teasooon of baking soda. One loaf of poppy-seed almond bread reauires cups of flour and a teaspoons of baking soda. The bakery has 24 cups of flour and 26 teaspoons of baking soda in stock. Write a system of linear inequalities to model how many loaves of bread can be baked. graph the inequalities that represent how many loaves of each type of bread the bakers can make Which of the following combinations can they make based on their current supply of flour and bakine sodal Check all that apply. 01 banana bread and 5 poppy seed almond breaads O3 banana breads and 11 poppy-seed almond breads D 6 banana breads and 8 poppy seed aimond breads D7 banana breads and 9 poppy-seed amond bre ads 09 banana breads and 5 poppy-seed almond breads The area of Maxs room, not including his closet, is 235.675 square feet. The area of his closet is 10.45 square feet. What is the area of his room, including the closet? I need help quick please The product of eight and the quantity of a number y plus six is less than twenty-one. What was the biggest impact thatthe French and Indian War had onthe colonists? Use 2-3 Sentences I -3[1+2(4+5)]PLease answer ASAP!!! If the point (x, y) is in Quadrant II, which of the following must be true? Tension grew in 1775 as British troops controlled Boston. In response, the colonists agreed with the Intolerable Acts. consented to British rule. negotiated with the king. formed armed militias. can someone explain this to me? - 9x + 10-5x = 7 what represents the nitrogen in the atmosphere Gabe wants to move text from one document to another document. He should _____. highlight the text, select the cut command, move to the new document, make sure the cursor is in the correct location, and select the paste command copy the text, paste the text, and open the new document highlight the text, open the new document, and press Ctrl and V select the save as command, navigate to the new document, and click save Two lines intersecting at a right angle A. Form a line B.are parallel C. are perpendicular D. Form a ray