Which of the following is a collection of data organized in a manner that allows access, retrieval, and use of that data?

Answers

Answer 1

Answer:

a database

Explanation:

I'm pretty sure it's database but you didn't give the multiple choice answers. hope database is one of them.


Related Questions

Which class members should be declared as public?

a
Data attributes and constructor methods
b
Data attributes only
c
Methods and occasionally final attributes
d
Predominantly data attributes and some helper methods

Answers

Answer:

B. Methods and occasionally final attributes

Explanation:

In Computer programming, class members can be defined as the members of a class that typically represents or indicates the behavior and data contained in a class.

Basically, the members of a class are declared in a class, as well as all classes in its inheritance hierarchy except for destructors and constructors.

In a class, member variables are mainly known as its attributes while its member function are seldomly referred to as its methods or behaviors.

One of the main benefits and importance of using classes is that classes helps to protect and safely guard their member variables and methods by controlling access from other objects.

Therefore, the class members which should be declared as public are methods and occasionally final attributes because a public access modifier can be accessed from anywhere such as within the current or external assembly, as there are no restrictions on its access.

The concept of the value chain focus on

Answers

Answer:

The overarching goal of a value chain is to deliver the most value for the least cost in order to create a competitive advantage.

Your Welcome:)

how can i fix my code so that a teepee is properly formed? here is what i currently have (my output is uploaded as an image):

public static void teepee(int a){
for(int i=a; i>0; i--){
for(int j=a; j>0; j--){
System.out.print(" ");
}
System.out.print("/");
for(int k=i; k System.out.print(" ");
}
System.out.println("\\");
}
}

Answers

We are not sending them any other one tryin was there to a point that they had been doing the work for the first

One lap around a standard high-school running track is exactly 0.25 miles. Write the function miles_to_laps() that takes a number of miles as an argument and returns the number of laps. Complete the program to output the number of laps. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value))

Ex: If the input is: 2.2 the output is: 8.80 Your program must define and call the following function: def miles_to_laps(user_miles)

Answers

Answer:

def miles_to_laps(user_miles):

   laps = user_miles / 0.25

   

   return laps

 

miles = float(input("Enter number of miles: "))

print('{:.2f}'.format(miles_to_laps(miles)))

Explanation:

Create a function named miles_to_laps that takes one parameter, user_miles

Inside the function, calculate the number of laps, divide the user_miles by 0.25 (Since it is stated that one lap is 0.25 miles). Return the laps

Ask the user to enter the number of miles

Call the function with that input and print the result in required format

HELP URGENTLY!!!!!

Elly supervises an eye doctors office. The office recently received new equipment. To keep that equipment working accurately and dependably, she should:
(Select all that apply.)

Copy the users manual and distribute to all the employees
Identify individuals to complete the tasks
Create a log to document maintenance
Set up auto reminders
Read the manual
List the maintenance tasks
Establish the frequency of the maintenance tasks
Update the software in the office

Answers

Note that where Elly supervises an eye doctor's office, and the office recently received new equipment, to keep that equipment working accurately and dependably, she should:

Copy the users manual and distribute to all the employeesCreate a log to document maintenanceSet up auto remindersRead the manualList the maintenance tasksEstablish the frequency of the maintenance tasksUpdate the software in the office.

What is the rationale for the above response?

In order to ensure that the equipment is working properly and optimally, Elly should distribute the user manual to all employees.

In addition, she should identify individuals to complete maintenance tasks, create a log to document maintenance, set up auto reminders, read the manual, list the maintenance tasks, establish the frequency of the maintenance tasks, and update the software in the office to keep new equipment working accurately and dependably. This will ensure optimal equipment maintenance and lifetime.

Learn more about equipment maintenance:

https://brainly.com/question/21853224

#SPJ1

Comprehension s best described as the ability to

Answers

Answer:

The ability to understand

Explanation:

Answer:

recognize reading strategies.

Explanation:

Write a function named power that accepts two parameters containing integer values (x and n, in that order) and recursively calculates and returns the value of x to the nth power.

Answers

Answer:

Following are the code to the given question:

int power(int x, int n)//defining a method power that accepts two integer parameters

{

if (n == 0)//defining if block to check n equal to 0

{

return 1; //return value 1

}

else//defining else block

{

x = x * power(x, --n); //use x variable to call method recursively

}

return x; //return x value

}

Explanation:

In the above-given code, a method power is defined that accepts two integer variable in its parameter, in the method a conditional statement is used which can be defined as follows:

In the if block, it checks "n" value, which is equal to 0. if the condition is true it will return value 1.In the else block, an integer variable x is defined that calls the method recursively and return x value.

Write a function named minMax() that accepts three integers arguments from the keyboard and finds the smallest and largest integers. Include the function minMax() in a working program. Make sure your function is called from main().Test the function by passing various combinations of three integers to it.

Answers

Answer:

public class Main

{

public static void main(String[] args) {

 minMax(1, 2, 3);

 minMax(100, 25, 33);

 minMax(11, 222, 37);

}

public static void minMax(int n1, int n2, int n3){

    int max, min;

    if(n1 >= n2 && n1 >= n3){

        max = n1;

    }

    else if(n2 >= n1 && n2 >= n3){

        max = n2;

    }

    else{

        max = n3;

    }

   

    if(n1 <= n2 && n1 <= n3){

        min = n1;

    }

    else if(n2 <= n1 && n2 <= n3){

        min = n2;

    }

    else{

        min = n3;

    }

    System.out.println("The max is " + max + "\nThe min is " + min);    

}

}

Explanation:

*The code is in Java.

Create a function named minMax() that takes three integers, n1, n2 and n3

Inside the function:

Declare the min and max

Check if n1 is greater than or equal to n2 and n3. If it is set it as max. If not, check if n2 is greater than or equal to n1 and n3. If it is set it as max. Otherwise, set n3 as max

Check if n1 is smaller than or equal to n2 and n3. If it is set it as min. If not, check if n2 is smaller than or equal to n1 and n3. If it is set it as min. Otherwise, set n3 as min

Print the max and min

Inside the main:

Call the minMax() with different combinations

I need help plz it’s python

Answers

Answer:

The output of the first question would be 9. And the answer the second question is 10.

what do we use HTTP and HTML for?

Answers

HTTP is protocol while HTML is a language

HTML is a Language while HTTP is a Protocol.

HTML tags are used to help render web pages. The Hypertext Mark-up Language (or HTML) is the language used to create documents for the World Wide Web.

HTTP (Hypertext Transfer Protocol) is a protocol for transferring the hypertext pages from Web Server to Web Browser. HTTP is a generic and stateless protocol which can be used for other purposes as well using extensions of its request methods, error codes, and headers. Basically, HTTP is a TCP/IP based communication protocol, that is used to deliver data (HTML files, image files, query results, etc.) on the World Wide Web.

what is the art of prolonging the life of the food items that are available​

Answers

Answer:

Food preservation.

Explanation:

Food preservation can be defined as an art that typically deals with the process of preventing food spoilage by reducing or mitigating the growth of microorganisms and other external factors while maintaining the nutritional value, flavor and texture of the food.

Some of the factors that causes food spoilage include microorganisms (bacteria, yeast and molds), temperature, moisture content, oxidation etc.

Hence, food preservation is the art of prolonging the life of the food items that are available.

Basically, there are physical, chemical and biological methods which can be used to prolong the life of food items and thus sustaining the edibility and nutritional value of foods. These methods are;

1. Freezing.

2. Pasteurization.

3. Drying.

4. Retorting.

5. Thermal sterilization.

6. Fermentation.

7. Irradiation.

server.
10. The Domain Name refers to the
a) Mail
b) Google
c) Internet
d) Local

Answers

Answer:

C.

Explanation:

briefly describe what a variable is

Answers

Answer:

In mathematics, a variable is a symbol or letter, such as "x" or "y," that represents a value. In algebraic equations, the value of one variable is often dependent on the value of another. Variables are also used in computer programming to store specific values within a program

Explanation:

You are adding more features to a linear regression model and hope they will improve your model. If you add an important feature, the model may result in.
1. Increase in R-square
2. Decrease in R-square
A) Only 1 is correct
B) Only 2 is correct
C) Either 1 or 2
D) None of these

Answers

Answer:

The answer is "Option A".

Explanation:

Add extra functionality, otherwise, it increases the R-square value, which is defined in the following points:      

To incorporate essential elements, R-square is explicitly promoted. It Increases the R-square value, which is an additional feature. It removes the features, which provide the value of the reduce R-square. After incorporating the additional features is used as the model, which is R-square, which is never reduced.

If a small cheap computer can do the same thing as a large expensive computer,
why do people need to have a large one?

Answers

Answer:

Large ones are for more important thing. Such as gaming and special software.

Explanation:

Hope that helps

Large systems are the ones that are for more important thing. Such as gaming and special software.

Why is the size of a computer Important?

Computer scientists and users value the classification of computers based on their size. It enables us to classify the computer system according to its size and processing capacity.

For gamers who desire the greatest possible gaming experience, expensive PCs are also wonderful.

You can play the most recent games smoothly and at high settings if you have a powerful computer. A costly PC also has the benefit of lasting longer than a less expensive model.

Most computer monitors have a diagonal measurement from corner to corner that falls between 19 and 34 inches. 22 to 24" screens will be sufficient for the majority of users.

Thus, it can be beneficial to use larger computers also.

For more details regarding computers, visit:

https://brainly.com/question/21080395

#SPJ2

Write a method that accepts two string arrays and print common values between the two arrays (Perform case sensitive search while finding common values).

Answers

Answer:

public class Main

{

public static void main(String[] args) {

 String[] s1 = {"Hi", "there", ",", "this", "is", "Java!"};

 String[] s2 = {".", "hi", "Java!", "this", "it"};

 findCommonValues(s1, s2);

}

public static void findCommonValues(String[] s1, String[] s2){

    for (String x : s1){

        for (String y : s2){

            if(x.equals(y))

                System.out.println(x);

        }

    }

}

}

Explanation:

*The code is in Java.

Create a method named findCommonValues that takes two parameters, s1 and s2

Inside the method:

Create a nested for-each loop. The outer loop iterates through the s1 and inner loop iterates through the s2. Check if a value in s1, x, equals to value in s2, y, using equals() method. If such a value is found, print that value

Inside the main method:

Initialize two string arrays

Call the findCommonValues() method passing those arrays as parameters

I need help with my homework:
Greetings, secret agent 00111! Your mission, should you choose to accept it, is to help Agent M plan a pizza party. Unfortunately, M has no idea how much pizza to order for his 83 guests. Luck for him, party planning is your specialty! Estimate the number of pizzas he’ll need on scratch paper, and then convert that number to binary and write it here.

Answers

Answer:

You need to order 11100 pizzas.

Explanation:

A couple of assumptions here.

Each pizza has 12 slices.  Each guest will eat 4 slices (1/3 of a pizza).

83 * 1/3 = 28 pizzas

28 = 11100

The coding system that has just two characters is called:

a
binary
b
dual.
c
basic.
d
double.

Answers

Answer:

A. Binary

Definition:

Pertaining to a number system that has just two unique digits 0 and 1. - binary code

Building-block elements are available in the Building Blocks grouping include which of the following? Page Parts Calendars Advertisements Business Information

Answers

Answer: Page parts , calendar and advertisements

Explanation:

(I jus Finish the assignment)

The router can deliver packets directly over interfaces 0 and 1 or it can forward packets to Routers R2, R3, or R4. Describe what the router does with a packet addressed to each of the following destinations:

a. 128.96.39.10
b. 128.96.40.12
c. 128.96.40.151
d. 192.4.153.17
e. 192.4.153.90

Answers

Answer:

Following are the solution to this question:

Explanation:

In point A:

It applies the AND operation with the subnet-mask that is  

[tex]=128.96.39.00001010 \ \ AND \ \ 255.255.255.10000000 \\\\= 128.96.39.0000000 \\\\= 128.96.39.0 \\\[/tex]

This corresponds to a 128.96.39.0 subnet. This is why the router sent the packet to 0.

In point B:  

It applies the AND operation with the subnet-mask that is [tex]255.255.255.128[/tex]

[tex]= 128.96.40.00001100\ AND \ 255.255.255.10000000 \\\\ = 128.96.40.0000000\\\\= 128.96.40.0[/tex]

This suits the 128.96.40.0 subnet. The router then sent R2 to the packet. The packet.

In point C:  

It  applies the AND operation with the subnet-mask that is [tex]255.255.255.128[/tex]

[tex]=128.96.40.10010111 \ AND \ 255.255.255.10000000 \\\\= 128.96.40.1000000\\\\= 128.96.40.128[/tex]

It  applies the AND operation with the subnet-mask  that is [tex]255.255.255.192[/tex]

[tex]= 128.96.40.10010111 \ AND \ 255.255.255.11000000 \\\\= 128.96.40.1000000 \\\\= 128.96.40.128\\[/tex]

All of the matches of its sublinks above.  

Its default R4 router was therefore sent to the router by router.

In point D:

It  applies the AND operation with the subnet-mask  that is [tex]255.255.255.192[/tex]

[tex]= 192.4.153.00010001 \ AND \ 255.255.255.11000000\\\\ = 192.4.153.0000000 \\\\= 192.4.153.0 \\\\[/tex]

It matches the 192.4.153.0 subnet. It router has sent packet to R3 then.

In point E:

It  applies the AND operation with the subnet-mask  that is [tex]255.255.255.128[/tex]

[tex]= 192.4.153.01011010\ AND \ 255.255.255.10000000 \\\\= 192.4.153.0000000 \\\\= 192.4.153.0[/tex]

There, neither of the subnet inputs correlate with the ip address with the same subnet mask.

It  applies the AND operation with the subnet-mask  that is [tex]255.255.255.192[/tex]

[tex]=192.4.153.01011010\ AND \ 255.255.255.11000000 \\\\ = 192.4.153.0100000 \\\\= 192.4.153.64[/tex]

It does not correlate to the subnet entries for same subnet mask, and therefore neither of the entries matches their corresponding ip address entries.  

Mask of the subnet.  That packet would therefore be sent to the default R4 router by the router.

HELP !!!
Which of the following statements best represents the difference in printing text and images in the era of moveable type?


Text was harder to print than images because it involved moving letters around for each line of print.

Text was created by arranging letter blocks, while images were created through an engraving process.

Text was created by engraving letter blocks on metal, while images were created by burning imprints onto wood.

Text was easier to print than images because it involved the same 26 letters used over and over.

Answers

Answer:

I think the answer is: Text was created by arranging letter blocks, while images were created through an engraving process.

Explanation:

in the article it explains these were the ways text and images were printed

Answer:

e

Explanation:

what is the CPU's role?

Answers

Answer:

The CPU performs basic arithmetic, logic, controlling, and input/output (I/O) operations specified by the instructions in the program. The computer industry used the term "central processing unit" as early as 1955.

Answer:

The Cpu is like the brain of the computer it's responsible for everything from running a program to solving a complex math equation.

Your manager has tasked you with implementing security controls to mitigate IP spoofing attacks against your network. IP spoofing is a method of attack that involves sending packets to a target network while hiding the attacker's address using a false source address.

What method outlined would achieve anti-spoofing, to mitigate private IP spoofing attacks against your network?

Answers

Answer:

You can setup firewall rules with for example iptables on Linux. The rules should block source addresses of private IP ranges such as 192.168.*.* and 10.*. *. * etc. Check private IP ranges for full list.

It will however not guarantee prevention of IP spoofing in general as its not possible to prevent such attacks. Its the responsibility of ISPs. But the question asked for private IP spoofing and then the above works.

Q Basic program write a program in Q Basic to find the cost of 10 pens when the cost of 15 pens is 75 use unitary method to find calculate the cost of one pen calculate the print of cost of 10 pen computer answer​

Answers

give the function of cpu

If you want a language that is relatively easy to write and which can be tested easily as it's being developed, you would choose an interpreter program.
a) True
b) False

True
False

Answers

Answer:

true

Explanation:

because it needs a interpreter so that it could be more developed

Which keyboard command would you use to navigate to the left adjacent cell in a worksheet?

Answers

Answer:

Either scroll on a mouse or use the left arrow key.

I don't know if this is right.

Answer:

shift+tab

Explanation:

how many total bits do you need to represent 512?

Answers

Answer:

9 bits

Explanation:

hope it helps......

Answer:

9 bits

hope it helps...

A wireless network administrator is using 3 access points (APs) to cover an area. At some locations, all 3 APs may be in range of a single wireless device. What wireless channels should be assigned to the APs?

(Hint: Pick 3 different channels.)

a. 6
b. 7
c. 1
d. 3
e. 2
f. 4
g. 5
h. 8
i. 10
j. 9
k. 11

Answers

Answer:

A, C, and K

Explanation:

Wireless networks use access points ( APs) for wireless communication. The APs provide a collision avoidance channel for the connected devices. Devices communicating at a channel of a given frequency would experience signal interference, so all the connected APs in a wireless network is configured to operate in different channels with considerable differences in their frequencies.    

the quality of the interpreter that shows the ability to envision future needs and demands and create products to meet these demands
A. Industries
B. innovative
C. Strategist
D. Risk Taker​

Answers

Answer: B - Innovative

Explanation:

the notes added to slides can be seen during the presentation. TRUE OR FALSE​

Answers

Answer:

It might be true

Explanation:

Because there's something you press, then it will appear, if you didn't press it, it won't appear

Other Questions
The length of Joe's arm is 28 inches. The length of his lower arm is 21 inches. What percent of Joe's arm is his lower arm? Can someone help me with these verbs Read the following statement: Line segment MN is congruent to line segment OP.Which of the following is an equivalent statement? aMN overbar is similar to OP overbar bMN overbar equals OP overbar cMN overbar is congruent to OP overbar dMN overbar is an element of OP overbar 4. Word Separator:Write a program that accepts as input a sentence in which all of thewords are run together but the first character of each word is uppercase. Convert the sentence to a string in which the words are separated by spaces and only the first word starts with an uppercase letter. For example the string StopAndSmellTheRoses. would be converted to Stop and smell the roses.*python coding Solve the equations:2^(3x4)=2 answer for "y is 7 less than the product of 6 and x" What is the role of a cultural hearth in the spread of cultural traits through diffusion Geographers define the essential element called the uses of geography as __________.A.learning about the Earths natural environmentsB.understanding the places and regions around usC.studying our past and planning for our futureD.learning about the cultures people createPlease select the best answer from the choices providedABCD Automobile air bags use the decomposition of sodium azide as their sources of gas for rapid inflation, represented in the reaction below. What mass (in grams) of NaN4is required to provide 40.0 L of N2 at 25C and 763 torr? Which wil be the lower number Atomic Number of Atomic Mass?-A WhateverB.DK .c. Atomic NumberDie Atomic Mass ABC Ranch & Farm is a distributor of ranch and farm equipment. Its products range from smalltools, power equipment for trench-digging and fencing, grain dryers, and barn winches. Mostproducts are sold direct via its company catalogue and internet site. However, given some of itsspeciality products, select farm implement stores carry ABC's products. Pricing and costinformation on three of ABC's most popular products are as followsItemMini - trencherPower fence hole augerGrain/hay dryerStandalone selling Price (Cost)$3,600 ($2,000)1,200 ($800)14,000 ($11,000)Respond to the requirements related to the following independent revenue arrangements for ABCRanch and Farma. On January 1,2019 ABC sells 40 augers to Mills Farm & Fleet for $48,000. Mills signs a6-month note at an annual interest rate of 12%. ABC allows Mills to return any auger thatit cannot use within 60 days and receive a full refund. Based on prior experience, ABCestimates that 5% of units sold to customers like Mills will be returned (using the mostlikely outcomc approach). ABC's costs to recover the products will be immaterial and thereturned augers are expected to be resold at a profitRequired: Prepare the journal entry for ABC on January 1,2019 (6marks) Please answer correctly !!!!!!!!!!!!!!!!!!!!!! Will mark brainliest !!!!!!!!!!!!!!!!!!!! Josefina deposited $250 into her savings account. She then saved $40 per month. Which of the following equations shows a, the amount in Josefinas saving account after t months?a = 250 + 40ta = 250 40ta = 40 + 250ta = 40 + 210t The map shows hunter-gatherer migration routes.A map of the world. A key shows Migration Routes. Migration starts 200,000 B C E from East and South Africa into North Africa, moves into southern Europe 100,000 B C E, India and southern China 70,000 B C E, Australia 50,000 B C E, western Europe 40,000 B C E, Papua New Guinea and Solomon Islands 30,000 B C E, southern Asia 25,000 B C E, from Asia to Alaska 15,000 B C E, into North America and South America 12,000 B C E, into Canada 4,500 B C E, to New Zealand and Madagascar 1,500 B C E.What trend does this map demonstrate about the migration patterns of hunter-gatherers?Humans migrated from Africa to Asia.Humans migrated from South America to North America.Humans migrated to Europe before they migrated to Australia.Humans migrated to North America before they migrated to Europe. show work / explain it Taylor G can afford monthly payments of $425 to buy a new car. What price car could Taylor afford to buy with a 66 month loan at an annual interest rate of 4.4%. List four parts of a SWOT analysis a student's blaring trumpetIs what type of energy The length breadth and thickness of a brick is 18cm 8 cm and 5cm respictively find the area of the widest part of rhe brick What is the solution to this equation 30.16 = 17.56 + 5x