
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
![1. Use the following array definition:
int arr[10] = {1,9,7,0,8, 3,7,6,3,8 };
2. Print all values stored in the array using the subscript operator
(i.e.[ ])
3. Print all values stored in the array using the dereference
operator (i. e. *)
4. Print a table to show of the index, value, memory address](https://content.bartleby.com/qna-images/question/e38f1105-404a-45fb-9f23-9755279178e8/adb32dd6-c2c1-4ca4-8d47-8aca71b4a6f9/8au623n_thumbnail.png)
Transcribed Image Text:1. Use the following array definition:
int arr[10] = {1,9,7,0,8, 3,7,6,3,8 };
2. Print all values stored in the array using the subscript operator
(i.e.[ ])
3. Print all values stored in the array using the dereference
operator (i. e. *)
4. Print a table to show of the index, value, memory address
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Programming language: Processing from Java Question attached as photo Topic: Use of Patial- Full Arraysarrow_forwardDeclare a char array named delimiters and initialize it with the comma and semicolon characters.arrow_forwardSorted Names Problem:Assume that you already have the bubbleSort () ans swapS() modules. Design the main() program that allows the user to enter 20 names into a String array. Sort the array in ascending (alphabetical) order and display its contents. // The bubbleSort module accepts an array of Strings and array size// and sorts array in ascending orderModule bubbleSort(String Ref array[], integer arraySize) Declare Integer index1, index2 // bubblesort scores For index1 = arraySize – 1 to 0 Step -1 For index2 = 0 to index1 – 1 If array[index2] > array[index2 + 1] Then Call swapS(array[index2], array[index2 + 1) End If End For End ForEnd Module// The swapS module accepts two String elements and swaps their contentsModule swapS(String ref a, String ref b) Declare String temp // Swap a and b Set temp = a Set a = b Set b = tempEnd Modulearrow_forward
- 1- Write a user-defined function that accepts an array of integers. The function should generate the percentage each value in the array is of the total of all array values. Store the % value in another array. That array should also be declared as a formal parameter of the function. 2- In the main function, create a prompt that asks the user for inputs to the array. Ask the user to enter up to 20 values, and type -1 when done. (-1 is the sentinel value). It marks the end of the array. A user can put in any number of variables up to 20 (20 is the size of the array, it could be partially filled). 3- Display a table like the following example, showing each data value and what percentage each value is of the total of all array values. Do this by invoking the function in part 1.arrow_forwardd) Print all the elements of the array that are greater than the previous element at smaller than the next element. The first and the last element should be excluded. int arr[] = {5,14,66,7,22,39,0,-12,23,91}arrow_forwardGiven the declaration: int matrix[7][5]; a) How many elements does matrix have? b) Write the statement to read an integer entered at the keyboard into the second row and second column of the array matrix. c) Assume that the array matrix has already been assigned values. Write a statement that outputs the number stored in the first column of the last row in the array matrix. d) Assume that the array matrix has already been assigned values. Write a for loop to calculate the total of the integers stored in the first row of matrix.arrow_forward
- Review the following data structures in R: Arrays. Access R Studio. Then, demonstrate how to work with each Arrays as outlined below. Arrays Create an array of movies that contains the Top 10 movies of 2020.arrow_forward3. Read in a series of integers and store the inputs in an array and then calls the RemoveEvens() function which takes three parameters: the array size and two integer arrays:arrow_forwardNeed help with this debuggin exercise. 1.) Assume the following main module is in a program that includes the binarySearch function. Why doesn't the pseudocode in the main module work? //This program uses the binarySearch function to search for a //name in the array. This program assumes the binarySearch //function has alreday been defined. Modulemain() Constant Integer SIZE= 5 Declare String names[SIZE]= "Zack", "James", "Pam", "Marc", "Susan" Declare String searchName Declare Integer index Display "Enter a name to search for." Input searchName Set index = binarySearch(names, searchName, SIZE) If index != - 1 Then Display searchName, " was found." Else Display searchName, " was NOT found." End IF End Module All coding is in Python.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education