Answers

Answer 1

Answer:

b,c

Explanation:


Related Questions

Why is the access date important to include when citing a website? (select all that apply)

It indicates websites changes.

It indicates website accessibility changes.

It shows website ownership changes.

It proves you did your work.

Answers

Answer:

It indicates website accessibility changes.

Answer:

It indicates websites changes.

It indicates website accessibility changes.

Explanation:

Correct on edge

what is a sending device

Answers

Answer:

A sending device that initiates an instruction to transmit data, instruction, or. information. e.g., Computer A, which sends out signals to another computer. □ A communication device that converts the data, instructions, or information. from the sending device into signals that can be carried by a.

Answer:

A sending device is an object that gives instructions to transmit information.

Colleen started working for a company that makes stuffed animals and delivers them with special messages. She immediately recognized some needs of the company and started talking to employees to gather information. The employees all need to access a common database. They need to print from all workstations. They would like managers to be automatically notified when supplies are running low. Select each of the requirements for this business.

-shared drive on the network
-networked printer
-broadband
-remote access
-automatic notification
-e-mail

Answers

Answer:

automatic notification, networked printer, shared drive on the network

Explanation:

The automatic notification allows to be notified when supplies are low. To be able to print from all workstation, they need a printer that is connected by network. The common database would be the shared drive on the network.

Answer:

automatic notification, networked printer, shared drive on the network

Explanation:

Or a,b,d,e

Choose the answer. Janice's IT department found that her computer had a program on it that was collecting her personal information as she browsed the Web. What is this an example of?

spyware
pharming
spam
spoofing​

Answers

Answer:

Spyware

Spam is just unwanted soliciation, spoofing is making links appear as something else, pharming is creating a fake website for victims to use.

Create an array of size 10 and name RandArray populate the RandArray with random integer from 1 to 20. Every element in the RandArray must be changed as follows: If the value of the element is less than the array index, the element must be replaced with the index plus 10. If the value of the element is equal to the index, the element must be doubled. If the value of the element is greater than the index, the element must be replaced by the index squared. Print the original number and the changed number of the RandArray

Answers

Answer:

int[]RandArray = new RandArray[10];

for(int x =0; x< RandArray.length;x++){

RandArray[x] = random.nextInt(10 - 1 + 1) + 1;

}

for(int x =0; x< RandArray.length;x++){

int og = RandArray[x];

if(RandArray[x]<x){

RandArray[x] = x + 10;

}

else if(RandArray[x] == x){

RandArray[x] =RandArray[x] * 2;

}

else if(RandArray[x] > x){

RandArray[x] =Math.pow(x,2);

}

System.out.println("Original: " + og +"New: "+ " RandArray[x])

}

Explanation:

Following are the python program for calculating the array values by using the random array function:

Python Program:

import random as R#import package of random

R1 = R.sample(range(1, 20), 10) #Generating 10 random numbers from 1 to 20

RandArray  = R1.copy() #Copying the elements of R1 in to RandArray

print("Original Array: ",RandArray)#defining the print method that prints RandArray value

for e in range(len(RandArray)):#defining a loop that calculates

   if(RandArray[e] < e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e+10#adding 10 in numbers

   elif(RandArray[e] == e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e*2#multiplying by 2 in number

   elif(RandArray[e] > e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e**2#calculating the square value of RandArray

   print("Changed Array: ",RandArray)#print RandArray value

for i in range(10):#defining loop that prints Array value

   print("Original Number:",R1[i], "Changed Number:",RandArray[i])#print RandArray value

Output:

Please find the attached file.

Program Explanation:

import package of random. Defining the "R1" variable that uses a random function to generate 10 random numbers from 1 to 20.Declaring the "RandArray" that Copying the elements of R1 into RandArray.Defining a loop that calculates the length of the array and uses a conditional block that checks and calculates the random array values.In the last step, another loop is declared that prints the array "RandArray" value.

Find out more information about the random number here:

brainly.com/question/16403687

public class Bird
{
beakStrength = input;
}
public void setBeakStrength(int strength)
{
beakStrength = strength;
}
}
public class Hawk extends Bird
{
private int talonStrength;
public Hawk(int talon, int beak)
{
super(beak);
talonStrength = talon;
}
}
The following statement appears in a method in another class.
Bird b = new Hawk(5,8);
Which of the following best describes the effect of executing the statement?​

Answers

Answer:

Answer below.

Explanation:

You are creating an object of bird "b" with a talon strength of 5 and a beak of 5.

public Hawk(int talon, int beak)

{

super(beak);

talonStrength = talon;

}

Please mark brainliest if this is the answer you were looking for

Please mark brainliest if this is the answer you were looking for

In this exercise we have to use the knowledge of computational language in python to write the code.

We have the code in the attached image.

The code in python can be found as:

public Hawk(int talon, int beak)

{

super(beak);

talonStrength = talon;

}

See more about python at brainly.com/question/26104476

The first step to keeping your home safe is to minimize the overall amount of _______________ materials you store in your home.

Answers

Answer: The valuable, precious, or expensive items.

Explanation:

25-words or more in your OWN words the meaning of digital literacy.

Answers

Answer:

Digital literacy means having the skills you need to live, learn, and work in a society where communication and access to information are increasingly through digital technologies like internet platforms, social media, and mobile devices.

Explanation:

Computer has brought radical change in every field​

Answers

Answer:

Yes it has brought change in every field

Explanation:

When is the following expression true? (2 points)
!(!a || b) || (!a && b)
1) If and only if a and b have different values
2) If and only if a and b have the same value
3)
If and only if both a and b are true
4) If and only if both a and b are false
5) The expression is never true

Answers

Answer:

1) If and only if a and b have different values

Explanation:

Given

Expression: !(!a || b) || (!a && b)

Required

When is it true?

The expression is true when the values a and b are different and the proof is as follows.

(1) Assume that: a = true and b = false

!(!a || b) || (!a && b)  

= !(!true || false) || (!true && false)

!true = false, so the expression becomes:

= !(false|| false) || (false && false)

In boolean, false|| false = false and false && false = false. So, we have:

= !(false) || (false)

!(false) = true, so, the expression becomes:

= true || (false)

Lastly, true || false = true

(2) Assume that: a = false and b = true

!(!a || b) || (!a && b)  

= !(!false|| true) || (!false && true)

!false = true, so the expression becomes:

= !(true|| true) || (true && true)

In boolean, true|| true = true and true && true = true. So, we have:

= !(true) || (true)

!(true) = false, so, the expression becomes:

= false|| true

Lastly, false || true = true

This expression is false if a and b have the same value

PLS ANSWER I Forgot how to do this. I'll give brainliest.
Write pseudocode for getting a bowl of cereal using at least four steps.

Answers

Answer:

Step 1: Get out a bowl

Step 2: Get out a spoon.

Step 3: Get out cereal.

Step 4: Get out milk.

Step 5: Put the milk and cereal in the bowl and enjoy

Explanation:

Fill in the blank: In a Word chart, text that describes the data represented in a chart and that is typically displayed on the right or at the bottom of the chart is called the ____.

Answers

Answer:

Data bar

Explanation:

In a Word chart, text that describes the data represented in a chart and that is typically displayed on the right or at the bottom of the chart is called the data bar.

What is a data bar?

Data bars are used to describe a graphic element that inserts bars representing the values within cells. It is a type of conditional formatting that creates a visual effect in the cells of your database that correspond to the contents of the cell. A larger value represents a cell with a longer bar while a smaller value represents cell with a shorter bar.

Read more on data bar:

https://brainly.com/question/9700709

#SPJ2

Moving your Sprite from right to left is considered the X coordinate?

Question 12 options:
True
False

Answers

Answer:

True.

Explanation:

X coordinates run from left to right, while Y runs from the top to the bottom.

To help you remember it, think of this:

A plane takes off and lands at the X coordinates and can choose whichever way it wants to take off from: left or right. Until the plane takes off, your Y coordinate is at 0. Once it's in the air, Y coordinates jumps in with our X and the plane can go up and up as it pleases (of course, there are limits) until it lands at the next airport.

Please note that x and y coordinates are always there, but in some cases they will stay at 0,0.

Hope this helped!

Source(s) used: N/A

Super Shenron vs Zeno D-e-a-t-h B-a-t-t-l-e Creation v Destruction Who Would Win????
Lmk

Answers

Answer:

both tbh I don't know I'm doing this for points cuz I need help for sm

_____ Create
graphics that are math based.

Answers

Answer:

Vector Graphics

Explanation:

Vector graphics are computer graphics images that are defined in terms of points on a Cartesian plane, which are connected by lines and curves to form polygons and other shapes. Vector graphics have the unique advantage over raster graphics in that the points, lines, and curves may be scaled up or down to any resolution with no aliasing. The points determine the direction of the vector path; each path may have various properties including values for stroke color, shape, curve, thickness, and fill.

Explain the Decision making statement​

Answers

Answer:

Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.

What is IPO? Write down the steps involved in IPO cycle.​

Answers

An initial public offering or stock market launch is a public offering in which shares of a company are sold to institutional investors and usually also retail investors. An IPO is underwritten by one or more investment banks, who also arrange for the shares to be listed on one or more stock exchanges

Answer:

An IPO is an offer of shares by a company in exchange for capital. The entire process is regulated by SEBI - the Securities & Exchange Board of India. To buy shares of any company in an IPO, you have to bid for these shares. If your bid is accepted, you are allotted shares.

Explanation: brainliest plz!

Computational artifacts can include various forms of bias that result in the _____
of certain groups of people.

Answers

Answer:

Exclusion

Explanation:

Right on Egenuity

Answer:Below

Explanation:

Which of the following can be used to locate data in a particular column?
A. VLOOKUP
B. HLOOKUP
C. CLOOKUP
D. RLOOKUP

Answers

Answer:

A. VLOOKUP

Explanation:

VLOOKUP is an Excel function to look up data in a table organized vertically. VLOOKUP supports approximate and exact matching, and wildcards (* ?) for partial matches. Lookup values must appear in the first column of the table passed into VLOOKUP.

Purpose 

Lookup a value in a table by matching on the first column

Return value 

The matched value from a table.

Syntax 

=VLOOKUP (value, table, col_index, [range_lookup])

Arguments 

value - The value to look for in the first column of a table.

table - The table from which to retrieve a value.

col_index - The column in the table from which to retrieve a value.

range_lookup - [optional] TRUE = approximate match (default). FALSE = exact match.

Which one of the following is a type of network security?
a) Login Security
b) Rights Security
c) Both (a) and (b)
d) Neither (a), nor (b)


Answers

Answer:

I think it's (login security)

Lucia is using the American Psychological Association (APA) style guidelines to writer her research paper. What is her most likely topic?
physical sciences
literature
social sciences
biology
ANSWER IS SOCIAL SCIENCES

Answers

Answer:

its C

Explanation:

According to the above scenario, Lucia's subject in the research paper is social sciences. Thus, option second is correct.

What is a research paper?

A research paper is a longer essay in which you give your own interpretation, opinion, or argument. When writing an essay, you apply all you know and have pondered about a subject.

The purpose of a research paper is to draw on what others have said about a topic and engage the sources in order to intelligently present a distinct viewpoint on the problem at hand, not just inform the reader what others have said about a topic.

The examination of how humans communicate with one another is known as social science. Anthropology, economics, political science, psychology, and sociology are all fields of social science.

According to the given circumstance, Lucia's research paper topic is social sciences. As a result, option two is correct.

Learn more about research paper here:

https://brainly.com/question/946785

#SPJ2

what are the functions of file​

Answers

File is an object on a computer that stores data, information, settings, or commands used with a computer program. In a GUI such as Microsoft Windows, files display as icons that relate to the program that opens the file.

Answer:

file is an object on a computer that saves data information and any thing

Which gallery will allow a user to access a variety of preconfigured formatting styles for images that are added to a
PowerPoint presentation?
O WordArt gallery
O Shape Styles gallery
O Picture Styles gallery
O SmartArt gallery

Answers

Answer:Picture Styles gallery

Explanation:

help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!​

Answers

Answer: the body shape is skinny

A video project needs to be encrypted as it is going from a source to a destination. What can be added to the video

Answers

Answer:

A video encoder

Explanation:

an encoder is used to make a video encrypted so nobody can take your copy it. For instance You Tube uses an encoder

!!!!! 40 pts !!!!!

Select the correct answer from each drop-down menu.
Which words or statements complete the sentences given below?
Interference created by fatigue is called ___
noise. Interference created by strong negative emotions is called ____ noise.

Answers

Physiological noise

semantic noise

Which IDEs specifically support the Python programming language? Select all that apply.
PyScripter

Xcode

PyCharm

IDLE

Answers

Answer:

PyCharm (Jetbrains)

PyScripter

IDLE

Xcode too!

Explanation:

You have to do some setup to use Python 3.8 with Xcode

What pc games do you all play?

Answers

Answer:

none

Explanation:

Answer:

Among us

Explanation:

What role does the animation in the motion picture industry or video industry play?

Answers

Answer:

there’s a lot of animation in the video marketplace. All the industries you cite are part of the bigger motion picture/video production industries. Animation plays a vital role across the board for too many reasons to list. Without knowing what your definition of animation is, it’s hard to write about what you are asking. That said, the industries you’re listing are all part of the same industry. If you watch news, you see animations all the time. Backgrounds, lower third supers that move…that’s all animation. Even in theatrical movies, it’s all over…you may not recognize it as animation, but it surely is. Not all animation needs to look like Looney Tunes, even if that would be nice.

how will you format date so that dates appear in a format similar to 26-January-2022​

Answers

Answer:

26/01/2022or01/22/2022

Other Questions
The manufacturer of a certain brand of aluminum foil claims that the amount of foil on each roll follows a Normal distribution with a mean of 250 ft2 and a standard deviation of 2 ft2. To test this claim, a restaurant randomly selects 10 rolls of this aluminum foil and carefully measures the mean area to be = 249.6 ft2Find the probability that the sample mean area is 249.6 ft2 or less if the manufacturers claim is true When the air near the surface is heated, it rises, taking heat with it. The type of energy transfer involved here is what? What was one reason Japan invaded Manchuria in 1931?A. It was violated by Hitler.B. It established a military alliance.C. It enabled the signers to engage freely in aggressive actions.D. It was an act of appeasement. 1. What is the name for a person in the mid-1800s who opposed slavery? help help help help help help help help 1. What is an action citizen can take to prevent energy waste? What is the topic sentence of this paragraph?The Renaissance in Europe brought about a great change from the world of the Middle Ages. In the Renaissance, people became interested in all kinds of learning, made advances in science, medicine, art, literature, architecture, and were open to new ideas and new ways of doing things. Some took the first steps towards modern scientific thought. And Leonardo was right in the middle of it all Jose and two of his friends are collecting baseball cards. Their goal is for the three of them to collect at least 100 cards in total. At the moment they have 43cards. If they all plan to now collect the same number of cards, which inequality can Jose use to determine the minimum number of cards each person needsto collect to reach their goal? Which of the following can actas media for a wave?A. SolidsB. LiquidsC. GasesD. All of the above Excel does not allow you to copy and paste formulas with AutoFill. true or false What is the wave speed of a wave that has a frequency of 100 Hz and a wavelength of 0.30 m? The price of an item has dropped to$63 today.Yesterday it was $140.find the percentage decrease Help pls and no links solve the system by substitution....... Drag the missing word into placeShakespeare wrote most of his plays and poems in a setwith five pairs of unstressed and stressed syllables per line. is it sonnet, meter, or quatrain? a certain vehicle can drive 300miles on a tank of 20 gallons. how far can it drive on 30 gallons? what is the answer in miles ??PLEASE HELP ME !!!! how do occupancy rate and potential gross rate relate Justin wants to buy a new pair of jeans. If the jeans were originally $50.00, but are on sale with a 30% discount, how much will Justin have to pay for the jeans? i dont understand help A can contains 24 fluid ounces of fruit juice. How many pints of fruit juice does the can contain. A.12ptB.3ptC.1 1/2D.1/3 Priya can bike 150 meters in 20 seconds. At this rate, how long would it take her to bike 3,000 meters? Complete the table to help determine the number of seconds.