Answer:
identify materials to create a prototype
If the following code is executed, what is the output? a = 1 b = 2. c = '3' d = (1, 2., '3') e = [4, 5., '6'] print type(b+c)
Answer:
TypeError
Explanation:
b = 2
c = '3'
- b is of type integer because it is storing an Integer.
- c is of type string, since '3' is a string.
Since they are of different types, you can't add/ concatenate them. To add them you would need to change the string ('3') to an integer to get 5. Or you would need to convert 3 into a string to get '32' or '23'.
You are searching for an item in an array of 40,000 unsorted items. The item is located at the last position. How many comparisons do you need to do to find it
When performing user access management, a DBA defines each user to the database at the _____ levels. Group of answer choices application and DBMS operating system and application application and network operating system and DBMS
Answer:
operating system and the DBMS
Explanation:
51. When performing user access management, a DBA defines each user to the dat…
a. application and DBMS
b. operating system and DBMS...
✓ b
Which of the following is NOT a specialized cloud mechanism? A. Automated Scaling Listener B. Load Balancer C. Multi-Device Broker D. Resource Array
Answer:
C...i think so sorry if im wrong
Explanation:
the essential idea behind digital cite zen shop is that ____.
Answer:
"Digital Citizenship is the status that all online users should own including students. With this citizenship comes freedoms and responsibilities which should be understood in their entirety. Similar to the real world citizens, online users have to follow the rules and try to make use of all its benefits safely"
Explanation:
If html is used to specify the content of the webpage, then what do you use css for?.
Answer:
css for styling.. means for making websites looks beautiful and attractive
Explanation:
html is like skeleton which defines websites structure whereas css is like cover to the skeleon.. css is responsible for fonts, colors, position of elements, responsiveness of websites.. it makes websites looks beautiful and prettier by adding background colors, hover effects, animation, etc
Haji decides to change the program so that the computer can run each loop iteration in parallel. Assuming that he runs the program on a computer that can run 8 tasks in parallel, how long will the parallelized solution take
Answer:
18 minutes
Explanation:
Planet Duration
Jupiter 12 minutes
Saturn 9 minutes
Uranus 4 minutes
Neptune 4 minutes
Earth 1 minute
Venus 1 minute
Mars 1 minute
Mercury 1 minute
planets ← ["Mercury", "Venus", "Earth", "Mars", "Neptune", "Uranus", "Saturn", "Jupiter"]
model ← loadSolarSystem()
images ← []
FOR EACH planet IN planets {
image ← renderPlanet(model, planet)
APPEND(images, image)
}
If these are what the values and coding given, then the answer is 18 minutes
where element is the Hypertext Markup Language (HTML) element and _____ pairs define the styles that are applied directly to that element.
Select the correct answer.
A company has recently learned of a person trying to obtain personal information of employees illegally. According to which act will be the person punished?
A.
I-SPY
B.
CFAA
C.
Digital Millennium Act
D.
SOPA
The answer is D.
Answer:
A: I-SPY
Explanation:
The I-SPY Act criminalises the unauthorised use of phishing, spyware and other techniques of utilising the Internet to gain sensitive personal information without the consent and knowledge of any person.
Cannot initialize sftp protocol. Is the host running an sftp server?.
Answer:
I believe it will resolve your issue
Explanation:
Most of the time it happened due to the password expired . So you need to make do right click on that WinSCP user's and you'll find the option Open in PUTTY, PFA.
Which of the following is an example of machine learning?
Answer: auto correct
Explanation: The iPhone can determine what you are going to type because of your past history.
An example of machine learning is autocorrect. The correct option is c.
What is machine learning?Machine learning is a branch of artificial intelligence that is widely described as a machine's ability to mimic intelligent human behavior.
Autocorrect is a word processing technology that detects misspelled words and utilizes algorithms to identify the words most likely to have been intended before editing the text.
In the context of machine learning, autocorrect relies solely on Natural Language Processing (NLP). It is programmed to fix spellings and errors when inputting text, as the name implies. Auto-Correction spellchecks your keyboard dictionary as you type, automatically fixing misspelled words. Simply enter text into a text area to use it.
Therefore, the correct option is C, autocorrect.
To learn more about machine learning, refer to the link:
https://brainly.com/question/16042499
#SPJ2
You are using Automator, System Report, and Disk Utility as some of the tools for managing a fleet of laptops. Which operating system do these computers use
Answer:
macOS
Explanation:
Q:
You are using Automator, System Report, and Disk Utility as some of the tools for managing a fleet of laptops. Which operating system do these computers use?
A:
macOS
A numeric literal that is written with a decimal point is called a ________. real number floating-point value decimal literal double literal
Answer:
floating point value
Explanation:
float: 1.235
integer: 8
boolean: 0 or 1
Which statements describe front-end databases? Check all that apply. They can be used to store tables. They can be used to store forms. They can be used to store queries. They can be used to store reports. They are saved on a shared network folder. They are saved locally on users’ computers.
Answer
Explanation: these are the correct answer on the quiz
They can be used to store forms.
They can be used to store queries.
They can be used to store reports.
They are saved locally on users’ computers.
Alan is working on a draft document. He wants the document to have more white space. He can do this by changing the line spacing. True False
It is a true statement that changing the line spacing will make the document have more white space.
What is a line spacing in word document?This refers to the distance between upper and lower lines of text.
These line spacing are tools that make text much more readable because its places distance between the word lines.
By using a line spacing, there will be more spaces and white spaces on the word document.
Therefore, the statement is a correct statement.
Read more about line spacing
brainly.com/question/25277953
Sean is offered a job in New York City earning $120,000 a year, and a job in Salt Lake City earning $100,000 a year. What financial factor should he consider when determining which job to accept?
Answer:
Determine the travelling expenses first.
Explanation:
Since it is in two different places, the travelling costs would be different. This would create a big difference and is a factor to consider.
The financial factor that he considers is that he will have more spending power if he stays in this City.
What is spending power?The consumer purchasing power is known to be the length to which a consumer can spend money.
Note that based on the above scenario, The financial factor that he considers is that He will have more spending power if Sean stays in this City.
Learn more about financial factor from
https://brainly.com/question/26504247
#SPJ2
Fill in the blank to this question. The __________ encompasses the data that flow into the system, the data that flow out of the system, and the data stores that collect and organize the data that are maintained permanently.
Answer:
The __________ encompasses the data that flow into the system, the data that flow out of the system, and the data stores that collect and organize the data that are maintained permanently.
data flow
Explanation:
Exercise
For each of the following tasks, draw what the final list looks like and diagram how you
would solve the problem by writing a step by step process to solve the task.
1. Given a list of integers, replace every element at an even index with 0. Remember lists
start at index 0, so the first element should be replaced and then every other element
thereafter.
Initial list:
3
4
1
2
89
Final list:
Solution Steps:
Answer:
[0,4,0,2,0]
Explanation:
You need to iterate through the list and check if the index is even by comparing the rest of its division by 2 with 0. This can be achieved using the following algorithm (written in Python, so it can easily be translated to other languages)
mylist = [3,4,1,2,89]
for i in range(0, len(mylist)): #For each index of the list
if i%2==0: #If the rest of the division of i by 2 is 0, which means it is even
mylist[i]=0 #Assigns zero to current index
What is most likely to happen to the purchasing power of money over time?
• A. It will increase.
•
B. It will decrease.
C. It will stay the same.
•
D. It will go up and down.
Answer:
The answer is B. It will decrease
Explanation:
I took the test
The purchasing power of money over time will decrease. The correct option is B.
What is purchasing power?The worth of a currency is determined by how many goods or services one unit of that currency can be used to purchase. Inflation may cause it to deteriorate over time. This is due to the fact that you may acquire fewer items or services as a result of increased pricing.
Unevenly growing prices in an inflationary environment unavoidably lower some customers' purchasing power, and this depreciation of real income is the single biggest cost of inflation.
For both those who receive and pay fixed interest rates, inflation might over time affect their ability to make purchases.
Therefore, the correct option is B. It will decrease with inflation.
To learn more about purchasing power, visit here:
https://brainly.com/question/14892961
#SPJ2
write a recursive bool valued function containsvowel that accepts a string and returns true if the string contains a vowel
Answer:
Write a recursive, bool-valued function, containsVowel, that accepts a string and returns true if the string contains a vowel. A string contains a vowel if: The first character of the string is a v…
Explanation:
A:
bool containsVowel (string s) { bool hasVowel=false; if (s.length()==0) return false; else if (s[0]=='a'|| s[0]=='e'|| s[0]=='u'|| s[0]=='o'|| s[0]=='i'|| s[0]=='A'|| s[0]=='E'|| s[0]=='U'|| s[0]=='O'|| s[0]=='
Using the _____, you can direct the browser to retrieve specific information about the URL, to reload the current page, or to load an entirely new page.
Answer:
location object
Explanation:
Using the _____, you can direct the browser to retrieve specific information about the URL, to reload the current page, or to load an entirely new page.
a. selection list b. hidden field c. reference form d. location object
A:
D
A programmer, or software developer, is a person with the training and skills necessary to ________ computer programs. design create test All of these
A programmer or software developed must know about how to design, create and test a computer program. Thus the correct option is all of these.
Who is software developer?A software developer or a programmer is a person have specifed skills under the field of computer science. The software developer needs to get complete training regarding how to design entire computer program, how to create new codes, and regarding the testing of new programs.
Therefore, the correct option is "All of these".
Learn more about software developer, here:
https://brainly.com/question/3188992
#SPJ1
Which wireless technology will John use to provide wide-range cellular service that focuses on indoor coverage, low cost, long battery life, high connection density, and has a low-power wide-area network
Wireless technology is the method used to communicate and transfer data without wires and cables. John will use Narrowband IoT to provide cellular services.
What is Narrowband IoT?Narrowband Internet of things is a Low power WAN technology developed for cellular services, and devices are used to balance power consumption and spectrum efficiency in providing coverage.
Narrowband IoT gives increased coverage, has long battery life and is not expensive as other networking systems, and has low power wide region networking.
Therefore, John should use Narrowband IoT.
Learn more about wireless technology here:
https://brainly.com/question/14618006
#SPJ1
i cracked a school computer screen on purpose and one on accident what will happen now?
Answer:
You will probably have to pay a fee of replacement, or pay for the whole computer.
Explanation:
i need help to fill in a few blanks with this coding homework. did some, but need help on the rest. the assignment is down below
# Cody Ryan, 4/28/2022, this is coding with loops
def main():
# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5
name = input("Hello! What is your name?")
# Fill in the missing LOOP here.
# This loop will need run until the player has guessed the secret number.
userGuess = int(input("Guess a number between 1 and 20: "))
numGuesses = numGuesses + 1
if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")
if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")
# Fill in missing PRINT statement here.
# Print a single message telling the player
# That he/she guessed the secret number
# What the secret number was
# How many guesses it took
main()
Answer:
def main():
# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5
name = input("Hello! What is your name?")
while ( userGuess != secretNum):
userGuess = int(input("Guess a number between 1 and 20: "))
numGuesses = numGuesses + 1
if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")
if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")
print("You guessed " + str(userGuess) + ". The correct number is " + secretNum + " after " + numGuess + " times.")
main()
Explanation:
add a While until userGuess == secretNum than we stop
Is a spreadsheet a good tool for writing a letter? Choose the answer: Yes or No
Answer:
No... Spreadsheets are commonly used for research, outlining, tables, and etc.
Explanation:
Screenshot provided.
Michelle has defined a custom object by creating an object literal. She wants to access the properties of the custom object. Michelle can also write the properties of the custom object by using the _____.
Answer:
dot operator
Explanation:
Michelle has defined a custom object by creating an object literal. She wants to access the properties of the custom object.Which of the following can help Michelle to access the properties of the custom object?
Selected b. Answer:Dot operator
when jim needs to acces the corporate database, he sits at a terminal, which presents the user interface. the database, the transaction processing and the application programming are all resident on one seperate host computer. What type of database architecture is used at jim's company
The type of database architecture that is used at Jim's company is Centralized mainframe with terminal client.
What is mainframe computer terminal?The mainframe model are known to be and up of centralized computers, that are placed on a secure weather controlled computer rooms.
Note that the it is made up of an End users interfaced and the Centralized mainframe with terminal client. is the type of system used in Jim's firm.
Learn more about database architecture from
https://brainly.com/question/25385643
John created a small video for an audition. He wanted to retain the quality for his client. Which compression technique will ensure that the video does not lose any information?
A. Lossless
B. Lossy
C. DCT
D. MPEG
Determine if the sequence below is arithmetic or geometric and determine the common difference / ratio in simplest form. 64,8,1
Answer:
The Sequence is Geometric. The ratio is a(n) = (n-1)/8
Explanation:
64/8 = 8
8/8 = 1
Therefore, the next number in the sequence is 1/8 = .125