Fill in the blanks in each of the following:
- C stores lists of values in _______.
- The elements of an array are related by the fact that they _____.
- When referring to an array element, the position number contained within square brackets is called a(n) __________.
- The names of the five elements of array p are ___, ____, ___, _____ and ____.
- The contents of a particular element of an array is called the _____ of that element.
- Naming an array, stating its type and specifying the number of elements in the array is called _____ the array.
- The process of placing the elements of an array into either ascending or descending order is called ____.
- In a two-dimensional array, the first index identifies the _____ of an element and the second index identifies the _____ of an element.
- An m-by-n array contains _____ rows, _____ columns and _____ elements.
- The name of the element in row 3 and column 5 of array d is ___.
a)
To fill in the blanks with appropriate word.
C stores the list of values in _Arrays.
Explanation of Solution
Arrays in C stores the homogenous data type of values in consecutive memory locations.Thus, the correct fill up is arrays.
b)
To fill in the blanks with appropriate word.
The elements of the array are related by the fact that they areHomogeneous.
Explanation of Solution
Arrays in C stores the homogenous data type (of the same type) of values in consecutive memory locations e.g. they can contain the same kind of elements like integers, characters, doubles and floats. etc.
Thus, the correct fill up is homogeneous.
c)
To fill in the blanks.
When referring to an array element, the position number contained within square brackets is called aSubscript.
Explanation of Solution
The elements in an array are accessed using the index value contained within the square bracket known as a subscript. It is used to identify the index of the element.
Thus, the correct fill up is subscript.
d)
To fill in the blanks.
The names of five elements of array p are p[0], p[1],p[2],p[3] and p[4].
Explanation of Solution
The elements of the array are accessed using the subscript which start from 0 to length-1.Thus, the correct fill up is p[0],p[1],p[2], p[3] and p[4]..
e)
To fill in the blanks.
The contents of the particular element of the array are called as thevalueof the element in the array.
Explanation of Solution
The content of the element of an array is called the value. For example a is an array and the element at its first positive contains the content 2. So the value will be 2.Thus, the correct fill up is value.
f)
To fill in the blanks.
Naming an array, stating its type and specifying the number of elements in the array is called thedeclarationof the array.
Explanation of Solution
Declaration syntax of an array is as follows-
type arrayname[size];
For example,intarr[5]; //declaration of integer array of size 5.
Thus, the correct fill up is Declaration.
g)
To fill in the blanks.
The process of placing the elements of an array either in ascending order or descending order is calledSorting.
Explanation of Solution
Sorting is the process of arranging the element either in increasing or decreasing order. Thus, the correct fill up is sorting.
h)
To fill in the blanks.
In a two-dimensional array, the first index identifies therow of an element and the second element identifies thecolumnof an element.
Explanation of Solution
The elements in two-dimensional array are stored in rows and column.
Following is the assignment in a 2D array.
a[0][1]=5;
Here 0 is the row number and 1 is the column number and at this position value 5 is stored.Thus, the correct fill up is rowandcolumn.
i)
To fill in the blanks.
An m by n array contains_m_ rows, _n_ columns and _m*n__ elements.
Explanation of Solution
The number of elements in 2 d array is always the product of the number of rows and columns.Thus, the correct fill up arem, n and m*n.
j)
To fill in the blanks.
The name of an element in row 3 and column 5 of array d isd[2][4].
Explanation of Solution
The array indices always start from 0, so the element in 3rd row and 5th column of 2 d array d will be denoted by d[2][4].
Thus, the correct fill up is d[2][4].
Want to see more full solutions like this?
Chapter 6 Solutions
C How to Program (8th Edition)
Additional Engineering Textbook Solutions
Introduction To Programming Using Visual Basic (11th Edition)
Thinking Like an Engineer: An Active Learning Approach (4th Edition)
Problem Solving with C++ (10th Edition)
Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)
Starting Out with Python (4th Edition)
Modern Database Management
- Question: Based on the given problem, create an algorithm and a block diagram, and write the program code: Function: y=xsinx Interval: [0,π] Requirements: Create a graph of the function. Show the coordinates (x and y). Choose your own scale and show it in the block diagram. Create a block diagram based on the algorithm. Write the program code in Python. Requirements: Each step in the block diagram must be clearly shown. The graph of the function must be drawn and saved (in PNG format). Write the code in a modular way (functions and the main part should be separate). Please explain and describe the results in detail.arrow_forward23:12 Chegg content://org.teleg + 5G 5G 80% New question A feed of 60 mol% methanol in water at 1 atm is to be separated by dislation into a liquid distilate containing 98 mol% methanol and a bottom containing 96 mol% water. Enthalpy and equilibrium data for the mixture at 1 atm are given in Table Q2 below. Ask an expert (a) Devise a procedure, using the enthalpy-concentration diagram, to determine the minimum number of equilibrium trays for the condition of total reflux and the required separation. Show individual equilibrium trays using the the lines. Comment on why the value is Independent of the food condition. Recent My stuff Mol% MeOH, Saturated vapour Table Q2 Methanol-water vapour liquid equilibrium and enthalpy data for 1 atm Enthalpy above C˚C Equilibrium dala Mol% MeOH in Saturated liquid TC kJ mol T. "Chk kot) Liquid T, "C 0.0 100.0 48.195 100.0 7.536 0.0 0.0 100.0 5.0 90.9 47,730 928 7,141 2.0 13.4 96.4 Perks 10.0 97.7 47,311 87.7 8,862 4.0 23.0 93.5 16.0 96.2 46,892 84.4…arrow_forwardYou are working with a database table that contains customer data. The table includes columns about customer location such as city, state, and country. You want to retrieve the first 3 letters of each country name. You decide to use the SUBSTR function to retrieve the first 3 letters of each country name, and use the AS command to store the result in a new column called new_country. You write the SQL query below. Add a statement to your SQL query that will retrieve the first 3 letters of each country name and store the result in a new column as new_country.arrow_forward
- We are considering the RSA encryption scheme. The involved numbers are small, so the communication is insecure. Alice's public key (n,public_key) is (247,7). A code breaker manages to factories 247 = 13 x 19 Determine Alice's secret key. To solve the problem, you need not use the extended Euclid algorithm, but you may assume that her private key is one of the following numbers 31,35,55,59,77,89.arrow_forwardConsider the following Turing Machine (TM). Does the TM halt if it begins on the empty tape? If it halts, after how many steps? Does the TM halt if it begins on a tape that contains a single letter A followed by blanks? Justify your answer.arrow_forwardPllleasassseee ssiiirrrr soolveee thissssss questionnnnnnnarrow_forward
- 4. def modify_data(x, my_list): X = X + 1 my_list.append(x) print(f"Inside the function: x = {x}, my_list = {my_list}") num = 5 numbers = [1, 2, 3] modify_data(num, numbers) print(f"Outside the function: num = {num}, my_list = {numbers}") Classe Classe that lin Thus, A pro is ref inter Ever dict The The output: Inside the function:? Outside the function:?arrow_forwardpython Tasks 5 • Task 1: Building a Library Management system. Write a Book class and a function to filter books by publication year. • Task 2: Create a Person class with name and age attributes, and calculate the average age of a list of people Task 3: Building a Movie Collection system. Each movie has a title, a genre, and a rating. Write a function to filter movies based on a minimum rating. ⚫ Task 4: Find Young Animals. Create an Animal class with name, species, and age attributes, and track the animals' ages to know which ones are still young. • Task 5(homework): In a store's inventory system, you want to apply discounts to products and filter those with prices above a specified amount. 27/04/1446arrow_forwardOf the five primary components of an information system (hardware, software, data, people, process), which do you think is the most important to the success of a business organization? Part A - Define each primary component of the information system. Part B - Include your perspective on why your selection is most important. Part C - Provide an example from your personal experience to support your answer.arrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
- Programming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageEBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT