1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
kolbaska11 [484]
2 years ago
9

_____ refers to software for creating, maintaining, and manipulating data. group of answer choices extranet rom internet 2 ram d

bms
Computers and Technology
1 answer:
Sliva [168]2 years ago
5 0

Database management system (DBMS) refers to software for creating, maintaining, and manipulating data.

In the field of software engineering, a database management system (DBMS) can be described as a software whose function is to properly manage a database. Any kind of data in a database can be created, changed, or retrieved through the database management system (DBMS).

It is through the database management system (DBMS) that data is created, gets secured and its integrity is maintained. Through the database management system (DBMS), a certain piece of data can be assessed by various people at the same time from different locations.

Some examples of database management systems are columnar DBMS, NoSQL DBMS, and in-memory DBMS.

To learn more about the database management system (DBMS), click here:

brainly.com/question/19089364

#SPJ4

You might be interested in
Given an array A of size N, and a number K. Task is to find out if it is possible to partition the array A into K contiguous sub
Dennis_Churaev [7]

Answer: First lets solve the Prerequisite part

Lets say we have an input array of N numbers {3,2,5,0,5}. We have to  find number of ways to divide this array into 3 contiguous parts having equal sum. So the output for the above input array will be 2 as there are 2 ways to divide the array. One is (3,2),(5),(0,5) and the other is (3,2),(5,0),(5).

Following are the steps to achieve the above outcome.

  • Let p and q point to the index of array such that sum of array elements from 0 to p-1 is equal to sum of array elements from p to q which is equal to the sum of array elements from q+1 to N-1.  
  • If we see the array we can tell that the sum of 3 contiguous parts is 5. So the condition would be that sum of all array elements should be equal to 5 or sum of each contiguous part is equal to sum of all array elements divided by 5.
  • Now create 2 arrays prefix and postfix of size of input array. Index p of prefix array carries sum of input array elements from index 0 to index p. Index q of postfix array carries sum of input array elements from index p to index N-1
  • Next move through prefix array suppose at the index p of prefix array : value of prefix array == (sum of all input array elements)/5.
  • Search the postfix array for p index found above. Search it starting from p+2 index. Increment the count variable by 1 when the value of postfix array =(sum of all input array elements)/5 and push that index of postfix array into a new array. Use searching algorithm on new array to calculate number of values in postfix array.

Now lets solve the main task

We have an array A of size N and a number K. where A[]= {1,6,3,4,7} N=5 and K=3. We have to find if its possible to partition A into 3 contiguous subarrays such that sum of elements in each subarray is the same. It is possible in this example. Here we have 3 partitions (1,6),(3,4),(7) and sum of each of subarrays is same (1+6) (3+4) (7) which is 7.

Following are the steps to achieve the above outcome.

  • In order create K contiguous subarrays where each subarray has equal sum, first check the condition that sum of all elements in the given array should be divisible by K. Lets name another array as arrsum that will be the size of array A. Traverse A from first to  last index and keep adding current element of A with previous value in arrsum. Example A contains (1,6,3,4,7} and arrsum has {1,7,10,14,21}
  • If the above condition holds, now check the condition that each subarray or partition has equal sum. Suppose we represent sum1 to sum of all element in given array and sum2 of sum of each partition then: sum2 = sum2 / K.
  • Compare arrsum to subarray, begining from index 0 and when it becomes equal to sum2 this means that end of one subarray is reached. Lets say index q is pointing to that subarray.
  • Now from q+1 index find p index in which following condition holds: (arrsum[p] - arrsum[q])=sum2
  • Continue the above step untill K contigous subarrays are found. This loop will break if, at some index, sum2 of any subarray gets greater than required sum2 (as we know that every contiguous subarray should contain equal sum).

A easier function Partition for this task:

int Partition(int A[], int N, int k) // A arra y of size N and number k

{      int sum = 0;    int count = 0;  //variables initialization    

   for(int j = 0; j < N; j++)  //Loop that calculates sum of A

  sum = sum + A[j];        

  if(sum % k != 0) //checks condition that sum of all elements of A should be //divisible by k

   return 0;        

   sum = sum / k;  

   int sum2 = 0;  //represents sum of subarray

  for(int j = 0; j < N; j++) // Loop on subarrays

  {      sum2=sum2 + A[j];  

   if(sum2 == sum)    { //these lines locates subarrays and sum of elements //of subarrays should be equal

       sum2 = 0;  

       count++;  }  }  

/*calculate count of subarrays whose

sum is equal to (sum of complete array/ k.)

if count == k print Yes else print No*/

if(count == k)    

return 1;  

   else

   return 0;  }

6 0
4 years ago
The _____ is the part of a computer that executes the instructions of a computer program.
andrey2020 [161]

Answer:

Central processing unit (CPU)

Hope you have a great day :)

7 0
2 years ago
Drag the tiles to the correct boxes to complete the pairs.
m_a_m_a [10]
<h2>Answer:</h2><h2>Releases a new video of its new high - tech manufacturing facility; To create a customer alert about a new program. </h2>

<h2>2)Hosts an online sweepstakes. .....;To increase brand loyalty </h2>

<h2>3)Gives bloggers.....:To give customers a peek into its operation.</h2>

<h2>4)Asks customers to determine their. .....;To allow customers to be part of the product development. </h2>

3 0
4 years ago
Heading level elements are used to indicate a heading and displayed by the browser in a larger bold typeface - true or false?
Art [367]

Answer:

The correct answer for the given question is "True".

Explanation:

In HTMLheading level tag are used to indicate the heading in the web page

Their are following 6 types of heading tag

<h1>hello1</h1>

<h2>hello2</h2>

<h3>hello3</h3>

<h4>hello4</h4>

<h5>hello5</h5>

<h6>hello6 </h6>

The <h1> tag will display content in largest form in web page whereas <h6>  tag will display content in small form in web page.

Following are the code of heading tag in HTML

<html>

<body>

<h1>hello1</h1>

<h2>hello2</h2>

<h3>hello3</h3>

<h4>hello4</h4>

<h5>hello5</h5>

<h6>hello6 </h6>

</body>

</html>

In this the heading hello1  will display in web browser in a larger bold typeface.

7 0
3 years ago
Scientists have discovered how to use electricity to power cars. Running cars on electricity could help
zhannawk [14.2K]
<span>A) conserve gasoline. 

hope it helepd

</span>
6 0
3 years ago
Other questions:
  • To type the letter address, _________ space from the dateline
    9·2 answers
  • When running JavaApplication8, the following output is seen on the display:
    15·1 answer
  • Friedman (1999) argues that "we are wrong to base health promotion in all societies on a Western framework for human development
    11·1 answer
  • Create a 4x5 matrix with ones everywhere and zeros on the last row.
    14·1 answer
  • What is the type of person of personal computer which is also called a laptop computer?
    8·1 answer
  • Can you please help me? I give you a brainlest <br>! ​
    6·1 answer
  • How can one create an online professional network using Face book?
    14·1 answer
  • 1) "Information systems are revolutionizing the way businesses function in the 21st century," Do you agree or disagree with this
    5·1 answer
  • Jabari created new video game for his coding course. What is one way he should format his pseudocode?
    12·1 answer
  • Use USB in a sentence
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!