t/f: data independence is a term that refers to data and program modules being so tightly interrelated that they become difficult to modify.

Answers

Answer 1

Data independence is a term that refers to data and program modules being so tightly interrelated that they become difficult to modify the given statement is a false statement.

Describe data independence using an example.

The ability to change the scheme without having an impact on the programs and the application that needs to be updated is known as data independence. Programs and data are kept apart so that any changes to the data won't have an impact on how the program runs or how the application functions.

What quality does data independence have?

As an alternative, data independence is the property of a database system that allows the schema to be changed at one level without requiring changes at subsequent levels. To put it another way, the application programs are independent of any specific physical representation or access method.

To know more about data independence visit:

https://brainly.com/question/15084971

#SPJ4


Related Questions

For this activity, you will practice being both proactive and reactive to bugs. Both are necessary to get rid of errors in code.

Proactive:

Log in to REPL.it and open your Calculator program that you built in Unit 5.
In the index.js file, type and finish the following block of code that validates the input to make sure both are numbers (not letters or symbols):
try{
if (isNaN(…) || isNaN(…)){
throw …
}
else{
document.getElementById("answer").innerHTML = num1 + num2;
}
}
catch(e){
document.getElementById("answer")…
}

(Note: The || symbol is used in JavaScript to mean or . You can find this key to the left of the Z key if you’re using a PC or directly above the Enter key if you’re using a Mac.)
Add the finished code above to the correct place in your add() function. Make sure to delete this line since we moved it into the try block:
document.getElementById("answer").innerHTML = num1 + num2;
Paste the same code into the subtract() , multiply() , and divide() functions, making the necessary changes. Be careful with your divide() function since you already have an extra if else statement checking for a division by 0 mistake. (Hint: Cut and paste the entire if else statement inside the else block of your try statement.)
Test your program by typing in letters or symbols instead of numbers. Make sure you get the appropriate error message. (Note: The function is not supposed to check whether the text field is empty, only whether it contains non-numbers.)
When you are finished, share the link to your webpage with your teacher by clicking on the share button and copying the link.
Reactive:
The following Python program should print the sum of all the even numbers from 0 to 10 (inclusive), but it has two bugs:

x = 0
sum = 0
while x < 10:
sum = sum + x
x = x + 1
print(sum)
Complete a trace table and then write a sentence or two explaining what the errors are and how to fix them. You can choose whether to do the trace table by hand or on the computer. Turn in your trace table and explanation to your teacher.

Answers

Answer:

okk

Explanation:

What kind of a bug is 404 page not found

Answers

Answer:A 404 error is often returned when pages have been moved or deleted. ... 404 errors should not be confused with DNS errors, which appear when the given URL refers to a server name that does not exist. A 404 error indicates that the server itself was found, but that the server was not able to retrieve the requested page.

Explanation: Hope this helps

Explain why it is important that software products are developed and delivered quickly. Why is it sometimes sensible to deliver an unfinished product then provide issue new versions of that product after delivery?

Answers

Answer:

The reason why software products are developed and delivered quickly is because  

most of the time client cannot wait an extended time for the merchandise to be developed and delivered because the delay in delivery of software products might cause a loss for the client if that specific software is being developed for the client's business solution.   In some mission-critical applications like defense systems, space research systems in such cases software must be delivered as quickly as possible because the project which is getting into such area cannot await an extended time for a software package to be delivered as here time constraint is involved and delay in at some point might cause a loss for an entire ongoing project.

Explanation:

Sometimes sensible to deliver an unfinished product then issue new versions of that product after delivery because

Sometimes the software that has got to be developed could be very big which isn't possible to develop during a shorter time and even client cannot wait an extended time for he's software in such case only the primary main core functionality of the software is being developed and delivered to the client and in later version remaining functionality's are included and delivered.

Even it is often the case that software that has got to be developed is very complex and should get lots of obstacles during development in such cases also only the core functionalities are being developed and delivered and in later version remaining functionality's are included.

3) Presence of bugs in software may also lead to issue a new version of that software after delivery and then fix the bug and deliver the new version to the client.

Speed is very  important in software development. This is because Developers are known to be under pressure every time to produce high-quality code as fast as they could so that they can fulfil contracts, acquire new customers, retain existing customers and others.

What is vital in delivery of a software project?

The key point that is vital is the provision of the right software delivery tools and equipment at a quick and right way.

Some other important software delivery best practices is that a software developer must ensure that their team has everything they need, ranging from hardware to software/testing applications too others.

Learn more about  software development from

https://brainly.com/question/26135704

Thale cress is a plant that is genetically engineered with genes that break down toxic materials. Which type of organism is described?
recombinant
transgenic
transverse
restriction

Answers

Answer: Transgenic

Explanation:

Since the thale cress is a plant that is genetically engineered with genes that break down toxic materials, the type of organism that is described here is the transgenic plant.

Transgene is when a gene is naturally transferred or transferred from an organism to another organism by genetic engineering method.

Therefore, the correct option is transgenic.

Answer:

The answer is B (transgenic)

Explanation:

100 point question, with Brainliest and ratings promised if a correct answer is recieved.
Irrelevant answers will be blocked, reported, deleted and points extracted.

I have an Ipad Mini 4, and a friend of mine recently changed its' password ( they knew what the old password was ). Today, when I tried to login to it, my friend claimed they forgot the password but they could remember a few distinct details :

- It had the numbers 2,6,9,8,4, and 2 ( not all of them, but these are the only possible numbers used )
- It's a six digit password
- It definitely isn't 269842
- It definitely has a double 6 or a double 9

I have already tried 26642 and 29942 and my Ipad is currently locked. I cannot guarantee a recent backup, so I cannot reset it as I have very important files on it and lots of memories. It was purchased for me by someone very dear to me. My question is, what are the password combinations?

Help is very much appreciated. Thank you for your time!

Answers

Answer: 266299         669922         292629        969622        Also just saying did you backup your files to the cloud?  If not you can buy a usb-c flash drive or a lighting cable flashdrive. Best Luck.

Explanation:

1.The ___________ method adds a new element onto the end of the array.
A.add
B.input
C.append
D.len
2.A(n) ____________ is a variable that holds many pieces of data at the same time.
A.index
B.length
C.array
D.element
3.A(n) ____________ is a piece of data stored in an array.
A.element
B.length
C.array
D.index
4.Where does append add a new element?
A.To the end of an array.
B.To the beginning of an array.
C.To the middle of an array.
D.In alphabetical/numerical order.
5.Consider the following code that works on an array of integers:

for i in range(len(values)):
if (values[i] < 0):
values[i] = values [i] * -1
What does it do?

A.Changes all positives numbers to negatives.
B.Nothing, values in arrays must be positive.
C.Changes all negative numbers to positives.
D.Subtracts one from every value in the array.
6.Which of the following is NOT a reason to use arrays?
A.To quickly process large amounts of data.
B.Organize information.
C.To store data in programs.
D.To do number calculations.
7.Consider the following:

stuff = ["dog", "cat", "frog", "zebra", "bat", "pig", "mongoose"]
"frog" is ____________.

A.an index
B.an element
C.a list
D.a sum
8._____________ is storing a specific value in the array.

A.Indexing
B.Summing
C.Assigning
D.Iterating
9.Consider the following code:

stuff = ["dog", "cat", "frog", "zebra", "bat", "pig", "mongoose"]

print(stuff[3])
What is output?

A.zebra
B.bat
C.frog
D.['dog', 'cat', 'frog', 'zebra', 'bat', 'pig', 'mongoose']
10.Consider the following code:

tests = [78, 86, 83, 89, 92, 91, 94, 67, 72, 95]

sum = 0
for i in range(_____):
sum = sum + tests[i]

print("Class average: " + str((sum/_____)))
What should go in the ____________ to make sure that the code correctly finds the average of the test scores?

A.sum
B.val(tests)
C.len(tests)
D.len(tests) - 1

Answers

Answer:

1. append

2. array

3. elament

4. To the end of an array.

5. Changes all negative numbers to positives.

6. To do number calculations.

7. an elament

8. Assigning

9. zebra

10. len(tests)

Explanation:

got 100% on the test

In the following table, complete the marginal cost, average variable cost, and average total cost columns. Quantity Variable Cost Total Cost Marginal Cost Average Variable Cost Average Total Cost (Vats of juice) (Dollars) (Dollars) (Dollars) (Dollars) (Dollars) 0 0 30 1 8 38 2 18 48 3 30 60 4 50 80 5 80 110 6 120 150 On the following graph, use the orange points (square symbol) to plot the marginal-cost curve for Jane's Juice Bar. (Note: Be sure to plot from left to right and to plot between integers. For example, if the marginal cost of increasing production from 1 vat of juice to 2 vats of juice is $5, then you would plot a point at (1.5, 5).) Then use the purple points (diamond symbol) to plot the average-variable cost curve starting at 1 vat of juice, and use the green points (triangle symbol) to plot the average-total-cost curve also starting at 1 vat of juice.

Answers

The marginal cost of production is the change in total production cost which comes from making one additional unit.

What is the average variable cost?

The average variable cost is the total variable cost per unit of output. It is found by dividing the total variable cost (TVC) by the output.

The average total cost is found by dividing the total cost (TC) by the output.

The average variable cost is determined by dividing the total variable cost by the quantity produced. In this case, subtract the average variable cost from the average total cost: This will give the average fixed cost per unit.

Learn more about cost on:

https://brainly.com/question/25109150

#SPJ1

In the following table, complete the marginal cost, average variable cost, and average total cost columns.

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.

Answers

Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.

Writting the code:

Assume the variable s is a String

and index is an int

an if-else statement that assigns 100 to index

if the value of s would come between "mortgage" and "mortuary" in the dictionary

Otherwise, assign 0 to index

is

if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)

{

   index = 100;

}

else

{

   index = 0;

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

Why does my school crhomebook not letting me sign In

Answers

Wrong sign in information that your putting in maybe?? If it’s not even giving you an option you need to ask your teachers next time your in school
Wrong sign in or no internet

what is government to business ​

Answers

Government-to-business is a relationship between businesses and governments where government agencies of various status/levels provide services and/or information to a business entity via government portals or with the help of other IT solutions.

Source: https://snov.io/glossary/g2b/

Who is the best Attack on Titan Character?

A.) Levi
B.) Eren
C.) Armin
D.) Mikasa
E.) Other​

Answers

Answer:

Levi

Explanation:

Levi is just a massive W of a character

Levi
Tbh just a hige w

what are the two types of boots that happens when you start your computer?

Answers

Answer:

Restarting a computer or its operating system software. It is of two types (1) Cold booting: when the computer is started after having been switched off. (2) Warm booting: when the operating system alone is restarted (without being switched off) after a system crash or 'freeze.

What do you call a connector on a motherboard that consists of pins that stick up from the board?

Answers

Answer:

This rectangular connector on a motherboard is called a header.

A network engineer may:

Answers

A network engineer is a technology professional who has the necessary skills to plan, implement and oversee the computer networks that support in-house voice, data, video and wireless network services.

Create a program in Python that prompts the user to enter an integer number within the range of 1 to 10 inclusive. The program should display “correct input” if the input is within the given range else it should display “wrong input”.

Answers

Python Code with Explanation:

# create a function named func to implement the required logic

def func():

# get the input from the user and store it in a variable named number

   number = int(input("Please enter an integer between 1 to 10 inclusive\n"))

# if the input number is equal or greater than 1 and equal to 10 or less then the input is correct    

   if number>=1 and number<=10:

# print correct input

       return print("Correct input")

# else the input is wrong

   else:

# print wrong input

       return print("Wrong input")

# call the function func

func()

Output:

Test 1:

Please enter an integer between 1 to 10 inclusive

4

Correct input

Test 2:

Please enter an integer between 1 to 10 inclusive

0

Wrong input

Test 3:

Please enter an integer between 1 to 10 inclusive

11

Wrong input

Create a program in Python that prompts the user to enter an integer number within the range of 1 to
Create a program in Python that prompts the user to enter an integer number within the range of 1 to
Create a program in Python that prompts the user to enter an integer number within the range of 1 to

Answer:

dont know if it works!

Explanation:

input=(input("enter number")

if input > 1

print("correct input")

if input <10

print("correct input")

else

print("wrong input")

What (if any) are the same feature requirements that might be found in server software/OS environments

Answers

The same feature requirements that might be found in server software/OS environments

They include:

Server Hardware Requirements  such as  Quad-Core 2 Ghz or much more high,  8 GB RAM  or more  and also free disk space.

What are the software requirements for a server?

The Software requirements for any given database server includes;

Database server Operating system, etc.

Some of the key features of the key server operating system is made up of: the capability to access the server when using either GUI and command-level interface. the ability to execute all or a lot of processes from OS commands and others.

Learn more about software/OS environments from

https://brainly.com/question/26424062

#SPJ1

please answer urgently. See the attached image

please answer urgently. See the attached image

Answers

Based on the information, the tight upper bound for T(h) is O(h).

How to explain the information

The algorithm visits at most x children in line 3, where x is the number of keys in the current node.

T(h) ≤ T(h-1) + x

For a B-Tree of height 0, i.e., a single node, the algorithm just compares the key with the node key and returns. Therefore, T(0) = Θ(1).

We can express T(h) as a sum of terms of the form T(h-i) for i = 1 to h:

T(h) ≤ T(h-1) + x

T(h-1) ≤ T(h-2) + x

T(h-2) ≤ T(h-3) + x

...

T(2) ≤ T(1) + x

T(1) ≤ T(0) + x

Adding all these inequalities, we get:

T(h) ≤ T(0) + xh

Substituting T(0) = Θ(1), we get:

T(h) = O(h)

Therefore, the tight upper bound for T(h) is O(h).

Learn more about upper bound on

https://brainly.com/question/28725724

#SPJ1

Complete the statement below with the correct term.

The primary disk drive that boots the system is known as the
.

Answers

Answer:

boot disk

Explanation:

This disk contains files required by the boot sequence as well as the operating system, which is loaded at the end of the startup process.

Master

Explanation:

Master is the term used for to describe the primary disk, one that boots, or start up, the system

How do u create a blank line between two lines in a document

How do u create a blank line between two lines in a document

Answers

Answer: Press enter at the end of the line.

Explanation:

If you press enter at the end of the line or sentence, it will start a new space underneath your line or sentence.

What is the data type of the following variable?
name = "John Doe"

Answers

In computer programming, a variable is a storage location that holds a value or an identifier. A data type determines the type of data that can be stored in a variable. The data type of the following variable, name = "John Doe" is a string data type.

In programming, a string is a sequence of characters that is enclosed in quotes. The string data type can store any textual data such as names, words, or sentences.The string data type is used in programming languages such as Java, Python, C++, and many others. In Python, the string data type is denoted by enclosing the value in either single or double quotes.

For instance, "Hello World" and 'Hello World' are both strings.In conclusion, the data type of the variable name is string. When declaring variables in programming, it is important to assign them the correct data type, as it determines the operations that can be performed on them.

For more such questions on variable, click on:

https://brainly.com/question/28248724

#SPJ8

plsssssss heeeeeelp


Step 1: Create a New LocoXtreme Python Program


Start by creating a new Python program in the LocoRobo Academy.


The logic we will add will occur between the activate and deactivate motor lines. Recall that the motors must be activated in order to properly set the RGB Lights.


W1. Add code to prompt the user three times. Once for each R, G, and B color value, with the output stored in variables R, G, and B respectively. However, each prompt should ask for a HEX value from 00 to FF. Write your code below.

Step 2: Using the Input

With the input hex values stored in variables, we need to convert the values to decimal for use with the LocoXtreme set_lights() command. Recall that the int() function with a base of 16 can convert a hexadecimal string into a decimal integer.

W2. Add code to convert each R, G, B value into decimal, storing the decimal value in the same respective R, G, and B variable. Write your code below.

Now that we have decimal values, we can pass them to the set_lights() command and pause to display the user-specified color.

W3. Call set_lights() using your three decimal color values. Include a sync_lights() call after to update the lights on the robot. Finally, add a time.sleep() call to make the lights display for a time before the robot disconnects.

Step 3. Slicing

In the Lesson Video and Student Guide, it was shown how a string of hex characters could be split using slicing. Rather than prompting the user for three separate hexadecimal color values, we can prompt them for a single string of all three sets concatenated together. For example, rather than a user inputting FF three times, they would input FFFFFF in a single prompt.

For this type of logic, it is assumed the length is always 6 characters. Therefore, the user needs to add a leading '0' if the value would otherwise be a single digit. For example, 'A' would be '0A'.

W4. Update your code to only prompt the user for a single 6-character hexadecimal string. Slice the values for R, G, and B from left to right in the string, before they are cast into decimals. Write your updated code section below.

Answers

The Program based on the information will be given below.

How to explain the program

# Prompt the user to input a 6-character hexadecimal string

inputs = input("Please enter a six-digit hexadecimal sequence (e.g. FFFFFF): ")

# Slice the R, G and B values separately from left to right in the string, adding a leading '0' if needed

R_value = int(inputs[0:2], 16)

G_value = int(inputs[2:4], 16)

B_value = int(inputs[4:6], 16)

# Call set_lights() with three decimal represented colors then sync_lights()

set_lights(R_value, G_value, B_value)

sync_lights()

# To make lights display longer before disconnecting, add a time delay  

time.sleep(5)

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

hello everyone I need some help with what a footer is on a web page

Answers

Answer:

A website's footer is an area located at the bottom of every page on a website, below the main body content

Explanation:

By including a footer, you make it easy for site visitors to keep exploring without forcing them to scroll back up.

How did Aryan religion contribute to class differences in India?​

Answers

According to traditional theories the Indian caste system has its origins in the advent of the Aryans in the Indus Valley.

1. Write a program in C++ that can convert a given integer value
into words. Assume the largest integer value to be 999 billion
For an input of say 1108 your out should be ONE THOUSAND
ONE HUNDRED AND EIGHT​

Answers

Answer:

Hope this works

#include <iostream>

   #include <string>

   #include <vector>

   using namespace std;

   string digitName(int digit);

   string teenName(int number);

   string tensName(int number);

   string intName(int number);

   vector<string> ones {"","one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};

   vector<string> teens {"ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen","sixteen", "seventeen", "eighteen", "nineteen"};

   vector<string> tens {"", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"};

   string nameForNumber (long number) {

       if (number < 10) {

           return ones[number];

       } else if (number < 20) {

           return teens [number - 10];

       } else if (number < 100) {

           return tens[number / 10] + ((number % 10 != 0) ? " " + nameForNumber(number % 10) : "");

       } else if (number < 1000) {

           return nameForNumber(number / 100) + " hundred" + ((number % 100 != 0) ? " " + nameForNumber(number % 100) : "");

       } else if (number < 1000000) {

           return nameForNumber(number / 1000) + " thousand" + ((number % 1000 != 0) ? " " + nameForNumber(number % 1000) : "");

       } else if (number < 1000000000) {

           return nameForNumber(number / 1000000) + " million" + ((number % 1000000 != 0) ? " " + nameForNumber(number % 1000000) : "");

       } else if (number < 999000000001) {

           return nameForNumber(number / 1000000000) + " billion" + ((number % 1000000000 != 0) ? " " + nameForNumber(number % 1000000000) : "");

       }

       return "error";

   }

   int main()

   {

       long input;

       do

       {

           cout << "Please enter a positive integer: ";    

           cin >> input;

           cout << "\n" << nameForNumber(input) << endl;

           cout << "\n\n" << endl;

       }while (input > 0);

       return 0;

   }

Users interact with ____ through names controls​

Answers

Answer:

Name attribute

Explanation:

That is the answer

You just figured out the root cause of an application error. You changed some configurations on the affected machines and verified that the users have full functionality. What should you do next?

Answers

After resolving the application error and verifying that users have full functionality,the next step   is to document the changes made and the steps taken to resolve the issue.

How is this so?

This documentation   is crucial for future reference, troubleshooting, and knowledge sharing within the team.

Also, it is important tocommunicate the resolution to the relevant stakeholders,such as users or supervisors, to ensure they are aware of the resolution and can provide f  eedback if necessary.

Learn more about application error at:

https://brainly.com/question/30062195

#SPJ1

What is the difference between

Answers

I need more context

Explanation:

you didn't the whole question

Need help ASAP??? Pick the best answers

Need help ASAP??? Pick the best answers

Answers

Answer:

A and C are correct pick both

You have the opportunity to meet some droids and Wookies! Prompt the user for their name, then how many droids, and then how many Wookies they want to meet. Print out the name that was given, as well as how many droids and Wookies they wanted to meet. Here is an example of what you should print: Sean wants to meet 3 droids and 2 Wookies.

in phyton code

Answers

name = input("What's your name? ")

droids = int(input("How many droids do you want to meet? "))

wookies = int(input("How many wookies do you want to meet? "))

print(name + " wants to meet "+str(droids)+" droids and "+str(wookies)+" Wookies.")

I wrote my code in python 3.8. I hope this helps!

Sarah is a detall-oriented programmer. While testing her program, what other skill would she have to apply in order to detect all bugs?

Answers

The answer is Troubleshooting
Other Questions
A therapist who uses a variety of psychological theories and therapeutic methods is said to bea. client centeredb. electicc. humanisticd. meta analytic An overnight train left at 22:20 H on a journey that took 8 hours and 56 minutes. Find the time at which it arrived at its destination 3. If15x+20'what is the value of?X What is the impulse experienced by a 24kg dog as he speeds up from 4m/s to 9m/s? The earth rotates (spins around) on its axis and revolves (orbits) the sun Riz pays a visit to his doctor's office where the nurses determine that his BMI is 19.8. This puts him in the _____ category. obesity normal/healthy weight overweight underweight _____ energy is absorbed by photosynthesis, and energy is_________ through respiration.A.Plant Solar Chemical B. Capturedreleased What political party help th e poor farmers democrats or republicans Find slope between (6,1) & (-4,-2) Si 8 mesas cuestan $ 600, cul es el costo de 28 mesas? Name the keto sugar of 9C-atoms and an important components of membrane proteins. The barking dog woke up the entire neighborhood with his incessant noise Which of the following is a trinomial with degree 3?a. 2xy^2b. 3x+3x^2c. 2x^3+xyd. 2+5x-3x^3 Help help i need help Companies use the cycle to evaluate and improve performance. Is 4.15 larger, smaller or equal to 415 tenths. There are a lot more rules now about how long and how hard high school athletes can practice because parents have become very litigious and schools cannot afford to pay for such things.Based on how it is used in the sentence, the most likely meaning of litigious is The eigenvalues of a matrix A are the same as the eigenvalues of the reduced row echelon form of A.TRUE/FALSE what revolutionary view did st. francis of assisi have that was contrary to that held by the church of rome regarding wealth & god? calculate the final temperature of 32 ml of ethanol initially at 11 c upon absorption of 562 j of heat (density of ethanol = 0.789 g/ml; cethanol = 2.42 j/ g c).