cries in bakudeku shipper
I NEED THIS NOW!! :((
Which feature of a database allows a user to locate a specific record using keywords?
Chart
Filter
Search
Sort
which feature of a database allows a user to locate a specific record using keywords?
search
You manage the website for your company. The website uses a cluster of two servers with a single shared storage device. The shared storage device uses a RAID 1 configuration. Each server has a single connection to the shared storage and a single connection to your ISP. You want to provide redundancy so that a failure in a single component does not cause the website to become unavailable. What should you add to your configuration to accomplish this
Answer: Connect one server through a different ISP to the Internet
Explanation:
With RAID 1 configuration, data can be simultaneously copied from one particular disk to another, thereby creating a replica.
Since the person wants to provide redundancy so that a failure in a single component does not cause the website to become unavailable, one server should be connected through a different ISP to the Internet.
You are adding a new rack to your data center, which will house two new blade servers and a new switch. The new servers will be used for file storage and a database server. The only space you have available in the data center is on the opposite side of the room from your existing rack, which already houses several servers, a switch, and a router. You plan to configure a trunk port on each switch and connect them with a cross-over UTP plenum cable that will run through the suspended tile ceiling of the data center. To provide power for the new devices, you had an electrician install several new 20-amp wall outlets near the new rack. Each device in the rack will be plugged directly into one of these new wall outlets. What is wrong with this configuration
Answer: • You should implement a UPS between the wall outlet and the network devices.
• You should implement redundant power supplies for the network devices.
Explanation:
Based in the information given in the question, the options that explain things wrong in the configuration is that:
• You should implement a UPS between the wall outlet and the network devices.
• You should implement redundant power supplies for the network devices.
Construct :
4 input NOR Gate Truth Table.
9514 1404 393
Answer:
see attached
Explanation:
The output is always 0, except for the case where all 4 inputs are 0.
Which list shows a correct order of mathematical operations that would be used by a spreadsheet formula?
Answer:
It stands for Parentheses, Exponents, Multiplication/Division, Addition/Subtraction.
…..is the smallest size in audio files
Answer:
Wav files can be 16 bit,8 kHz (i.e 128 k bits per second) while mp3 could be compressed to 16 kbits per second. Typically wav is x10 larger than mpg. This is ratio is highly content specific. Wav is a raw format, while mp3 is a compressed format for audio.
Explanation:
Answer:
Wav files can be 16 bit,8 kHz (i.e 128 k bits per second) while mp3 could be compressed to 16 kbits per second. Typically wav is x10 larger than mpg. This is ratio is highly content specific. Wav is a raw format, while mp3 is a compressed format for audio.
technically a coding question utilizing python how would one calculate a square root
Answer:
import math
math.sqrt( x )
Explanation:
The basic code that can be written to calculate the square root of a number is as follows
import math
math.sqrt( x )
Doug grew up on a large farm in southwest Wisconsin. As a college graduation gift, Doug’s father gave him several hundred acres of land to raise organic soybeans, grain, and corn. Doug works the fields by himself, negotiates deals with buyers, repairs equipment, and handles all the accounting and financial issues for the business, which is called The Natural Element.
Answer: Sole Proprietorship.
Explanation:
This question wants to know what type of business is described in the scenario.
In a Sole Proprietorship, the owner of the business is essentially the business itself. They control all aspects of the business from the operating activities to the financial activities of the firm. This is usually the first stage business type in an entrepreneurship.
The definition of a sole proprietorship above fits with what Doug does. Doug is the owner of the farming business and seems to be handling all aspects of it by himself. This would therefore make it a sole proprietorship.
Which of the following are causes of a run-time error. Choose all that apply.
A user enters a numeric value when a text value was expected.
A user enters text and numeric values.
A user enters a text value when a numeric value was expected.
A user enters a negative number when a positive number was expected.
Answer:
A C D
Explanation:
just did it
Answer:
A. A user enters a numeric value when a text value was expected.
C. A user enters a text value when a numeric value was expected.
D. A user enters a negative number when a positive number was expected.
Explanation:
When creating a storyboard, in which section do you mention how you move from one shot to the next?
A.
synopsis
B.
sketch
C.
transitions
D.
shot description
E.
shot sequence number
Answer: C
Explanation:
Answer:
E. shot sequence number
Explanation:
Need answer ASAP!!!!!
Select the correct answer.
What stage of software development incorporates planning to help make changes in the project plan based on reviews?
OA.project startup
OB. proposal stage
OC. periodic checks
OD. product delivery
Answer:
Option C
Explanation:
Periodic check are similar to period inspection done by a team comprising of software developers who check the flow and output of the core during the different stages of software development.
The team also do the auditing to check whether the work products meet the different client requirement and thus revise the project plans.
Hence, option C is correct
(50 POINTS) A folder has been shared with other users and set to read-only. What does this mean for users?
Users can only read the name of the shared folder.
Users cannot add new folders or files.
Users can read and edit files.
Users can add new files but not new folders.
Answer:
B
Explanation:
Your program has a loop where a user guesses a letter.
Your program compares the guess to each letter in the word.
Finish the code.
for n in range(lenWord):
if _______ == letter:
blanks = blanks[:n] + letter + blanks[n+1:]
correct[n]
correct
correct(n)
Answer:
its correct[n]
Explanation:
for n in range(lenWord):
if correct[n] == letter:
blanks = blanks[:n] + letter + blanks[n+1:]
A loop in a computer program is an teaching that repeats until a specified condition is reached.
In a loop structure, the loop asks a question. If the answer needs action, it is executed. The same question is asked again until no other action is required.
What are loops used for in programming?A Loop is employed to repeat a specific block of code a over and over. There are two main types of loops, for loops and while loops.
What are the 3 types of loops in programming?In Java, there are three kinds of loops which are – the for loop, the while loop, and the do-while loop. All these three loop constructs of Java executes a set of replicated statements as long as a specified condition stays true.
To learn more about A loop, refer
https://brainly.com/question/26568485
#SPJ2
Lorann sends messages to Aiden that always go into Aiden’s Junk E-mail folder. Which process would best correct this problem so that Lorann’s messages no longer go into Aiden’s Junk E-mail folder?
A. adding Aiden to the Safe Senders list
B. adding Aiden to the Safe Recipients list
C. adding Lorann to the Safe Senders list
D. adding Lorann to the Safe Recipients list
Answer:
b
Explanation:
PLEASE HELP ME!!! Please don't answer if you're just going to guess.
In this line from a data file, what do you call the comma?
dog, 23, 15
The comma is _____
-Choices-
a BOL set of characters,
an EOL set of characters,
a delimiter.
Answer:
a
Explanation:
Answer:
BOL
Explanation:
Choose the expression that belongs in the blank in order to have the output shown.
>>> a = 5
>>> print(_____)
The value is5
"The value is " + str(a)
"The value is" , str(a)
"The value is " , str(a)
"The value is" + str(a)
Answer:
Option B
Explanation:
Given
a = 5
and if the value allotted to variable a is to be printed, the following command will be used
print "The values is", str(a)
Hence, option B is correct
She goes to look at her
HTML code to see what is wrong line by line until she can figure out what she
messed up. Which process is Ana using?
A. Fragmentation
B. Identification
C. Pinpoint
D. Debugging
The process is Ana using is Debugging. Check below to see what the term is all about.
What is debugging used for?Debugging is known to be the act of working on how a given program runs, and also how it creates data so as to be able to defects and know issues in a given code.
Note that since she goes to look at her HTML code to see what is wrong line by line until she can figure out what she messed up, she is engaged in debugging.
Learn more about Debugging from
https://brainly.com/question/163290
#SPJ2
which feature of project management includes monetary compensation for the employees
Answer:
Extrinsic compensation
Explanation:
The feature of project management that includes monetary compensation for employees is the Extrinsic compensation.
Extrinsic compensation is reward ( tangible ) given to workers/employees by the management of a project for the speedy completion of a task or for the completion of a specific task . It can in the form of monetary compensation or non-monetary compensation.
example of Non-monetary compensation includes certificate of honor, medical insurance .
example of monetary compensation includes : work Bonuses , salaries
Select the factors that a network engineer is most likely to consider when designing a computer network. the ways in which employees share business documents the number of hours employees work the number of networked computers the type of work done at networked computers the number of employees using each computer the rate of pay for networked employees
Answer:
the number of employees using each computer
the number of networked computers
the type of work done at networked computers
the ways in which employees share business documents
Explanation:
these are all correct on odyssey :)
windows operating system memory management??
Memory management is the functionality of an operating system which handles or manages primary memory and moves processes back and forth between main memory and disk during execution. Memory management keeps track of each and every memory location, regardless of either it is allocated to some process or it is free.Answer:
I’ll mark brainliest if correct
Select the correct answer.
Derek works in the software quality assurance department. Which tools or process should Derek use to monitor and measure changes?
A.software engineering process
B.software quality metrics
C. SQA audits
D.reviews
Answer:
A.
Explanation:
Have a Nice Day
Answer:
answer: software quality metrics
What type of address uses a number that uniquely identifies each computer?
O Computer address
O Home address
O E-mail address
O IP address
Answer:
The awnser is D or IP Address
Explanation:
BRAINLIEST PLEASEAnswer:
IP Address. This is the most unique as you can track computers down with this code too. I hope you found this helpful, you are very welcome!
Kevin is scanning old images from his college library. He might use these scanned images in the college magazine. He might also use them on the college website. What is the best practice for Kevin to follow when scanning the images?
A.
scan the images with 72 DPI
B.
scan only the images that are ideal for a website
C.
scan the images with 150 DPI
D.
scan the images with 600 DPI
E.
scan the images that are ideal for a magazine
Answer: D. Scan the images with 600 DPI
Explanation:
Answer: D. Scan the images with 600 DPI
Explanation: Correct for Plato/Edmentum
What is climate and how is it formed? What can cause climate change.
Answer: Climate is the weather and conditions over time (at least a year).
The things that start climate change are burning fossil fuels and tearing down forests to start construction.
Answer:
climate can be defined as weather.
Which line of code converts 3 to 3.0?
int(3)
type(3)
float(3)
single(3)
Answer:
float
Explanation:
How is the OR (||) logical operator used?
PLS HURRY
Answer:
The answer is below
Explanation:
A logical operator is a symbol or word used to connect two or more expressions such that the value of the compound expression produced depends only on that of the original expressions and on the meaning of the operator. Common logical operators include AND, OR, and NOT.
i really want to know the best way to deal as much heart as possible plz tell me
Answer:
Set aside time every day for doing something that feels positive, whether that’s journaling, meeting up with a close friend, or watching a show that makes you laugh. Scheduling in moments that bring you joy is vital for healing a broken heart. It’s important to talk about your feelings with others and not numb yourself out.
Explanation:
The _____________ command is used to stop the FOR...NEXT loop prematurely.
Answer:
The exit command is used to stop the FOR...NEXT loop prematurely
Match the network topology to its description. 1. bus data is certain to reach its destination 2. mesh no danger of data collision with this topology 3. ring limited expansion capability 4. star nodes are connected to a central hub
Answer:
3,1,2
Explanation:
what is the most popular monitor