Answer:
Your answer is B
She forgot to record a transaction.
Explanation:
Edge 20 it’s right
why use a chart legend?
Answer:
A legend or key helps the user build the necessary associations to make sense of the chart.
Explanation:
Legends summarize the distinguishing visual properties such as colors or texture used in the visualization.
3.5 code practice question 1
Answer:
what is this a question or just saying something?
Explanation:
Answer:
uh what?
Explanation:
What Is an Antivirus?
Answer:
Antivirus software is a type of program designed and developed to protect computers from malware like viruses, computer worms, spyware, botnets, rootkits, keyloggers and such. Antivirus programs function to scan, detect and remove viruses from your computer.
Explanation:
What are the disadvantages of using folders
Answer:
√ folders can cause some inconvenience situation...
√ The decompress / compress action takes time.
√ When you double-click on a file inside a “folder”, what really happens is the file gets extracted to a temporary folder.
heres one:
when you delete a folder, he stuff inside gets deleted, and there isnt a way to get it back.
NO THIS ISNT ANY HOMEWORK!
Does anyone know a laptop under $200 that can run Minecraft Java edition and maybe 60fps?
PLEASE NAME A SPECIFIC ONE not to be rude but please don’t waste my time!
Sorry if I’m asking for too much we’re gonna travel soon and it’s gonna be for long months and I can’t bring my entire set up but I also don’t have much money and I can’t find any laptop like that so if you can help? Thank you!
Answer:
Name CPU, GPU & RAM My Rating (Out of 10)
HP Pavilion 15 Intel Core i7-8565U Nvidia MX 250 16GB 8.1
Asus VivoBook S15 Intel Core i5-8265U Nvidia MX250 8GB 7.8
Dell Inspiron 15 Intel Core i5-8250U Intel HD Graphics 16GB 7.6
Acer Aspire 5 Intel Core i5-8265U Nvidia MX250 8GB 7.5
Explanation:
I dont know the prices, I just searched it, though I will look into it more
Answer:
dont know the price but my mom bought me a macbook pro 13 inch and it works great !
Explanation:
edit: oop lol its like 1200 dollars
Write a program which asks the user for their name and age. The program should then print a sentence.
What is your name?
Cory
What is your age?
48
Cory is 48 years old.
Answer:
name = input("What is your name? ")
age = int(input("What is your age? "))
print("%s is %d years old."% (name, age))
Explanation:
This is a solution in python.
4.16 LAB: Count characters Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string. The output should include the input character and use the plural form, n's, if the number of times the characters appears is not exactly 1. Ex: If the input is: n Monday the output is: 1 n Ex: If the input is: z Today is Monday the output is: 0 z's Ex: If the input is: n It's a sunny day the output is: 2 n's Case matters. Ex: If the input is: n Nobody the output is: 0 n's
Answer:
In Python:
sttr = input("String: ")
ch = input("Character: ")
count = sttr.count(ch)
print(str(count)+" "+ch, end = '')
if count>1 or count==0:
print("'s")
Explanation:
This prompts the user for string
sttr = input("String: ")
This prompts the user for character
ch = input("Character: ")
This counts the number of occurrence
count = sttr.count(ch)
This prints the number of occurrence of the character
print(str(count)+" "+ch, end = '')
This checks if the number of occurrence is 0 or greater than 1.
if count>1 or count==0:
If yes, it prints 's
print("'s")
is an electronics standard that allows different kinds of electronic instruments to
communicate with each other and with computers.
Explanation:
MIDI is an acronym that stands for Musical Instrument Digital Interface. It is a standard protocol that helps to connects musical instruments with computers and several hardware devices to communicate. It was invented in the 80's as a way to standardize digital music hardwares.
IF IT HELPED U MARK ME AS A BRAIN LIST
Describing Lawyer Tasks
According to the video, which tasks do Lawyers commonly perform? Check all that apply.
O drawing up legal documents
guarding prisoners
O inspecting facilities for safety
trying cases in courts of law
O arresting criminals
counseling clients
Answer:
Explanation:
The answers are a, d, and f
Answer:
A, D ,F G
Explanation:
Write a program that prompts the user to enter two points (x1, y1) and (x2, y2) and displays their distance between them. The formula for computing the distance is: Square root of ((x2 - x1) squared + (y2 - y1) squared) Note that you can use pow(a, 0.5) to compute square root of a.
Answer:
x1 = input("enter x value of first number: ")
y1 = input("enter y value of first number: ")
x2 = input("enter x value of second number: ")
y2 = input("enter y value of second number: ")
ans = (float(x2)-float(x1))**2 + (float(y2)-float(y1))**2
ans = pow(ans, 0.5)
print(ans)
What is an antivirus?
Create a list called numbers containing the values from 1 through 15, then use slices to perform the following operations consecutively: a. Select number’s even integers. b. Replace the elements at indices 5 through 9 with 0s, then show the resulting list. c. Keep only the first five elements, then show the resulting list. d. Delete all the remaining elements by assigning to a slice. Show the resulting list.
Answer:
Kindly check explanation
Explanation:
From python :
List containing values from 1 through 15:
my_list = list(range(1,16))
#creates a list of values from 1 to 15,(16 is excluded)
B.) select even integers :
for digits in my_list :
if digit%2 == 0;
print(digit)
# prints numbers in the list which does not leave a remainder when divided by .
C.)
for digits in my_list[4,9]:
my_digit[digits] = 0
my_digits
#Replaces the elements at indices 5 through 9 with 0s, then show the resulting list.
D.)
my_digits[:5]
#selects digits with index 0 up to 4
E.)
del my_digits[:5]
#DELETE elements in my digits starting from the fifth index
In this section of your final project, you will write a basic script to create and back up files. You will create this script with the vi editor. The script will combine multiple commands and simplify a repeatable task. Your script should be named Firstname Lastname.BASH. Your script and your Linux directory structure should demonstrate that you have correctly written the script to do the following: Create files: In this section, you will demonstrate your ability to utilize various Linux commands to create text files. Create these files in the NEW directory. Ensure that the commands in your log file show that the following three text files were created using three different methods. Create the following files
XI A. A text file listing the quantity of operating system free space, titledFree_Space Content.txt B. A text file listing the directory contents of the OLD folder, titled OLD_Content.txt C. A text file showing the current month, day, and time (Title this fileTime File.tx.)
XI Modify and Move files: Utilize Linux commands to copy files to a different directory and renamethem A. Copy the following selected files from the OLD directory to the BACKUP directory. Ensure that you change the filename suffix fro XXX OLD to XXX BACKUP i. Free_Space_Content OLD.txt ii Directory Content OLD.txt i Time File OLD.txt Move all files from the NEW directory to the BACKUP directory (no renaming necessary). Clean up the Linux directory structure by deleting the items in the NEW directory B.
Answer:
bjdjdindbdubduf kndjnxjxjfujdjbdjbd bzjbd djbdibdu jdjdidnidndi xubdubdufjksk. xud ufbsjjdi djneibdudbdujfjfbjbdj fu. fjfjjdubdjjdbjd jdbdinkdkdnd. djjdibnfjdkndindundi jdudjbdubd djbdu bdudjdjjd djidndud dudbid anís us dj
Answer:
####Bash Script Start###################################
#######Please check the permissions on the folders inorder to make sure the script works
#!/bin/bash
if [ ! -d NEW ]; then
mkdir -p NEW;
fi
df > "NEW/Free_Space_Content.txt"
touch "NEW/OLD_Content.txt" | ls -l OLD > "NEW/OLD_Content.txt"
> "NEW/Time_File.txt" | date +"%B %c" > "NEW/Time_File.txt"
cp "OLD"/*.txt "BACKUP"
rename OLD BACKUP "BACKUP"/*.txt
mv "NEW"/*.txt "BACKUP"
#############Bash Script End##################################
########Script_Assessment.txt#####################
Commands which were used to create files:
touch filename
command > filename
> filename
Directory and its contents:
NEW: Contained the newly created file
OLD: Contained sample files with OLD suffix
BACKUP: Contains all the files moved from NEW and OLD directories
Free_Space_Content.txt contains the disk info such as used and free space
OLD_Content.txt contains the directory contents info of OLD directory
Time_File.txt : Contais the current month, day and time info
Explanation:
Write a function named find_median that takes as a parameter a list of numbers. The function should return the median of those numbers, which will require it to sort the list. If you're not familiar with calculating the median, please look that up. Remember that the calculation is different for odd and even groups of values. For example, it could be used like this: some_nums
The middle value in a data collection is returned by the median function in Microsoft Excel, which measures central tendency.
What is the main role of median function?The number in the middle, with the same number below and above it, when there are an odd number of integers, is the median value.
The quantity of numbers in the data set affects the median result. The median is the value located in the center of the sorted dataset for an odd collection of numbers.
Excel's statistical functions include the MEDIAN Function. The middle value of the given collection of numbers will be determined by the function. The middle number in a collection of numbers is known as the median.
Therefore, If the list contains an even number of integers, the middle pair must be found, added, then divided by two to produce the median value.
Learn more about Median Function here:
https://brainly.com/question/16892747
#SPJ2
// The QuickCopy company currently makes 100,000 copies per year// at 15 cents each.// They expect to increase the number of copies produced// by 4 percent per year each year for the next 10 years,// starting with this year.// They also expect the price of each copy to increase// by 3 cents per year, starting with this year.// This program displays the company's expected// income for each of the next 10 years.// Modify it to be more efficient.startDeclarationsnum year = 1num copies = 100000num price = 0.15num total = 0num COPIES_INCREASE = 0.04num PRICE_INCREASE = 0.03copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalyear = year + 1copies = copies + copies * COPIES_INCREASEprice = price + price * PRICE_INCREASEtotal = total + copies * priceoutput year, totalstop
Answer:
See Explanation
Explanation:
Required
Modify the program
To modify the program, we simply make use of an iterative statement.
To do this, I'll make use of a do while loop.
So, we have:
Declarations
num year = 1
num copies = 100000
num price = 0.15
num total = 0
num COPIES_INCREASE = 0.04
num PRICE_INCREASE = 0.03
do:
copies = copies + copies * COPIES_INCREASE
price = price + price * PRICE_INCREASE
total = total + copies * price
output year, total
year = year + 1
while year<=10
The above do while loop enables the program to repeat the statements in the following block:
do:
----
---------
---
-
while year <=10
The loop calculates the copies & price in each year and also updates the values of the variables; so that they can be used for the nexr iteration
Directions Interview your parent or any member of your family. Identity
v. Performance Tasks
sources of your family income. Classify the types of your family
income if it is Money Income, Real Oncome or Psychic income
Answer:
Total family income is first classified by it's four major source, earings of a male head , earings of a wife or female head , earings of a family members , and property or transfer income.
write asswmbly prgram and do the following:
You have two numbers, the first one is 32 bits and the second is a 16 bits number. Find the result of division and store it in memory location called RESULT then store the reminder of division in memory location called MOD. (Use MACRO)
Answer:
I did this last year :/ i feel your pain.
Explanation:
Assume that the execution time for a program is directly proportional to instruction access time. The access to an instruction in the cache is 10 times faster than access to an instruction in the main memory. If an instruction is not found in the cache, i.e., cache miss, it is fetched from the main memory to the cache and then fetched from the cache to be executed. Assume that a requested instruction will cause cache miss has a probability of 0.08. Let the speedup factor is defined as the ratio of program execution time without the cache to program execution time with the cache.
a. Calculate the speedup factor to execute such a program.
b. using this assumption, assuming that the cache is 20 times faster than the main memory.
Answer:
a. 5.81
B. 7.93
Explanation:
A.
X is the time it takes to load instructions from cache
10X = time to execute program
0.08 = probability of cache instructions
1-0.08 = 0.92(92% instructions are going to be loaded from cache).
Tc = time to execute with cache
Tc = 0.92X+0.08x10X
= 0.92X+0.8X
= 1.72X
Speed factor = tm/tc
= 10X/1.72X
= 5.81
B.
If cache is 20 times faster
Tm = 20X
Tc = 0.92X + 0.08 x 20X
= 0.92X + 1.6X
= 2.52X
Speed factor = 20X/2.52X
= 7.93
You are asked to design a data model for The Wagging Tail, an online store that sells products for dogs, e.g. dog collars, dog food, dog toys, dog treats, etc. You want to keep track of three entities: (1) the products that the store sells, (2) customers who purchase the products, and (3) the orders that are made on the website.
Draw an ERD diagram and use the following information to help guide your drawing:
The database should keep track of all products that the store offers for sale
The database should keep track of all customers who have registered with the store website
The database should keep track of all orders placed on the website
At most only a single customer can be related to any single order
A customer can place multiple orders with the website Each entity must have a unique identifier within its table. This is the Entity's/table's Primary Key.
An order must consist of at least one product, and may consist of multiple products
You wish to keep track of the cost of the product to the store, and the price that the store sells a product to the customer
You wish to be able to contact customers via phone and email
You wish to be able to determine when is the busiest time of year for your website according to number of orders placed
Your drawing should include the following: 1. The entities you wish to model 2. The required/important attributes for each entity (refer to these instructions for guidance on what is required/important) 3. The relationships between the entities 4. The correct MAX and MIN Cardinalities for each relationship (remember for each relationship, or line, there are MAX/MIN cardinalities on each side of the relationship)
Answer:
The solution to this question can be defined as follows:
Explanation:
In this question the Primary Key as defined in the underlines that use the Crow's foot notation which is defined in the 3 entities that can be defined in the attachment file:
How many components of a computer?
Answer:
There are five main hardware components in a computer system: Input, Processing, Storage, Output and Communication devices. Are devices used for entering data or instructions to the central processing unit.
Explanation:
What was the Internet was built off ot?
A) IPv6
B) CIDR
C) NAT
D) IPv4
Answer:
The internet was built around IPv4.
What is a Web server application?
A.An application that receives information, provided by an end user on a user-input form, from a Web server or a database server.
B.An application that is used to make Webpages interactive
C.An application that stores and processes the information provided by an end user on a user-input form
D.An application that authoritatively confirms the identity of a person, host or organization
Answer:
I prefer to go for the answer D
What sequence is used to create a brochure document from a template?
New, File, Brochures
File, New, Brochures
O Brochures, File, New
O Brochures, New, File
Answer:
I think its a or b
Explanation:
Sorry if I'm wrong
Answer:
The answer is B. File, New, Brochures
Explanation:
PLZ PLZ PLZ GIVE ME BRAINLIEST!!!!
A restaurant buys a pizza oven that is 4.5 feet long, 5 feet wide and 6 feet tall. What is the volume of the pizza oven?
Answer:
135 as 4.5 times 5 times 6 gives you the volume and it =135
What is the action take to the input called?
Answer:
Control types created with INPUT; Examples of forms containing INPUT controls ... The scope of the name attribute for a control within a FORM element is the FORM element. ... Applications should use the id attribute to identify elements. ... The program that will handle the completed and submitted form (the action attribute).
Explanation:
What is the best Describe an integer data type
Answer:
It is a data type that only holds whole numbers, a.k.a. integers.
what is the picture about?
Can someone help me please
Answer:
She made a profit of 450$
Explanation: