5.
lord
Write full forms: INTEL, GUI, URL, CAD, LCD, ALU, BSNL​

Answers

Answer 1

Answer:

Integrated Electronics

Graphical user interface

Uniform resource locator

Computer aided design

Liquid crystal display

Arithmetic and logic unit


Related Questions

g Write a program that keeps asking the user for new values to be added to a list until the user enters 'exit' ('exit' should NOT be added to the list). These values entered by the user are added to a list we call 'initial_list'. Then write a function that takes this initial_list as input and returns another list with 3 copies of every value in the initial_list. Finally, inside main(), print out all of the values in the new list. For example: Input: Enter value to be added to list: a Enter value to be added to list: b Enter value to be added to list: c Enter value to be added to list: exit Output: a b c a b c a b c Note how 'exit' is NOT added to the list. Also, your program needs to be able to handle any variation of 'exit' such as 'Exit', 'EXIT' etc. and treat them all as 'exit'.

Answers

Answer:

Following are the code to the given question:

def list_function(initial_list):#defining a method list_function that takes list in parameter

   l = initial_list*3#defining l that multiple the list by 3

   return l#return list  

def main(): #defining main method    

   initial_list = []#defining an empty list

   while True:#defining while loop

       i = input("Enter value to be added to list: ")#defining i variable that input list value

       i = i.rstrip()#use rstrip method

       if i.lower() == "exit" and "EXIT" and "Exit":#defining if block that checks list value is in lower case  

           break#use break keyword

       initial_list.append(i)#use list that adds input value

       l = list_function(initial_list)#defining l variable that calls the list_function method

   for i in l:#defining for loop that print list items

       print(i)#print value

main()

Output:

Please find the attached file.

Explanation:

In this code, a method "list_function" is declared that takes list "initial_list" in parameter and defines "l" variable that multiple the list by 3 and return its list value.

In the main method an empty list "initial_list" is declared that defines a while loop that input list value and use rstrip method and define and if block that checks list value is in lower case and pass into the method and use for loop to prints its values.

The use of Quick Styles is a great way to save
a. money
b. grades
C. time
d. files
Please select the best answer from the choices provided
Ο Α
B

Answers

I believe the best answer choice is A money.

Answer:

c

Explanation:

trust

Which effect is used in this image?

A.sepia effect

B.selective focus

C.zoom effect

D.soft focus

Answers

Answer:

A.sepia effect.

It is Selective focus!

For the following machine code expressed in hexadecimal, write the corresponding MIPS assembly instruction. Note: in case of branch or jump instructions, you should write the target address in hexadecimal notation in the MIPS assembly instruction. e.g., j 0x00000016.

Machine code:0x08100008
Assembly instruction:??

Answers

Answer:

Assembly instruction is j 0x00400020

Explanation:

j 0x00400020

EXPLAINATION-

GIVEN Machine Code = 0x 0 8 1 0 0 0 0 8

Step 1:

Now convert 0 8 1 0 0 0 0 8 Each digit to Binary

= 0000 1000 0001 0000 0000 0000 0000 1000

= 000010 00000100000000000000001000

000010 is opcode of j instruction

we are left with

0000 0100000000000000001000

Step 2:

Add two zeroes to right

0000 0100 0000 0000 0000 0010 0000

Step 3:

Remove 4 highest bit

0100 0000 0000 0000 0010 0000

Decimal of it is 4194336

Step 4:

Now convert it into Hexadecimal

we get 400020

So Assembly instruction is j 0x00400020

j 0x00400020

.......................................................................................................................................................................

When a sentinel is used in a (______/posttest) loop to validate data, the loop repeats as long as the input is (valid/______). pretest, invalidPress enter after select an option to check the answer posttest, invalidPress enter after select an option to check the answer pretest, validPress enter after select an option to check the answer posttest, valid

Answers

Answer:

When a sentinel is used in a (pretest/post test) loop to validate data, the loop repeats as long as the input is (valid/invalid).

Explanation:

Required

Fill in the gaps

Sentinel are used to validate or invalidate loops (pretest and post test loops).

Since , some parts of the brackets have aready been filled, we simply complete the blanks with the opposite of the term in the bracket. i.e. the opposite of post test is pretest and the opposite of valid is invalid.

So, the blanks will be filled with pretest and invalid.

The relation LIBRARY records books currently on loan to students. Each book has one ISBN_NO The library has several copies of each book. A student may borrow more than one book but may not borrow a book they have already checked out. Assume also that no two library members have the same name.
ISBN_NO STUDENT_NAME STUDENT_ADDRESS
01 Liu Phelps
02 Liu Phelps
02 Holmes Phelps
03 Lopez Hollister
LIBRARY
a) Is LIBRARY in 1NF?
b) Identify candidate key(s)
c) Identify functional dependencies
d) Explain why is LIBRARY not in 2NF?
e) Decompose LIBRARY to comply with 2NF rules.

Answers

I think the answer is E

Which of the examples is part of client-side code?
A.
update bank account balance
B.
prompt for special characters in user name
C.
navigate to a different website
D.
delete an online social networking account
E.
shop for books online

Answers

Answer:

I think it is A(update bank account balance)

not really sure

Answer:

B.

Explanation:

javascript or python's input code is a client sided code

A person's oral communication skills can give either a positive or negative first impression.

Answers

Answer:

true

Explanation:

oral communication can be awkward or good.

how to make an app according to peoples will

Answers

Answer:

Follow these steps to create your own app:

1)Choose your app name.

2)Select a color scheme.

3)Customize your app design.

4)Choose the right test device.

5)Install the app on your device.

6)Add the features you want (Key Section)

7)Test, test, and test before the launch.

8)Publish your app.

Explanation:

(!!_!!)

Select which is true for for loop​

Answers

Answer:

i dont understand what you mean and what you are asking in the qestion

Explanation:

DR JAVA
Write a program that includes the following while loops.
Input radius (double) values and prints the diameter, circumference, and area of a circle. The loop will stop executing when a 0 or negative value is entered. Declare a global constant for PI, where PI = 3.14159265. Be sure and echo the input and display all output to 3 decimal places.
a second while loop that works as above, but instead asks the user if they want to enter radius (Y/N). What happens if you enter a negative radius?
Input temperatures until 999 and print whether above or below freezing.
Input temperatures until 999 and count number above and below freezing.
Input temperatures until 999 and print the average temperature.
Ask user if they want to enter a temperature and print whether above or below freezing.
a while loop that repeatedly enters test scores (integer) (pick a sentinel) and counts the numbers of As, Bs, Cs, Ds, and Fs and also prints the average test score.

Answers

Answer:

Explanation:

The following code is all written in Java. It is a very long program that contains methods for all of the requested while loops in the question. Each one is called inside the main method itself. A part of the output is shown in the attached picture below due to the output being so long. Due to technical difficulties, I have attached the code as a txt file below.

Consider three strings instr1, instr2 and instr3 having only lowercase alphabets. Identity a string outstr, with the smallest possible length such that when strings instr1, outstr and instr2 are concatenated in the same order instr3 becomes a substring of the concatenated string. Print the smallest possible length of (instr1 + outstr - instr2) satisfying the given criteria. Note: The string outstr can also be an empty string Input Format: The first second and third line contain strings instr1instr2 and instr3 respectively. Read the input from the standard input stream. Output Format: Print the smallest possible length of (instr1 + outstr + instr2) satisfying the given criteria. Print the output to the standard output stream You're Explanati CIAR Sample Output Jusuen that when strings instr 1. outstr and instr2 are concatenated in the same order instr3 becomes a substring of the concatenated string. Print the smallest possible length of (instr. outstr - instr2) satisfying the given criteria

Answers

10 points is nothing to answer this junk just saying

Assign sum_extra with the total extra credit received given list test_grades. Iterate through the list with for grade in test_grades:. The code uses the Python split() method to split a string at each space into a list of string values and the map() function to convert each string value to an integer. Full credit is 100, so anything over 100 is extra credit.Sample output for the given program with input: '101 83 107 90'Sum extra: 8(because 1 + 0 + 7 + 0 is 8)user_input = input()test_grades = list(map(int, user_input.split())) # test_grades is an integer list of test scoressum_extra = 0 # Initialize 0 before your loop''' Your solution goes here '''print('Sum extra:', sum_extra)

Answers

Answer:

Replace ''' Your solution goes here '''

With

for i in test_grades:

   if i > 100:

       sum_extra+=i - 100

Explanation:

This iterates through the list

for i in test_grades:

This checks for list elements greater than 100

   if i > 100:

The extra digits (above 100) are then added together

       sum_extra+=i - 100

Write a program that accepts inputs, outputs them and exits correctly when - 1
is pressed

Answers

Answer:

Explanation:

The following program is written in Python. It simply creates an endless loop that continously asks the user for an input. If the input is not -1 then it outputs the same input, otherwise it exists the program correctly. A test output can be seen in the attached image below.

while True:

   answer = input("Enter a value: ")  

   if answer != "-1":

       print(answer)

   else:

       break

You are the IT administrator for a small corporate network. The employee in Office 1 needs your assistance managing files and folders. Your task is to use the command prompt to complete the following:

a. Create the D:​\​utilities​\​recover directory. Use the md or mkdir command to create (make) a directory.
b. Delete the D:​\​software​\​arch98 directory and all of its files.
c. Use the rd command to delete (remove) a directory.
d. Use the /s switch to remove the directory and all of its contents at once.

Answers

Answer:

(a) mkdir /d D:\utilities\recover    

     or

    mkdir D:\utilities\recover    

(b) rd  /s  D:​\software​\arch98

Explanation:

(a) To make a new directory we use the md or mkdir command followed by the name of the directory as follows;

mkdir [name_of_directory]

The name of the directory could also be a relative or absolute path depending on the request.

In the task, the specified directory uses an absolute path given as D:​\​utilities​\​recover. This path is in a drive D. Therefore, if you are in another drive different than D, to run this command, it is a great idea to do that with the /d switch.

In summary:

i. if in drive D, to make a directory D:\utilities\recover, type the following command;

mkdir  D:\utilities\recover    

ii. if otherwise in a different drive, type the following command.

mkdir /d D:\utilities\recover

(b) To delete a directory, we use the rd or rmdir command. If the directory has contents that also need to be deleted, we use the switch /s alongside the rd or rmdir.

In the task given, the directory to be deleted is D:\software\arch98. This includes deleting all of its files too. To do this, type the following command;

rd /s D:\software\arch98

Although it is not a term Excel uses, how do most people think of Excel?

Answers

Answer:

People think of Excel as a Spreadsheet.

is defined as the condition in which all of the data in the database are consistent with the real-world events and conditions

Answers

[tex]\boxed{Data \:anomaly}[/tex] is defined as the condition in which all of the data in the database are consistent with the real-world events and conditions.

[tex]\red{\large\qquad \qquad \underline{ \pmb{{ \mathbb{ \maltese \: \: Mystique35}}}}}[/tex]

Used for monitoring web activity by users to make sure that sensitive information won't leave the building.

A, Web server
B, FTP server
C, POP server
D, Proxy server ​

Answers

Answer: PROXY

Explanation:

The basic objective of the web server is to store, process and deliver web pages to the users.

FTP server is to allow users to upload and download files. An FTP server is a computer that has a file transfer protocol (FTP) address and is dedicated to receiving an FTP connection. FTP is a protocol used to transfer files via the internet between a server (sender) and a client (receiver)

pop provides access via an Internet Protocol (IP) network for a user client application to a mailbox (maildrop) maintained on a mail server

proxy server is a system that isolates internal clients from the servers by downloading and storing files on behalf of the clients. it intercepts requests for web-based or other resources that come from

Please write 2 paragraphs on where you envision yourself academically, and personally in 5 years, and in 10 years.
(What would you have accomplished by the year 2026, and 2031).

Answers

Answer:

Explanation:

This is a personal answer because everyone envisions something different.

In 5 years, I hope to have a well established Front-End Development freelancing site and various clients. Hopefully, this will drastically increase my income and allow for more options. I also would like to start investing heavily in different areas of interest. As for personal life, I would like to learn an instrument and work on developing relationships with those close to me.

In 10 years, I hope to have a large sum of money invested in various assets. I would also love to buy a piece of land and build a small home for myself. I see myself also having worked for a startup company developing an application that would drastically better the lives of a specific group of individuals. If all of this were to become a reality, I guess the only thing left that I would love to do would be to travel the world with someone special by my side.

Again, everyone's vision is different/unique and special to them. Hope this helped.

Write an algorithm that accepts two numbers,
divide the first number by the second and display the
quotient

Answers

Let’s write the algorithm in the form of a pseudocode!

Pseudocode:Quotient_of_Two_Number
Declare: num1, num2, quotient
START
Display (Enter a number)
Read num1
Display (Enter a number)
Read num2
quotient = num1/num2
Print (“Quotient”)
STOP

What is computer code?
A. Java Script
B. XML
C. HTML
D. Any programming language

Answers

Answer:

D

Explanation:

what mechanical advantage does a hydraulic press have when punching holes in a metal sheet with a force of 800N using only 200N ? provide answer as a ratio ​

Answers

Answer:

Ratio is 1/4

Explanation: The thing is when using small force on such hydraulic presses you can get much more force than you used. The thing is a small force on small surface generates much much more force on bigger surface which is the main principle of hydraulic press. Therefore a hydraulic press can push holes in metal with a starting force of only 200 N

LAB: Divide input integers
Write a program using integers userNum and divNum as input, and output userNum divided by divNum three times. Note: End with a newline.
Ex: If the input is:
2000 2
the output is:
1000 500 250
Note: In Java, integer division discards fractions. Ex: 6 / 4 is 1 (the 0.5 is discarded).
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
/* Type your code here. */
}
}
(My professor wants us to use this temple and I'm not sure how I should start typing the code were it says "type code here". I've tried differnt forms like the one provided below but they all have errors according to the program. it tells me that i have to place ; .
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
userNum= int(input())
divNum= int(input())
# calculating the division three times
userNum=userNum//divNum
#i have used end=' ' so that it does not produce new line
# instead of that it produce space
print(userNum,end=' ')
userNum=userNum//divNum
print(userNum,end=' ')
userNum=userNum//divNum
print(userNum,end=' ')
}
}
Errors:
Program errors displayed here
LabProgram.java:5: error: '.class' expected userNum= int(input()) ^ LabProgram.java:5: error: ';' expected userNum= int(input()) ^ LabProgram.java:6: error: '.class' expected divNum= int(input()) ^ LabProgram.java:6: error: ';' expected divNum= int(input()) ^ LabProgram.java:7: error: illegal character: '#' # calculating the division three times ^ LabProgram.java:7: error: ';' expected # calculating the division three times ^ LabProgram.java:7: error: ';' expected # calculating the division three times ^ LabProgram.java:9: error: illegal character: '#' #i have used end=' ' so that it does not produce new line ^ LabProgram.java:9: error: ';' expected #i have used end=' ' so that it does not produce new line ^ LabProgram.java:9: error: ';' expected #i have used end=' ' so that it does not produce new line ^ LabProgram.java:9: error: ';' expected #i have used end=' ' so that it does not produce new line ^ LabProgram.java:9: error: ';' expected #i have used end=' ' so that it does not produce new line ^ LabProgram.java:9: error: ';' expected #i have used end=' ' so that it does not produce new line ^ LabProgram.java:10: error: illegal character: '#' # instead of that it produce space ^ LabProgram.java:10: error: ';' expected # instead of that it produce space ^ LabProgram.java:10: error: ';' expected # instead of that it produce space ^ LabProgram.java:10: error: ';' expected # instead of that it produce space ^ LabProgram.java:11: error: ';' expected print(userNum,end=' ') ^ LabProgram.java:12: error: ';' expected userNum=userNum//divNum ^ LabProgram.java:13: error: ';' expected print(userNum,end=' ') ^ LabProgram.java:14: error: ';' expected userNum=userNum//divNum ^ LabProgram.java:15: error: ';' expected print(userNum,end=' ') ^ 22 errors

Answers

Mark Brainliest please


Answer:
# The user is prompted to enter number as dividend
# The received number is assigned to userNum
userNum = int(input("Enter the number you want to divide: "))
# The user is prompted to enter number as divisor
# The divisor is assigned to x
x = int(input("Enter the number of times to divide: "))
# divideNumber function is defined to do the division
def divideNumber(userNum, x):
# counter is declared to control the loop
counter = 1
# the while-loop loop 3 times
# the division is done 3 times
while counter <= 3:
# integer division is done
# truncating the remainder part
userNum = userNum // x
# the result of the division is printed
print(userNum, end=" ")
# the counter is incremented
counter += 1
# the divideNumber function is called
# the received input is passed as parameter
# to the function
divideNumber(userNum, x)
# empty line is printed
print("\n")
Explanation:
The // operator in python works like the / operator in C. The // operator returns only the integer part of division operation. For instance 6 // 4 = 1. The fraction part is discarded

In the given code you include two languages, that's why it will give the error messages, and for better understanding, we give the program into two languages:

Following are the Java and Python Program to these questions:

Java Program:

import java.util.*;//import package

public class LabProgram  //defining a class LabProgram  

{

public static void main(String[] ar)//defining main method  

{

int userNum,divNum;//defining integer variable

Scanner on=new Scanner(System.in);//defining Scanner class Object for user-input

userNum=on.nextInt();//input value

divNum=on.nextInt();//input value

for(int i=0;i<3;i++)//defining loop to divide value 3 times

{

userNum=userNum/divNum;//dividing userNum by divNum and store its value into userNum

System.out.println(userNum);//print userNum value

}

}

}

Python Program:

userNum= int(input())#input integer value

divNum= int(input())#input integer value

# calculating the division three times

userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value

print(userNum)#print userNum value

userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value

print(userNum)#print userNum value

userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value

print(userNum)#print userNum value

Output:

Please find the attached file.

Learn more:

brainly.com/question/21661364

I don't know, but could you get all edmentum.com answers by creating a teacher's account and choosing the lesson your on and get all the answers that way?

Answers

Answer:

you have to have some authorization

Explanation: just tried

2.11 (Separating the Digits in an Integer) Write a script that inputs a five-digit integer from the user. Separate the number into its individual digits. Print them separated by three spaces each. python

Answers

Answer:

The program in Python is as follows:

number = int(input())

myList = [int(num) for num in str(number)]

for i in myList:

   print(i,end="   ")

Explanation:

This gets input from the user

number = int(input())

This converts the number to a list (each digit of the number becomes the elements of the list)

myList = [int(num) for num in str(number)]

This iterates through the list

for i in myList:

This prints the list element followed by 3 blank spaces

   print(i,end="   ")

explain why you can determine machine epsilon on a computer using IEEE double precision and the IEEE Rounding to Nearest Rule by calculating (7/3 - 4/3) - 1

Answers

Answer:

I think this is the answer

Explanation:

so if it is not right use it as an exsample


What software tool can you use to see the applications that are currently running?

Answers

Answer:

You can use the task manager to see what programs are currently running.

Explanation:

Answer:

The answer is Task Manager.

Explanation:

The Microsoft Windows Task Manager is a general, quick, and easy method of viewing what programs, background processes, and apps are running on the computer.

Using the Task Manager, you can also view how much memory a program is using, stop a frozen program, and view available system resources.

In TCP, a welcoming socket is (a) used by the server to receive incoming request from a client (b) closed by the server when interaction with that client is completed (c) bound to a specific port number (d) all of the above

Answers

Answer: (d) all of the above

Explanation:

The Transmission Control Protocol refers to a transport protocol which is used to ensure the transmission of packets on top of IP.

In TCP, a welcoming socket is:

• used by the server to receive incoming request from a client

• closed by the server when interaction with that client is completed

• bound to a specific port number.

Therefore, the correct option is "All of the above".

Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (currentPrice * 0.051) / 12 (Note: Output directly. Do not store in a variable.). Ex: If the input is: 200000 210000 the output is:
This house is $200000.
The change is $-10000 since last month.
The estimated monthly mortgage is $850.0.

Answers

Answer:

The program in Python is as follows:

currentPrice = int(input("Current: "))

lastMonth = int(input("Last Month: "))

print("The house is $",currentPrice)

print("The change is $",(currentPrice-lastMonth),"since last month")

print("The estimated monthly mortgage is $",(currentPrice * 0.051) / 12)

Explanation:

Get input for current price

currentPrice = int(input("Current: "))

Get input for last month price

lastMonth = int(input("Last Month: "))

Print current price

print("The house is $",currentPrice)

Print change since last month

print("The change is $",(currentPrice-lastMonth),"since last month")

Print mortgage

print("The estimated monthly mortgage is $",(currentPrice * 0.051) / 12)

The following SQL is which type of join? SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME, ORDER_ID FROM CUSTOMER_T,ORDER_T WHERE CUSTOMER_T. CUSTOMER_ID = ORDER_T. CUSTOMER_ID

Answers

Answer:

Self Join

Explanation:

Required

The type of JOIN

Notice that the given query joins the customer table and the order table without using the keyword join.

SQL queries that join tables without using the keyword is referred to as self join.

Other types of join will indicate the "join type" in the query

Other Questions
3^-6x(3^3 divide 3^0)^2 wrote four to 6 sentences explaining the use of extended metaphor in the poem "Caged bird" by maya Angelou The function h defined by h(t)=(49 + 4.9t)(10 - t) models the height, in meters, of an object t seconds after it is dropped from a helicopter.Find or approximate the time when the object hits the ground. Explain your method. You pick a card at random.2 3 4 5What is P(odd)?Write your answer as a percentage. Solve for r. -3r-9=1r+2 The altitude of a triangle is increasing at a rate of 1.5 1.5 centimeters/minute while the area of the triangle is increasing at a rate of 1.5 1.5 square centimeters/minute. At what rate is the base of the triangle changing when the altitude is 8 8 centimeters and the area is 88 88 square centimeters Read the selection below from the short story The Pit and the Pendulum by Edgar Allan Poe and complete the statement that follows.I saw clearly the doom which had been prepared for me, and congratulated myself upon the timely accident by which I had escaped. Another step before my fall, and the world had seen me no more and the death just avoided was of that very character which I had regarded as fabulous and frivolous in the tales respecting the Inquisition. To the victims of its tyranny, there was the choice of death with its direst physical agonies, or death with its most hideous moral horrors. I had been reserved for the latter. By long suffering my nerves had been unstrung, until I trembled at the sound of my own voice, and had become in every respect a fitting subject for the species of torture which awaited me.All of the following stylistic devices appear in the passage above except __________.repetition of wordssensory imagerycomplicated sentencessimile A chef got 9 bags of onions. The red onions came in bags of 6 and the yellow onions came in bags of 7. If the chef got a total of 59 onions, how many bags of each type of onion did he get? ____drugs have side effects.A. SomeB. AllC. No Nhan and Phuong both left town A for town B at 5 am . After 5 hours , Nhan and Phuong were 102 km and 52 km away from town B respectively . The ratio of Nhan's speed to Phuong's speed was 3 : 4 and their speeds remained the same the whole journey . At what time did Nhan reach town B ? Show your full work. HELP QUICK help find the value of x and the measure of each angle Which element would most likely have an electron affinity measuring closest to zero? PLZ HELP.A music store originally purchased a piano at a cost of $892.03 and marked it up 125%. After a few weeks,however, the store discounted the piano 50% in order to make room for new merchandise. What was thediscounted price? Who were the most important composer of the Baroque Era?BachVivaldiHandelAll The Above I need the answer plsss The equation of a linear function in point-slope form is y y1 = m(x x1). Harold correctly wrote the equation y = 3(x 7) using a point and the slope. Which point did Harold use?(7, 3)(0, 7)(7, 0)(3, 7) The purpose of paraphrasing Shakespeares text is tochange the setting to modern day.make the language easier to understand.correct possible mistakes in the original plays.outline the relations among the characters. The pancreas contains exocrine cells that secrete digestive enzymes into the ____________ , and clusters of endocrine cells called pancreatic islets, which secrete insulin and ____________ , to regulate blood glucose levels. When blood glucose levels are high, the pancreas secretes the hormone insulin, which causes the liver to remove excess glucose from the blood and to store it in the liver as ____________ . When this stored form of glucose is low, the liver converts ____________ from fats and amino acids to glucose molecules. Most pancreatic cells produce pancreatic juice, which contains ____________ , to help neutralize the stomach acid. Pancreatic amylase digests ____________ , trypsin digests protein, and lipase digests fat. The major functions of the liver include: removing or detoxifying harmful substances from the blood; storing glycogen, ____________ , and several vitamins; synthesizing many proteins found in the blood ____________ ; and regulating blood cholesterol. Another function of the liver is to produce bile, which is a yellowish-green color because it contains bilirubin, a breakdown product of ____________ . Bile also contains bile salts, which serve to emulsify ____________ in the small intestine. identify the organ system pictured below and state two functions of this system in the body 3x-6y=24 y=Mx+b form