What refers to a collection of small sections of code that are stored together to solve many everyday programs?
- school
- mausoleum
- museum
- library
Hey none of them are corect
Hope you have a good day
-scav
Answer:
Explanation:
School
Point out the wrong statement: SOA eliminates the use of application boundaries, the traditional methods where security is at the application level aren't likely to be effective An atomic service cannot be decomposed into smaller services that provide a useful function XML security service may be found in retail application communication. None of the mentioned
Answer:
All the three statements given are true so the correct option is option 4 which is none of the above.
Explanation:
The options are given in a jumbled up form the options are sorted which are as follows:
SOA eliminates the use of application boundaries, the traditional methods where security is at the application level aren't likely to be effective An atomic service cannot be decomposed into smaller services that provide a useful function XML security service may be found in retail application communication. None of the mentionedSOA stands for Service Oriented Architecture. This eliminates the application boundaries so option 1 is true.
An atomic service is defined as the smallest service which cannot be divided further. So this is true as well
The XML security service is incorporated in all retail applications. so this is true as well.
So the remaining option is just None of the mentioned.
Human API refers to a:
A. moment in which many humans unexpectedly act the same.
B. set of instructions transferred between viewers and an artist.
C. collection of codes used for the communication of software.
D. humanlike android programmed to create artistic works.
Answer: C.
Explanation: Set of instructions transferred between viewers and an artist
Match each network maintenance tool with the purpose that is most closely identified with that tool - Loopback plug - Protocol analyzer - Throughput tester - Time Domain Reflectometer (TDR) - Locating a specific cable A. Confirm interface functionality B. Analyze network traffic C. Measure link speed D. Determining the location of cable fault E. Toner probe
Solution :
Loopback plug --- confirm interface functionalityIt is a connector that is used to diagnose the transmission problems.
Protocol Analyzer --- Analyze network trafficIt is used to capture and analyze the signals as well as data traffic.
Throughput tester - Measure link speedTime Domain Reflectometer (TDR) - Determining the location of cable faultIt is used in determining the characteristics of the electrical lines by observing the reflected waveforms
Locating a specific cable - Toner probeYou have written a program to keep track of the money due to your company. The people in accounting have entered the information from the invoices they have sent out. However, the total from accounting does not agree with a total of a second listing of items that can be billed from the production department.
Using the drop-down menus, complete the sentences about the steps in the debugging process.
As a first step in diagnosing the problem, you will
✔ reproduce the error.
A good place to begin is by examining the
✔ error codes.
Next, you can
✔ troubleshoot
the problem.
This will help you
✔ identify the source of the problem.
Answer:
1. REPRODUCE THE ERROR
2. ERROR CODES
3. TROUBLESHOOT
4. IDENTIFY THE SOURCE OF THE PROBLEM
Explanation:
Debugging a program simply means a sequence of steps which one takes to correct an imperfect program, that is a program that does not run as intended.
A good way to start debugging is to run the code, by running the code, one will be able to determine if the program has a bug. If it has then it produces an error. This error is a good starting point as the error code gives a headway into where the bug may lie.
The error code gives a hint into the type of error causing a program to malfunction which could be a syntax error, logic, Runtime and so on. In some case probable lines where there error lies are spotted and included in the error code produced.
After evaluating the error code, then we troubleshoot the probable causes of the error. By troubleshooting all the possible causes, the source of the error will eventually be identified.
Answer:
As a first step in diagnosing the problem, you will
✔ reproduce the error.
A good place to begin is by examining the
✔ error codes.
Next, you can
✔ troubleshoot
the problem.
This will help you
✔ identify the source of the problem.
Explanation:
Suppose that a flow network G=(V,E)G = (V, E)G=(V,E) violates the assumption that the network contains a path s⇝v⇝ts \leadsto v \leadsto ts⇝v⇝t for all vertices v∈Vv \in Vv∈V. Let uuu be a vertex for which there is no path s⇝u⇝ts \leadsto u \leadsto ts⇝u⇝t. Show that there must exist a maximum flow fff in GGG such that f(u,v)=f(v,u)=0f(u, v) = f(v, u) = 0f(u,v)=f(v,u)=0 for all vertices v∈Vv \in Vv∈V.
a. True
b. False
Answer:
Hi your question is poorly written attached below is the complete question
answer : TRUE ( a )
Explanation:
The statement about a flow network is true because when there is a vertex in the flow network that inhibits the source from reaching the sink, the vertex can be successfully removed without altering the maximum flow in the flow network.
as given in the question ; if f(u,v) = f(v,u) =0 we can remove the vertex.
Select the true statement below. A. Using tables can improve your search engine optimization. B. Content contained within Flash media is invisible to search engines. C. Your HTML code must be valid in order to be listed in search engine results. D. Descriptive page titles and heading tags with appropriate keywords can help with search engine optimization.
Answer:
D. Descriptive page titles and heading tags with appropriate keywords can help with search engine optimization.
Explanation:
Search engine optimization (SEO) can be defined as a strategic process which typically involves improving and maximizing the quantity and quality of the number of visitors (website traffics) to a particular website by making it appear topmost among the list of results from a search engine such as Goo-gle, Bing, Yah-oo etc.
This ultimately implies that, search engine optimization (SEO) helps individuals and business firms to maximize the amount of traffic generated by their website i.e strategically placing their website at the top of the results returned by a search engine through the use of algorithms, keywords and phrases, hierarchy, website updates etc.
Hence, search engine optimization (SEO) is focused on improving the ranking in user searches by simply increasing the probability (chances) of a specific website emerging at the top of a web search.
Typically, this is achieved through the proper use of descriptive page titles and heading tags with appropriate keywords. Also, the first step in adding a website to a search engine service is to index your webpages by adding appropriate keywords and description meta tags.
Write a function named testAverage that accepts four test scores as parameters and returns the average of the best three scores (that is, the average after dropping the lowest score). The data type for the scores and for the answer is double. This function must call the findLowest function you wrote in the previous problem. Do not write that function again. Do not write the main function. There should not be any cin or cout statements in this function.
Answer:
The function is as follows:
double testAverage(double n1, double n2, double n3, double n4){
double small = findLowest(n1,n2,n3,n4);
double total = n1 + n2 + n3+ n4 - small;
double ave = total/3;
return ave;
}
Explanation:
This defines the function
double testAverage(double n1, double n2, double n3, double n4){
This calls the findLowesr function and save the smallest in variable small
double small = findLowest(n1,n2,n3,n4);
This calculates the sum of the largest 3
double total = n1 + n2 + n3+ n4 - small;
This calculates the average of the largest 3
double ave = total/3;
This returns the calculated average
return ave;
}
Note that: I assume that function findLowest exists (according to the question).
Patrick manages the cloud services that are used by a small hospital system. He knows that there are a lot of laws and regulations out there that pertain to storing PII that are different than other industries. Which of the following sets of laws and regulations is he specifically thinking of that do not apply to other industries?
a. HIPAA
b. PCI DSS
c. GDPR
d. SLA
Answer:
a. HIPAA
Explanation:
HIPPA represents the Health Insurance Portability and Accountability Act that of the United States which becomes mandatory for protecting the medical data in any form.
Also in the case of data protection that represent the general regulations, PCI DSS, GDPR etc would be used
So the option a is correct
hence, all the other options are wrong
Answer:
A. HIPAAExplanation:
sets of laws and regulations is he specifically thinking of that do not apply to other industries.
is a language composed of commands within a file that can be executed without being compiled.
Answer:
A Scripting Language
Explanation:
Edge 2021
An interpreted language is a type of programming language for which several of its iterations explicitly and voluntarily implement instructions, without translating code into machine-language directives before.
What is the work of interpreter?An interpreter converts orders of a high-level into an intermediary type which instead performs. Interpreters are also used in learning as they provide immersive content for pupils.Simply stated, an editor is a program where you construct and tweak programs. The program is encoded, or compiled, using the compiler.
IDEs are a formidable collection of tools designed to make programming as simple as it can be. A code editor is essentially a text editor with strong built-in functionality and dedicated features that are geared to simplify and expedite the editing of code.
Therefore, An interpreted language is a type of programming language for which several of its iterations explicitly and voluntarily implement instructions, without translating code into machine-language directives before.
Learn more about interpreted language on:
https://brainly.com/question/23838084
#SPJ3
Build a binary search tree for the words oenology, phrenology, campanology, ornithology, ichthyology, limnology, alchemy, and astrology using alphabetical order.
The diagram is attached to this response.
Explanation:In a binary search tree (BST), a node may have a right child and/or a left child which are also nodes, and the following properties hold:
i. the left subtree of a node has nodes whose keys are lesser than that of the given node.
ii. the right subtree of a node has nodes whose keys are greater than that of the given node.
Given words are:
oenology, phrenology, campanology, ornithology, ichthyology, limnology, alchemy, astrology
To build a binary search tree with the given words, do the following:
(i) The first word in the list is the root node of the tree. In this case, the root node is oenology.
(ii) The second word is phrenology. Using alphabetical ordering and relative to the root word (oenology), phrenology tends to be after oenology. Therefore, phrenology is going to be to the right of oenology.
(iii) The third word is campanology. Using alphabetical ordering and relative to the root word (oenology), campanology should be before oenology. Therefore, campanology is going to be to the left of oenology.
(iv) The fourth word is ornithology. Using alphabetical ordering and relative to the root word (oenology), ornithology should be after oenology. Therefore, ornithology is going to be to the right of oenology. Also, since phrenology is already to the right of oenology, ornithology would be to the left of phrenology as alphabetical ordering shows that ornithology is before phrenology. In essence, ornithology would be placed right to oenology but left to phrenology.
(v) The fifth word is ichthyology. Using alphabetical ordering and relative to the root word (oenology), ichthyology should be before oenology. Therefore, ichthyology is going to be to the left of oenology. Also, since campanology is already to the left of oenology, ichthyology would be to the right of campanology as alphabetical ordering shows that ichthyology is after campanology. In essence, ichthyology would be placed left to oenology but right to campanology.
(vi) The sixth word is limnology. Using alphabetical ordering and relative to the root word (oenology), limnology should be before oenology. Therefore, limnology is going to be to the left of oenology. Also, since campanology is already to the left of oenology, limnology would be to the right of campanology as alphabetical ordering shows that limnology is after campanology. Also, since ichthyology is already to the right of campanology, limnology would be to the right of ichthyology as alphabetical ordering shows that limnology is after ichthyology. In essence, limnology would be placed left to oenology, right to campanology but right to ichthyology.
(vii) The seventh word is alchemy. Using alphabetical ordering and relative to the root word (oenology), alchemy should be before oenology. Therefore, alchemy is going to be to the left of oenology. Also, since campanology is already to the left of oenology, alchemy would be to the left of campanology as alphabetical ordering shows that alchemy is before campanology. In essence, alchemy would be placed left to oenology but left to campanology.
(viii) The eighth word is astrology. Using alphabetical ordering and relative to the root word (oenology), astrology should be before oenology. Therefore, astrology is going to be to the left of oenology. Also, since campanology is already to the left of oenology, astrology would be to the left of campanology as alphabetical ordering shows that astrology is before campanology. Also, since alchemy is already to the left of campanology, astrology would be to the right of alchemy as alphabetical ordering shows that astrology is after alchemy. In essence, astrology would be placed left to oenology, left to campanology but right to alchemy.
Drag the tiles to the correct boxes to complete the pairs.
James is creating a website for a firm that sells office IT hardware. He uses certain elements to aid website navigation. Match each element
to the example where it is being used.
path
district
node
landmark
Eich page on the website contains
the name of the page at the top 50
that users know their location.
in order to go to the documentation
of a certain product, the user has to
navigate from the products page to the
type of product, to the specific product
Every web page under the products
section has a blue background with
different product images in the
background, while every page
in the documentation section
has a white background.
Some pages have hyperlinks in text
that will allow the user to go on
different alternate paths
Answer:
landmark: Each page on the website contains
the name of the page at the top so
that users know their location.
path: In order to go to the documentation
of a certain product, the user has to
navigate from the products page to the
type of product, to the specific product.
district: Every web page under the products
section has a blue background with
different product images in the
background, while every page
in the documentation section
has a white background.
node: Some pages have hyperlinks in text
that will allow the user to go on
different alternate paths.
Explanation:
got a 5/5 on this for Plato:)
Write a method named randomStar that takes two parameters, a Random object r and an integer num. The method should keep printing lines of * characters, where each line has between 5 and 19 * characters inclusive, until it prints a line with greater than or equal to num characters. num is guaranteed to be between 5 and 19. For example, the method call randomStar(14) will print:
Answer:
The method is as follows:
public static void randomStar(Random r, int num) {
int n;
do {
n = 5 + r.nextInt(15);
for(int count = 0; count < n; count++){
System.out.print("*");
}
System.out.println();
} while(n < num);
}
Explanation:
This defines the method
public static void randomStar(Random r, int num) {
This declares n as integer
int n;
The following is repeated until n >= num
do {
This generates a random number for n (5 and 19)
n = 5 + r.nextInt(15);
The following loop prints n *'s
for(int count = 0; count < n; count++){
System.out.print("*");
}
This prints n
System.out.println();
} while(n < num); The loop is repeated as long as the condition is valid
}
Help plzz will mark brainliest
Answer:
1 d
2 c
3 a
Explanation:
19. Blizzard’s Overwatch is an example of _______ being one of the strongest inspirations for new video games.
a) Performing art forms
b) Previous successful games
c) Modding
d) Literature
Answer:
B
Explanation:
PLEASE HELP WILLL GIVE BRAINLIESTTTTT!
Jack wants to use masking to sharpen an image. What is an accurate description of masking that can help Jack?
Masking is also called (blank). It controls the minimum (blank) change that will be sharpened. You can use the setting to sharpen more pronounced edges in an image.
Answer:
first one is threshold and second one is contrast
Explanation:
looked in the notes.
ASAP BRAINLIEST!!!!
Interpersonal skills are not necessary for a telecom technician.
O False
O True
Answer:
false
Explanation:
edg2021
many times telecom technicians work in homes and with others and they need to be able to communicate to learn what the consumers want so he can do his job right.
adaptability within a species can only occur if there is genetic.
Answer:
Variation or diversity.
Explanation:
Natural selection can be defined as a biological process in which species of living organisms having certain traits that enable them to adapt to environmental factors such as predators, competition for food, climate change, sex mates, etc., tend to survive and reproduce, as well as passing on their genes to subsequent generations.
Simply stated, natural selection entails the survival of the fittest. Therefore, the species that are able to adapt to the environment will increase in number while the ones who can't adapt will die and go into extinction.
Adaptability within species can only occur if there is genetic variation or diversity i.e a drift in the genetic makeup of the total number of living organisms living together at a particular place (population).
You wish to use your personal laptop computer at work. However, the IT department folks are unwilling to allow you. The likely reason is ______. a. you will use your laptop for non-work related activity b. your productivity could not be measured correctly c. your non-work related use of the laptop could increase vulnerability d. your activities could not be monitored
Answer:
B and C are the most likely options
i would probably pick C because if the IT department said no C is the option, otherwise if your boss said no it would be B.
explain the procedure you will undertake to create a new partition
To create a partition from unpartitioned space follow these steps:
Right click This PC and select Manage.
Open Disk Management.
Select the disk from which you want to make a partition.
Right click the Un-partitioned space in the bottom pane and select New Simple Volume.
Enter the size and click next and you are done.
Describing Lookup Fields
What do lookup fields allow users to do when filling out records in a table?
O search for duplicate values
choose from a list of values
check spelling for any typos
Ve
O use a wizard to enter a value
Answer:
B) Choose from a list of values
Explanation:
Answer:
B
Explanation:
EDGE2021
Consider an array of length n containing positive and negative integers in random order. Write C++ code that rearranges the integers so that the negative integers appear before the positive integers. Your solution should use
a. O(n2) operations
b. O(n) operations
Select the correct answer.
Ron is an electrician. He loves to work with wires and switches. What type of input does Ron carry when called for fixing an electric problem?
OA. tools
OB.
information
OC.
capital
OD people
O E. power
Answer:
B
Explanation:
Answer:
A- tools
Explanation:
PLATO:)
Every telecommunication setup uses two devices: one device to transmit data and one device to receive data. Which device transmits frequencies to mobile phones?
towers transmit frequencies to mobile phones.
Answer:
Cell.
Explanation:
Electromagnetic waves is a propagating medium used in all communications device to transmit data (messages) from the device of the sender to the device of the receiver.
Generally, the most commonly used electromagnetic wave technology in telecommunications is radio waves.
Radio waves can be defined as an electromagnetic wave that has its frequency ranging from 30 GHz to 300 GHz and its wavelength between 1mm and 3000m. Therefore, radio waves are a series of repetitive valleys and peaks that are typically characterized of having the longest wavelength in the electromagnetic spectrum.
Basically, as a result of radio waves having long wavelengths, they are mainly used in long-distance communications such as the carriage and transmission of data.
In the field of telecommunication, all telecommunication setup are designed and developed to make use of two network devices: one device is typically used for the transmission of data while the other device is used to receive data that are sent on the network.
Generally, cell towers are tall poles that are used to transmit frequencies to mobile phones.
Answer:
Cell
Explanation:
plato
Why vechiles Tyres are black in colour?
Answer: See explanation
Explanation:
It should be noted that the rubber that tire is made from has a color that's milky white but due to the fact that carbon black is being added to the rubber, then the tire will turn to black.
The importance of carbon black to tires is immense as it acts as the stabilizing chemical compound. Also, it helps in increasing the strength of the tire and its durability and also protects the tire from ozone effect.
How do you describe the importance of data in analytics? Can we think of analytics without data? Explain
Answer:
a. It aids in the comprehension of the existing status of the business or process.
b. No, it not possible to we think of analytics without data
Explanation:
a. How do you describe the importance of data in analytics?
Data analytics can be described as the art and science of extracting useful information from data.
It aids in the comprehension of the existing status of the business or process and serves as a solid foundation for forecasting future results. Businesses can use data analytics to better comprehend the present market situation and adjust their processes or trigger the need for new product development to meet market demands.
b. Can we think of analytics without data?
No, it not possible to we think of analytics without data. This is because the raw material that is employed for analytic is data. Therefore, there would be nothing like analytics when there is no data.
Print air_temperature with 1 decimal point followed by C. Sample output with input: 36.4158102 36.4C (python)
Answer:
hope this helps
Explanation:
#Read the value from keyboard and parse to float
#assign the value to air_temperature
air_temperature=float(input())
#Print the air_temperature with one decimal place to right with C
print('%.1fC'%air_temperature)
#where f is a format specifier .1 is number of decimal places to display on right side
#C is the character to print after the decimal value
what is homeostasis?
a. the body maintains balance
b. the body changes
c. the body is imbalance
d. none of the above
Answer:
Homeostasis is the body maintaining balance.
Explanation:
In biology, homeostatis is the state of internal, physical, and chemical conditions maintained by living systems. Having a balance for these is crucial to the organism.
advantage of internet to millennials
Answer any choices for this question
Explanation:
IF SOMEONE HELPS ME BY ANSWERING I WILL BECOME FAMOUS AND SO WILL YOU
Select the correct answer. Which type of information may be useful? A. complete information B. summarized information C. contains opinions and observations of others D. contains historical data
Answer:
A
Explanation:
If complete information means it has evidence and data as well as information and observations then yes, that is your answer. If it does not, then D would be your answer