What is the full meaning of Internet and WiFi

Answers

Answer 1

Answer:

Internet-a global computer network providing a variety of information and communication facilities, consisting of interconnected networks using standardized communication protocols.

Wifi-a wireless networking technology that allows devices such as computers (laptops and desktops), mobile devices (smart phones and wearables), and other equipment (printers and video cameras) to interface with the Internet. ... Internet connectivity occurs through a wireless router.

Explanation:

Answer 2

Answer:

WiFi is a short name for Wireless Fidelity". ... To connect to a WiFI LAN, a computer must be equipped with a wireless network interface controller


Related Questions

Ranboo back story? (not homework i just wanna find some ppl who are interested in the same things) ft. the reddie meme

Answers

Answer:

i like meme very much

Explanation:

mark as brainliest please

Answer:

ranboo backstory poggg

Explanation:

idrk his back story im pretty sure he forgot most of it anyways

also known as user generated content (UGC). It refers to a variety of media content that is produced by

Individuals or a group of people working in collaboration. It is also referred to as consumer generated media (CGM) or

user created content (UCC).

Prosumerism

Creationism

Productionism

Consumerism

Answers

Answer: Prosumerism

Explanation:

Prosumerism is a portmanteau of the words, producer and consumerism. As the term infers, it is the use of customers in the production process with the logic being that customers know what they want so should be given a chance to help in creating it.

This is why companies have increasingly started using user generated content that is produced by consumers who are working individually or in a group. These will help the company in producing a viable product for the market.

Recently, your company's file server was the victim of a hacker attack. After researching the attack, you discover that multiple computers were used to implement the attack, which eventually caused the file server to overload. Which attack occurred

Answers

Answer:

Denial of Service attack

Explanation:

Denial of service is a type of attack on computer systems in which a particular system is targeted and flooded with traffic from multiple systems, thus causing an overload of the attacked system, and an eventual crash. The aim of the perpetrators of this attack is to prevent the rightful owners of the system from gaining access to it.

The above described attack is a Denial of service attack because;

1. the attack came from multiple computers

2. the attacked server experienced an overload most likely caused because it was overwhelmed with traffic.

How do you think the people responsible for the web server, the web pages, and scripts could have prevented these vulnerabilities

Answers

Incomplete question. However, I provided definitions of key terms.

Explanation:

One may wonder: what is a web server? In simple terms and this context, it is a software application that web users access hosted files. In other words, it serves what is on the web to end-users.

Web pages, on the other hand, is a unique document format opened on the web.

While scripts are customized computer language that determines how contents on web pages interact and how they are shown to users, examples include;

JavaScript,PHPXML, etc.

Many web experts recommend that in other to protect web pages from vulnerabilities, they should ensure their website should be issued an HTTPS (HyperText Transfer Protocol) certificate.

What would provide structured content that would indicate what the code is
describing?
A. HTML
B. XML
C. DHTML
D. WYSIWYG

Answers

i believe the answer is b.XML

XML is the application programming interface that provides structured content that would indicate what the code is describing. Thus, the correct option is B.

What is XML?

XML stands for Extensible Markup Language. It is a type of markup language that is significantly utilized for storing, transmitting, and reconstructing arbitrary data.

Apart from this, XML also characterizes a sequence or series of rules for and regulations that encode documents in a format that is both human-readable and machine-readable. This programming interface is a simple text-based format and is used for representing structured information like documents, data, configuration, books, transactions, invoices, etc.

Therefore, XML is the application programming interface that provides structured content that would indicate what the code is describing. Thus, the correct option is B.

To learn more about XML, refer to the link:

https://brainly.com/question/22792206

#SPJ7

The __________ operator increases the value of the variable by 1 after the original value is used in the expression in which the variable appears.

Answers

Answer:

postincrement.

Explanation:

In Computer programming, a variable can be defined as a placeholder or container for holding a piece of information that can be modified or edited.

Basically, variable stores information which is passed from the location of the method call directly to the method that is called by the program.

For example, they can serve as a model for a function; when used as an input, such as for passing a value to a function and when used as an output, such as for retrieving a value from the same function. Therefore, when you create variables in a function, you can can set the values for their parameters.

The postincrement operator increases the value of the variable by 1 after the original value is used in the expression in which the variable appears.

Use the YEARFRAC function to work out how many years difference is there between the date 1980-07-31 (31 July 1980) and 1998-05-02 (2 May 1998) (to 1 decimal place)?

Answers

Answer: 17.7 Years

Explanation:

YEARFRAC is a function in Microsoft Excel that returns the year fraction representing the number of whole days between a particular start date and an end date.

A typical view of the function is:

=YEARFRAC(start_date, end_date, [basis])

All that needs to be done is

1. Type in the equal to sign(=) in the cell you want your answer,

2. Type in YEARFRAC and open your bracket,

3. Input your start date and end date, close your bracket and press enter.

Johnny uses Excel to check his ________ homework.

Answers

Answer:

Math

Explanation:

What are some other features of sending attachments in Outlook 2016? Check all that apply.
A file is something from outside of Outlook, such as Word or PowerPoint.
An Outlook item, such as a calendar, can be attached to an email.
An attachment reminder will pop up every time you send the message.
O A cloud-based file is shared by including a link to it in the message body.

Answers

Answer:

A B D

Explanation:

Answer:

the answers are B , B , and A

Explanation:

what is wrong with the following, exercise 1 1313 unread replies.1313 replies. Specify which instructions do not work according to masm syntax and why. ; var1 and var2 are of size bytes mov eax, var1 mov var1, var2 mov bx, var2 mov bh, var1

Answers

Answer:

The solution to this question can be defined as follows:

Explanation:

If we learn, they should use normal intel syntax in MASM assembly language when writing assembly codes. Consequently, its first operand was its venue, and another is the source as per this intellect syntax.

For instance. In mov eax ,var1 

eax is a 32-bit data registry that would be the aim, that is copies to eax by the meaning of var1.

bx is a 16-bit base registry that has a var2 value.

bh is indeed a simple registry 8-bit component provided to the Var1 value.

It's not the Master Syntax, because they transfer the data contained from var2 to var1 explicitly instead of using the records. It's the best approach, when they move data, through the registers.

def find_max(nums: [int]) -> int:
'''
Finds the maximum value in the given list of integers,
or None if the list is empty
'''
largest = None

for num in nums:
if largest == None or num > largest:
largest = num

return largest

Rewrite the find_max function so that it uses recursion to work its way through the list instead of using a loop. Your rewritten function should accept the same kinds of inputs (i.e., a one-dimensional list of integers) and generate the same outputs. In your view, is this a problem that's well-suited to a recursive solution in Python.

Answers

Answer:

The program in recursion is:

def find_max(nums):

    if len(nums) == 0:

         return "None"

    elif len(nums) == 1:

         return nums[0]

    else:

         return max(nums[0],find_max(nums[1:]))

Explanation:

This line defines the function

def find_max(nums):

This checks if the list is empty.

    if len(nums) == 0:

If yes, it returns "None"

         return "None"

If the list has just one element

    elif len(nums) == 1:

It returns the only element as the maximum

         return nums[0]

If the list has numerous elemente

    else:

The maximum is determined recursively

         return max(nums[0],find_max(nums[1:]))

To the (b) part:

This program does not necessarily need to be done recursively because the max built-in function can be used to determine the maximum of the list in just one line of code and it is more efficient.

Give atleast 10 examples of wearable technologies and its functions​

Answers

Answer:

Wearable technologies are a form of technology designed and manufactured in such a way that people can wear them around.

Explanation:

Examples of smart wearable technologies and their functions are:

1. Smart wrist watch: this serves as both wrist watch and mobile gadgets that can make calls and some other functions like calculator, calendar, etc.

2. Fitness tracker: this helps in monitoring body activity level

3. Smarts clothIng: this can work with smart watch or phones to monitor the body activity

4. Smart headset: asides from using it to listen to music, it can also filter then the information within the environment

5. Artificial Intelligence hearing aid: this can help remove unnecessary noise level

5. Artificial Intelligence hearing aid: this can help remove unnecessary noise level

6. Smart jewelry: just like smart watches, it helps in measuring health activities in the human body system.

7. Implantable: this is for internal use and can also monitor the functioning rate of the body.

8. Head Mounted display: this is attached to the head, but one will be able to see the things the device is seeing.

9. Smart Chést stràp: this measures the level of heart rate in the body

10. Goógle glass: a user to make a call or browse the intérnet, and easily share what you ve seen

Wearable are part of the technology that is made to wear and use.

technology also includes activity trackers and skin electronics. The electronics such as software sensors and other things enable them to exchange quality data.They include rings, pens, watches, bracelets, trackers, earbuds, lens and contact less devices.

Hence the above mentioned are some of the examples of wearables technologies.

learn more about at least 10 examples of wearable technologies and their functions​.

brainly.ph/question/11249287.

Complete the static method yearsToVote, which returns a String displaying the number of years a person has been able to vote or the number of years they have to wait to vote (the voting age is 18). The age is passed in as an argument.
public static String yearsToVote (int age) {
** Complete the code **
}

Answers

Answer:

Following are the code to this question:

public class Main//defining a class  

{

   public static String yearsToVote(int age)//defining a method yearsToVote that holds an integer variable as a parameter  

   {

       String s;//defining a String variable

       int a;//defining a integer variable

       if(age<18)//defining if block to check age  

       {  

           a=18-age;//calculating the age value  

           s="The Person has to wait "+a+ " more years before they can vote";//print string value with age  

       }

       else//defining else variable  

       {

           a=age-18;//calculating age value

           s="Since last " +a+" years person has been abel to vote ";//print string value with age  

       }

           return s; // return String value

   }

public static void main(String[] args)//defining a mein method  

{

    int age=22;//defining an integer variable with value

    System.out.println(yearsToVote(22));//use print method to call static method  

}

}

Output:

Since last 4 years person has been abel to vote  

Explanation:

In this code, a static method "yearsToVote" is declared that accepts an integer variable "age" in its parameter, and defined one string and one integer variable, and use if block to check value and return string value with a message.

In the next step, the main method is declared, which defines an integer variable and holds its value and passes into the method "yearsToVote" use the print method to call and print its value.  

A user from the financial aid office is having trouble interacting with the finaid directory on the university's ERP system. The systems administrator who took the call ran a command and received the following output:
Subsequently, the systems administrator has also confirmed the user is a member of the finaid group on the ERP system.
Which of the following is the MOST likely reason for the issue?
A. The permissions on the finaid directory should be drwxrwxrwx.
B. The problem is local to the user, and the user should reboot the machine.
C. The files on the finaid directory have become corrupted.
D. The finaid directory is not formatted correctly

Answers

Answer:

A. The permissions on the finaid directory should be drwxrwxrwx.

Explanation:

The financial aid system is developed to record the fund inflow and outflows. The ERP system of the university has finaid system on which commands are run and output is received. The permissions on the finaid directory should be drwxr to enable the users to run the commands.

Ethernet ensures that _____ on a shared network never interfere with each other and become unreadable.

Answers

Answer:

Signals.

Explanation:

Encryption is a form of cryptography and typically involves the process of converting or encoding informations in plaintext into a code, known as a ciphertext. Once, an information or data has been encrypted it can only be accessed and deciphered by an authorized user.

Some examples of encryption algorithms are 3DES, AES, RC4, RC5, and RSA.

Ethernet ensures that signals on a shared network never interfere with each other and become unreadable through the use of encapsulation and standard encryption protocols.

In Computer Networking, encapsulation can be defined as the process of adding a header to a data unit received by a lower layer protocol from a higher layer protocol during data transmission. This ultimately implies that, the header (segment) of a higher layer protocol such as an application layer, is the data of a lower layer such as a transportation layer in the Transmission Control Protocol and Internet Protocol (TCP/IP).

The TCP/IP model comprises of four (4) layers;

1. Application layer: this is the fourth layer of the TCP/IP model. Here, the data unit is encapsulated into segments and sent to the transport layer.

2. Transport layer (layer 3): it receives the segment and encapsulates it into packets and sends to the internet layer.

3. Internet layer (layer 2): packets are encapsulated into frames.

4. Network layer (layer 1): frames are then converted into bits and sent across the network (LAN).

Hence, the data unit encapsulated inside a packet is known as segment, which is typically referred to as packet segmentation.

Additionally, these data, segments, packets, frames and bits transmitted across various layers are known as protocol data units (PDUs).

You decide to store data in the user's browser in order to reduce the amount of data that must be downloaded. What is this process called

Answers

Answer:

client-side storage

Explanation:

The process of doing this is known as client-side storage. Like the name suggests this saves data that is sent to the user's computer on that computer either as cookies or cached data. This data is then used every time that the user decides to enter the same website or access the same program from the browser. Doing this allows these websites and programs to load much faster the more times that the user decides to enter them.

Write a Java program that asks the user to enter an array of integers in the main method. The program will ask the user for the number of integer elements to be put in the array, and then ask the user for each element of the array. The program then calls a method named isSorted() that accepts an array of integers and returns true if the list is in sorted (increasing) order and false otherwise. For example, if arrays named arr1 and arr2 store [10, 20, 30, 41, 56] and [2, 5, 3, 12, 10] respectively, the calls isSorted(arr1) and isSorted(arr2) should return true and false respectively. Assume the array has at least one integer element. A one-element array is considered to be sorted.

Answers

Answer:

The program is as follows:

import java.util.Scanner;

public class MyClass {

   public static Boolean isSorted(int [] arr){

       Boolean sorted = true;

       for(int i = 0;i<arr.length;i++){

       for(int j = i;j<arr.length;j++){

           if(arr[i]>arr[j]){

               sorted = false;

               break;

           }

       }    

       }

       return sorted;

   }

   public static void main(String args[]) {

       Scanner input = new Scanner(System.in);

       int n;

       System.out.print("Length of array: ");

       n = input.nextInt();

       int[] arr = new int[n];

       System.out.println("Enter array elements:");

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

           arr[i] = input.nextInt();

       }

      Boolean chk = isSorted(arr);

     System.out.print(chk);

   }

}

Explanation:

The method begins here

This line defines a method named isSorted

   public static Boolean isSorted(int [] arr){

This line declares a boolean variable and initializes it to true

       Boolean sorted = true;

The next two iterations iterate through elements of the array

       for(int i = 0;i<arr.length;i++){

       for(int j = i;j<arr.length;j++){

This compares an array element with next elements (to the right)

           if(arr[i]>arr[j]){

If the next element is smaller than the previous array element, then the array is not sorted

               sorted = false; The boolean variable is updated to false

               break; This breaks the loop

           }

       }    

       }

This returns true or false, depending on the order of the array

       return sorted;

   }

The main method begins here

public static void main(String args[]) {

       Scanner input = new Scanner(System.in);

       int n;

This prompts user for length of array

       System.out.print("Length of array: ");

This gets length of array from user

       n = input.nextInt();

This declares an array

       int[] arr = new int[n];

This prompts user for array elements

       System.out.println("Enter array elements:");

The following iteration gets the array elements

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

           arr[i] = input.nextInt();

       }

This calls the isSorted array      

     Boolean chk = isSorted(arr);

This prints true or false, depending if the array is sorted or not

     System.out.print(chk);      

   }

Write a Python 3 program to read from a .csv file containing rates from power companies. Your program should determine the average commercial rate, and also display the information for the highest and lowest rates found.

Answers

Answer:

In python:

file = open("rates.csv", "r")

ratecount = 0

ratesum = 0

mylist = []

rates = file.readlines()

for nums in rates:

     num = nums.rstrip('\n')

     mylist.append(int(num))

     for i in num:

           ratesum= ratesum + int(i)

           ratecount = ratecount + 1

print("Maximum Rate: "+str(max(mylist)))

print("Minimum Rate: "+str(min(mylist)))

print("Average Rate: "+str(ratesum/ratecount))

Explanation:

This opens the csv file

file = open("rates.csv", "r")

This initializes the number of rates in the file

ratecount = 0

This initializes the sum of the rates

ratesum = 0

This initializes an empty list

mylist = []

This reads the rates into lines

rates = file.readlines()

This iterates through the rates (as a string)

for nums in rates:

This removes the newline character \n in the rates

     num = nums.rstrip('\n')

This appends the rates (as an integer) to the empty list

     mylist.append(int(num))

The following counts the rates in the file and also sum them up

     for i in num:

           ratesum= ratesum + int(i)

           ratecount = ratecount + 1

This prints the maximum of the rates

print("Maximum Rate: "+str(max(mylist)))

This prints the minimum of the rates

print("Minimum Rate: "+str(min(mylist)))

This calculates and prints the average rate

print("Average Rate: "+str(ratesum/ratecount))

As a security measure, you implement time and date stamps in a payroll application program while transactions are being recorded. What is the role of this security measure

Answers

Answer:

Explanation:

The main role of this security measure is to maintain the integrity and validity of the recorded transactions. Implementing these timestamps and dates allows for transactions to be completely organized and easily found by simply searching for the time that the transaction took place. This also helps prevent anyone from making false transactions as they can be easily traced using these time stamps to make sure that they actually happened.

Aaron is staying at a hotel that charges $100 per night plus tax for a room. A tax of 8% is applied to the room rate per day and an additional one-time fee of $5.00 is charged by the hotel. Which of the following represents total charge, in dollars, for staying x nights?

(100 + .08*x) + 5
1.08(100*x) + 5 correct answer
1.08(100*x + 5)
1.08(100 + 5)* x
Template for your consideration

T = .08 # tax for each day
F = 5.00 # one time fee
R = 100 # room rate
d = int(input("Enter the number of days stayed at the hotel "))
c = 0 # initialize cost variable
if (d > 0): # days > 0
# calculations here to compute the solution
# remember to use constants T R and F in your calculations
# use the correct answer provided
print(" the cost for ", d, " days is ", c )
else: # here m is <= 300 # s <= 0
print(" Invalid entry for days ", d )

Answers

Answer:

We use the Python language to implement the code, if you have and IDE, simply copy and paste the code and run it

Note: the cost function is  c=(R+ .08*d)+5

Explanation:

#initialize some variables

T = 0.08 # tax for each day

F = 5.00 # one time fee

R = 100 # room rate

d = int(input("Enter the number of days stayed at the hotel "))

c = 0 # initialize cost variable

if (d > 0):

   c=(R+ .08*d)+5

   print(" the cost for ", d, " days is ", c )

else:

   print(" Invalid entry for days ", d )

Which of the following is a sample IPv4 address?
99.14.242.51
99.14.342.51
99.14.242.51.21
002:0de6:0001:0042:0100

Answers

Answer:

The first one, 99.14.242.51 is the only valid IPv4 address listed.

Explanation:

An IPv4 address is formatted as four eight-bit numbers separated by decimals. This means that a valid one will have four numbers from 0 to 255, with decimals in between.

The first one, 99.14.242.51 is a valid IPv4 address.

The second one has the number 342, which is greater than eight bits.

The third one has five octets.

The fourth one is in the wrong format altogether, using what appear to be 32-bit numbers

Choose the correct term to finish the program. When done, the contents of info will be as shown.

{3: 10.4:23, 11:31}

>>> info = {3:10, 4:23, 7:10, 11:31}

>>> info

(7

delete

pop

remove

Answers

Answer:

The correct term is info.pop(7)

Explanation:

Given:

info = {3:10, 4:23, 7:10, 11:31}

Required

Which term removes 7:10 from the dictionary

To remove an item from a dictionary in Python, you follow the syntax below:

[dictionary-name].pop(key)

In this case:

The dictionary name is info and the key is 7

So, the term that implements the syntax is: info.pop(7)

After the instruction info.pop(7) is executed, the content of the dictionary becomes: {3: 10.4:23, 11:31}

How do the interests of carriers differ from the interests of websites? What are the implications for websites from a value chain perspective?

Answers

Answer:

Explained below.

Explanation:

- The interest of the carriers has it's major focus on the process of getting funds from both individual customers and corporate entities that run the websites. However, the interest of websites’ has it's major focus on the process of generating funds in form of subscriptions or funds gotten from paid adverts from both individual customers and corporate entities.

- In terms of value chain perspectives; the websites experience far more pressure to keep fresh and exciting features and services on their platform while carriers don't experience that but only experience having to compete with innovations being done by their existing competitors to remain leaders in the field.

Match the soft skills with their descriptions.


to foster approachability among team members

to come up with creative but practical solution

to set priorities and accomplish goals

to identify and effectively use a team’s potential

to accomplish goals


leadership

analytical thinking

coordination

time management

Answers

Answer:

1. Leadership.

2. Analytical thinking.

3. Time management.

4. Coordination.

Explanation:

1. Leadership: to foster approachability among team members. A leader can be defined as an individual who is saddled with the responsibility of controlling, managing and maintaining a group of people under him or her.

Some types of power expressed by leaders are referent power, Coercive,

Leaders use their powers to get other people to follow them. Some forms of power result from a formalized position in the organization, while others derive from personal characteristics or knowledge.

2. Analytical thinking: to come up with creative but practical solution. It is a creativity and problem-solving technique adopted by individuals or group of people by spontaneously gathering ideas through intensive thinking and analysis of a situation.

3. Time management: to set priorities and accomplish goals. It typically involves the process of allocating time frames to enhance the level of performance.

4. Coordination: to identify and effectively use a team’s potential. It is a leadership quality that involves creating harmony between teammates and exploiting available opportunities.

Do these devices allow you to view photos using the cloud?

Please help I'll give 30 points QUICK!

Answers

Answer:

Yes, You can view the cloud on those devices

Answer: C is it

Explanation:

_____ is responsible for packet forwarding. a. Transmission Control Protocol b. User Datagram Protocol c. Extensible Authentication Protocol d. Internet Protocol

Answers

Answer:

d. Internet Protocol

Explanation:

Internet Protocols suite  are used to transport packets from the host network across other networks. This task is usually performed by optimizing the size of each available packet, which are then forwarded through the internet protocol (IP) address.

Therefore, Internet Protocol is responsible for packet forwarding.



For a business that is properly using a social media information system, the system can

generate information about what competitors are doing.

True

False

Answers

Answer:

True

Explanation:

Social media information system is an information system that support the sharing of content among network of users. This enables users to form tribes, that is , a group of people with common interest.

This then allows the opportunity to gather information about what competitors are doing.

There are a number of roles held by various users of online digital media, including contributors, conversationalists,
critics, organizers, spectators, and joiners. Often, people who have a strong presence online will hold two or more roles.
Describe at least three of these roles. Of the roles you described, why might someone act on two of them at the same
time? That is, what kind of online activity would result in a person taking on those two roles?

Answers

Answer:

The mass media is a huge phenomenon. Through the various different platforms, print or broadcast, the media is able to reach millions of people like no other force. Without the media, powerful speeches by politicians would affect no one, local events would remain local, and performances by great actors would be seen only by the people in the immediate audience. The media overcomes distances, and builds a direct relationship with the audience. Many sociologist

The answer above should be correct !!
I hope she/he helps !

Explanation:

Write a for loop with a range function that prints the following output. Name the target variable number. 0 1 2 3 4 5

Answers

Answer:

The program in Python is as follows:

for number in range(6):

    print(number, end=' ')

Explanation:

From the program, the range is 0 to 5.

The following line iterates from 0 to 5 using "number" as its iterating variable

for number in range(6):

This prints each number in the range followed by a blank space

    print(number, end=' ')

The for loop with a range function that prints the following output 0 1 2 3 4 5 is as follows:

for i in range(6):

   print(i)

The code is expected to print the values 0 1 2 3 4 5.

A for loop is used to loop through the range values of 6. The range value of 6

are 0 1 2 3 4 and 5.

The range function is used as required to get the value.

Finally, we print the looped values

The code will output 0 1 2 3 4 5

learn more: https://brainly.com/question/19007993?referrer=searchResults

The best known multiple letter encryption cipher is the __________ , which treats digrams in the plaintext as single units and translates these units into ciphertext digrams

Answers

Answer:

Playfair Cipher.

Explanation:

Encryption is a form of cryptography and typically involves the process of converting or encoding informations in plaintext into a code, known as a ciphertext. Once, an information or data has been encrypted it can only be accessed and deciphered by an authorized user.

Some examples of encryption algorithms are 3DES, AES, RC4, RC5, and RSA.

The best known multiple letter encryption cipher is the Playfair Cipher, which treats digrams in the plaintext as single units and translates these units into ciphertext digrams.

In the Playfair Cipher, a 5 × 5 matrix comprising of letters is developed using a keyword and then, the matrix is used to encrypt the plaintext as a pair i.e two letters at a time rather than as a single text.

Other Questions
What is the inverse of f(x) = 1x+2? Determine if the statement is true or false.Structure and materials are hard to separate in a design.TrueFalse To correct for positive externalities, the government should: do nothing, since no harm is done by positive externalities Which expression is equivalent to 4/9(2n 3)? Find the x- and y-intercepts of the function. please explain help asap pleaseI meed help this is my second time posting this question The nurse reviews insulin administration with a client. Which statement best indicates that the client will continue to perform the procedure correctly? Melanie earns average tips of 18% while waiting tables. If her sales one night were $730.84, what did she make in tips? How can epigenetic changes alter the amount proteins that are made by a cell? What kind of cereal should i eatA. Cinnamon Toast CrunchB. Oreo'sC. Cocoa KrispiesD. Honey Nut Cherrios determine the ratio a:c if a:b=1:2 and b:c=3:4 Which of the following achievements BEST illustrates Maya knowledge of astronomy? A. They used slash-and-burn agriculture. B. They built temples and pyramids. C. They developed a complex calendar system. D. They developed a hieroglyphic writing system. If your percent of discount is 25% and your sales price is $40, what is your original price? Please show me how you got your answer. Please answer this correctly without making mistakes Is there an y-intercept? I will mark brainliest solve for x write your answer as a proper fraction or as a whole or mixed number 2/5(5x-3)+3/5=4x-1/5 can someone help me please The Talley Corporation had taxable operating income of $455,000 (i.e., earnings from operating revenues minus all operating costs). Talley also had (1) interest charges of $70,000, (2) dividends received of $5,000, and (3) dividends paid of $10,000. Its federal tax rate was 21% (ignore any possible state corporate taxes). Recall that 50% of dividends received are tax exempt.Required:a. What is the firms taxable income?b. What is the tax expense? Government - T1 - 2106315 CREnglishE!Place each example in the correct category. Which activities demonstrate expressed powers, and which demonstrateimplied powers?raising taxesExpressed powersImplied powersregulating tradecoining moneydating soldiersdeclaring wascreating a national bankIntroDone Jason is watering his garden. He uses 2.75 gallons of water each minute. How muchwater does Jason use after watering his garden for 3 minutes? A pole that is 3.3 m tall casts a shadow that is 1.4 m long. At the same time, a nearby building casts a shadow that is 47.5 m long. How tall is the building?Round your answer to the nearest meter.