Answer:
Andriod
Explanation:
Which of the following lines of code correctly defines a function called combine? OA define "combine(a, b, c)" as: B. define(combine(a, b, c]): Oc def combine(a, b, c): OD. def.combine(a, b, c):
Answer:
The answer is C or def multiply(a, b):
Explanation:
I took the test
The science of how an object reacts to its motion through air is called _______________. (12 letters)
HURRY!!!
ANSWER CORRECTLY AND YOULL GET BRAINLIEST
Explanation:
friction drag that is your answer 12 letters
Answer:
drag
Explanation:
im not the brightest but in the sentients it should have "drag" in it but u can listen to others answers to make sure
Josh wrote the following e-mail to his co-worker. PLEASE HELP QUWICK
i need the figues to enter them into my DBA presentation. ASAP. please send.
This is an example of _____.
effective communication
nonverbal communication
ineffective communication
workplace communication
Answer:
Answer choice 4
Explanation:
If Josh sends an e-mail to his... co-worker.... wouldn't that be... workplace communication?
Which operation will remove the originally selected information?
O Duplicate
O Copy
O Paste
O Cut
Answer:
D. the cut command
Explanation:
........................ allows you to press a key or code for insertion of long phrases that you may require using repeatedly which saves time. *
Answer:
text expander
Explanation:
Answer:
The answer to this is a text expander!
Hope this helps you! Have a nice day!
What will be the output?
class num:
def __init__(self, a);
self.number = a
def_mul__(self,b):
* return self.number + b.number
#main program
numA = num(8)
numB = num(4)
result = numA* numb
print(result)
O4
O 12
O 32
4096
the variable a & b and A & B are different. So the only program that work is at #main program.
Hence that A = 8 and B = 4 and the result is A * B so 8*4=32.
Sorry if im wrong
32 will be the output of this question
What is the output?An industry's output is the total amount of goods and services generated within that industry over a specific time period and sold to customers or other firms. An industry's annual production of boxes of cookies or tons of sugar, for instance, can be considered output.
The quantity a person produces in a particular period of time. d.: energy or power given or produced by a device or system (as for storage or for conversion in kind or in characteristics)Here is how we might define these two phrases in business terms: The results are what the business requires or wants to accomplish. The acts or things that help achieve an outcome are called the outputs.
Variables a and b and A and B are distinct. Thus, the #main program is the only program that functions. Because A = 8 and B = 4, the outcome is A * B, which equals 8*4=32.
Therefore, the output of this question
Learn more about output here:
https://brainly.com/question/13736104
#SPJ5
Which of the following items are present in the function header?
A. function name and parameter (variable) list
B. parameter (variable) list
C. return value
D. function name
Pls help I will give points
Answer:
Laptop
Explanation:
Your computer system looses power while you are working on a project for a very important client
isljgaek jadkghdkjhasdkjfhadskj afhdsfkjdahk dh
Answer:
I never knew that, thank you for telling me! I'll note that down
(15) You are a Pascal teacher (a very good programmer using assembly language(i.e., machine language) of your local machine). You are given only the following programmes:(at) A compiler written in P-code: translate a program in Pascal to one in P-code(P-code is very close to your local machine language).(b) A P-code interpreter written in Pascal: able to interpret any program writtenin P-code.a) (10) What will you do (with minimal effort) to run the Pascal programs yourstudents submit on your local machine
Prompt
Using complete sentences post a detailed response to the following.
While visiting a friend’s house, you hear their siblings arguing over whether or not “visual novels” are “real games” or not. You hear Boris, the older sibling, saying “…and you just sit there and click to read the next line—you might as well be reading a comic book and turning a page and call that a ‘game’!” When they find out you’ve been taking a class on game design, they ask you to settle the argument for them. What would you say to them?
Answer:
As long as it works like a game and not a book i would say its a game.
Explanation:
In Python!!
1. Correcting string errors
It's easy to make errors when you're trying to type strings quickly.
Don't forget to use quotes! Without quotes, you'll get a name error.
owner = DataCamp
Use the same type of quotation mark. If you start with a single quote, and end with a double quote, you'll get a syntax error.
fur_color = "blonde'
Someone at the police station made an error when filling out the final lines of Bayes' Missing Puppy Report. In this exercise, you will correct the errors.
# One or more of the following lines contains an error
# Correct it so that it runs without producing syntax errors
birthday = "2017-07-14'
case_id = 'DATACAMP!123-456?
2. Load a DataFrame
A ransom note was left at the scene of Bayes' kidnapping. Eventually, we'll want to analyze the frequency with which each letter occurs in the note, to help us identify the kidnapper. For now, we just need to load the data from ransom.csv into Python.
We'll load the data into a DataFrame, a special data type from the pandas module. It represents spreadsheet-like data (something with rows and columns).
We can create a DataFrame from a CSV (comma-separated value) file by using the function pd.read_csv.
# Import pandas
import pandas as pd
# Load the 'ransom.csv' into a DataFrame
r = ___.___('___')
# Display DataFrae
print(r)
3. Correcting a function error
The code in the script editor should plot information from the DataFrame that we loaded in the previous exercise.
However, there is an error in function syntax. Remember that common function errors include:
Forgetting closing parenthesis
Forgetting commas between each argument
Note that all arguments to the functions are correct. The problem is in the function syntax.
# One or more of the following lines contains an error
# Correct it so that it runs without producing syntax errors
# Plot a graph
plt.plot(x_values y_values)
# Display the graph
plt.show()
4. Snooping for suspects
We need to narrow down the list of suspects for the kidnapping of Bayes. Once we have a list of suspects, we'll ask them for writing samples and compare them to the ransom note.
A witness to the crime noticed a green truck leaving the scene of the crime whose license plate began with 'FRQ'. We'll use this information to search for some suspects.
As a detective, you have access to a special function called lookup_plate.
lookup_plate accepts one positional argument: A string representing a license plate.
# Define plate to represent a plate beginning with FRQ
# Use * to represent the missing four letters
____ = ____
Please help out~~~
Answer:
Following are the solution to the given points:
Explanation:
For point 1:
birthday = "2017-07-14" # defining a string variable birthday that string value
case_id = 'DATACAMP!123-456?' #defining a variable case_id that stores the string value
In this, two variable "birthday and case_id" is defined, that holds the string value. In the first variable, it uses the hyphen sign to hold the date value as a string. In the second variable, it uses a single quoit to store string value.
For point 2:
import pandas as pd # using import package to import pandas
r = pd.read_csv('ransom.csv')# defining r variable that uses pandas to Load the 'ransom.csv' file
print(r)#use print method to print r value
In this code, a pandas package is imported, and in the next step r variable is defined that uses the read method to hold the csv file , and the print method to print r value.
For point 3:
plt.plot(x_values, y_values) # Plot method to hold parameters values
plt.show()#calling the show method
In this code, the plot method is used, which accepts two-parameter to store its value into plt, and in the next step, it uses the show method.
For point 4:
# Defining a plate variable to represents the plate that starts with FRQ
# Using the * to represent the four missing letter
plate = lookup_plate('FRQ*)
use a for loop to create a random forest model for each value of n estimators from 1 to 30;
• evaluate each model on both the training and validation sets using MAE;
• visualize the results by creating a plot of n estimators vs MAE for both the training and validation sets
After that you should answer the following questions:
• Which value of n estimators gives the best results?
• Explain how you decided that this value for n estimators gave the best results:
Why is the plot you created above not smooth?
• Was the result here better than the result of Part 1? Wha: % better or worse was it? in python
Answer:
nvndknnnnnnngjf
Explanation:
f4tyt5erfhhfr
besides earning money why do people work
Answer:
to make a name for themselves
Explanation:
what is 30 x 30 x 30 x 30
Answer:
its is 810000
Explanation:
hope this helps
Pls help I will give points
Answer:
Desktop
Explanation:
When you purchase donuts, they come in boxes of 12, so 24 donuts take 2 boxes. All donuts need to be in a box, so if you buy 13 donuts, you'll get 2 boxes with 12 in the first box and 1 in the second. If the integer variable numberOfDonuts contains the positive number of donuts purchased, which of the following will correctly give the number of boxes needed?
a. int numberOfBoxes = 1 + numberOfDonuts / 12;
b. int numberOfBoxes = numberOfDonuts / 12 + numberOfDonuts % 12;
c. int numberOfBoxes = numberOfDonuts / 12;
d. int numberOfBoxes = (numberOfDonuts + 11) / 12;
Answer:
d) int numberOfBoxes = (numberOfDonuts + 11) / 12
Explanation:
Hope this helps
We begin with a computer implemented in a single-cycle implementation. When the stages are split by functionality, the stages do not require exactly the same amount of time. The original machine had a clock cycle time of 12 ns. After the stages were split, the measured times were IF, 3 ns; ID, 2.5 ns; EX, 2 ns; MEM, 3 ns; and WB, 1.5 ns. Use 0.1 ns for the pipeline register delay (i.e., the additional time to spend for keeping more registers and logic between pipeline stages).
A. What is the clock cycle time of the 5-stage pipelined machine?
B. If there is a stall every 4 instructions, what is the CPI of the new ?machine?
C. What is the speedup of the pipelined machine over the single- cycle machine?
D. If the pipelined machine had an infinite number of stages, what would its speedup be over the single-cycle machine?
Answer:
3.1 ns ; 1.25 ; 3.097
Explanation:
Given :
IF, 3 ns;
ID, 2.5 ns;
EX, 2 ns;
MEM, 3 ns;
WB, 1.5 ns.
Use 0.1 ns for the pipelineregisterdelay
maximum time required for MEM = 3 ns
Pipeline register delay = 0.1 ns.
Clock cycled time of the pipelined machine= maximum time required + delay
3ns+0.1 ns = 3.1 ns
2.) for stall after every 4 instruction :
CPI of new machine :
(1 + (1 /4)) = 1 + 0.25 = 1.25
3.)
The speedup of pipelined machine over the single-cycle machine is given by :
Average time per instruction of single cycle ÷ average time per instruction of pipelined
Clock time of original machine = 12ns
Ideal CP1 = 1
CPI of new machine = 1.25
Clock period = 3.1 ns
(12 * 1) / (1.25 * 3.1) = 12 / 3.875
= 3.097
D. Speed up will equal the number of stages in the machine
What is the value of grade after this program is executed? Assume the score is 50. if score >= 90: grade = "A" elif score >= 80: grade = "B" elif score >= 70: grade = "C" elif score >= 60: grade = "D" else: grade = "F" grade =
Answer:
the grade would be C
Explanation:
An articulated robot has a T-type wrist axis that can be rotated a total of 2 rotations (each rotation is a full 3600 ). It is desired to be able to position the wrist with a control resolution of 0.250 between adjacent addressable points. (a) Determine the number of bits required in the binary register for that axis in the robot's control memory. (b) Using this number of bits, what is the actual control resolution of the joint
Pls help mark brainliest
Answer:
I cant answer this.
Explanation:
You need to take another screenshot so we can see the multiple choice.
In order to ask for user for input in store the results as a stream, you should use the function. Readline, readlnt, string, algorithm
Answer: String
-DoggyMan5
In a program, write a method that accepts two arguments: an array of integers and a number n. The method should print all of the numbers in the array that are greater than the number n (in the order that they appear in the array, each on their own line).
In the same file, create a main method and call your function using the following data sets:
The array {1, 5, 10, 2, 4, -3, 6} and the number 3.
The array {10, 12, 15, 24} and the number 12.
My code:
public class LargerThanN
{
public static void print(int[] array,int n)
{
for(int i=0; i
{
if (array[i]>n)
System.out.println(array[i]);
}
System.out.println();
}
public static void main(String[] args)
{
int[] array1 = {1,5,10,2,4,-3,6};
int num1=3;
print(array1,num1);
int[] array2 = {10, 12, 15, 24};
int num2 = 12;
print(array2, num2);
}
}
My programming lab does not want extra lines between the output. What am I doing wrong? How do I fix it?
Failed Test Run
The contents of your standard output is incorrect.
Attention: the difference between your stdout and the expected stdout is just a question of spacing.
Standard Output Hide Invisibles
Your Code's Actual Result:
Expected Result: 5
5 10
10 4
4 6
6
15 15
24 24
Answer:
move the System.out.println(); outside the for loop.
Explanation:
see picture. I shortened the main() method a bit, for fun.
Select four examples of fluid or pneumatic power systems.
crane
dentist's chair
barber's chair
bulldozer
calculator
wheelchair
the internet is a network of only ten thousands computers true or false
With saying why true or why false
Thanks
Answer: False
Reason: There's a lot more then 10 thousand computers on the internet.
Given three subroutines of 550, 290, and 600 words each, if segmentation is used then the total memory needed is the sum of the three sizes (if all three routines are loaded). However, if paging is used, then some storage space is lost because subroutines rarely fill the last page completely, and that results in internal fragmentation. Determine the total amount of wasted memory due to internal fragmentation when the three subroutines are loaded into memory using each of the following page sizes:
a. 100 words
b. 600 words
c. 700 words
d. 900 words
Typically, external fragmentation wastes one-third of memory. Internal fragmentation occurs when space inside a designated region is wasted. Thus, option D is correct.
What wasted memory due to internal fragmentation?The mounted-sized block is allotted to a method whenever a request for memory is made. Internal fragmentation is the term used to describe the situation where the memory allotted to the method is a little bigger than the amount requested.
Normally, memory is allocated in uniformly sized blocks, but sometimes a process doesn't use the entire block, leading to internal fragmentation.
Memory fragmentation occurs when a memory allocation request can be satisfied by the whole amount of accessible space in a memory heap, but no single fragment (or group of contiguous fragments) can.
Therefore, when the three subroutines are loaded into memory using each of the following page sizes 900 words.
Learn more about memory here:
https://brainly.com/question/16953854
#SPJ5
PROJECT: RESEARCHING THE HISTORY OF THE INTERNET
The Internet has had a profound effect on how we conduct business and our personal lives. Understanding a bit about its history is an important step to understanding how it changed the lives of people everywhere.
Using the Internet, books, and interviews with subject matter experts (with permission from your teacher), research one of the technological changes that enabled the Internet to exist as it does today. This may be something like TCP/IP, the World Wide Web, or how e-mail works. Look at what led to the change (research, social or business issues, etc.) and how that technology has advanced since it was invented.
Write a research paper of at least 2, 000 words discussing this technology. Make sure to address the technology’s development, history, and how it impacts the Internet and users today. Write in narrative prose, and include a small number of bullet points if it will help illustrate a concept. It is not necessary to use footnotes or endnotes, but make sure to cite all your sources at the end of the paper. Use at least five different sources.
Submission Requirements
Use standard English and write full phrases or sentences. Do not use texting abbreviations or other shortcuts.
Make any tables, charts, or screen shots neat and well organized.
Make the information easy to understand.
To have integrity means that you
Devising a plan to solve a problem or perform a task using a set of step by step instructions is called:
Running a program
Writing an algorithm
Creating syntax
Interpreting instructions
How do I fix a phone if I don't have enough money for me to fix it?
Answer:
depends whats wrong with it
Explanation:
is the screen smashed orr~