answersLogoWhite

0

Ascend = Go up. 1, 2, 3, 4...

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Computer Science

What is the difference between ascending and descending order?

Ascending means increasing (usually numbers but could be alphabetic). Descending is the opposite. 81, 121, 100, 169, 11, 9, 14; sorted in ascending order is: 9, 11, 14, 81, 100, 121, 169. The letters Q A B T U Y G H, sorted in descending order are: Y U T Q H G B A


The ascending order of a data hierarchy is?

bit-byte-field-record-file-data base


What are four parts of a database listed in ascending order?

1. Entry2. Field3. Record4. File


What is the median of two sorted arrays?

The median of two sorted arrays is the middle value when all the numbers are combined and arranged in ascending order.


How can the keyword "sorting" be implemented in pseudo code to arrange the elements of an array a of integers in ascending order?

To implement the keyword "sorting" in pseudo code to arrange the elements of an array a of integers in ascending order, you can use the following algorithm: Start by iterating through the array a from the first element to the second-to-last element. Compare each element with the next element in the array. If the current element is greater than the next element, swap their positions. Continue this process until the entire array is sorted in ascending order. Here is a simple example of pseudo code for implementing the sorting algorithm: for i from 0 to length(a) - 1 do for j from 0 to length(a) - i - 1 do if aj aj 1 then swap(aj, aj 1) end if end for end for This pseudo code represents a basic implementation of a sorting algorithm to arrange the elements of an array in ascending order.