
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
Question

Transcribed Image Text:}
function problem13() {
var outputObj = document.getElementById("output");
var inputNumber
parseInt(document.getElementById("numberInput").value);
outputObj.innerHTML = "number:
"number: " + inputNumber;
// Add line breaks for space
outputObj.innerHTML += "<br><br>";
// Generate the sequence based on the input number
for (var i = 1; i <= inputNumber; i++) {
var result = Math.pow(2, 1) - 1;
outputObj.innerHTML += result;
// Add a comma if it's not the last number
if (i < inputNumber) {
|| outputObj.innerHTML += ", ";
}
}
// Add line breaks for space
outputObj.innerHTML += "<br><br>";
// Program ended message
outputObj.innerHTML += "Program ended";
![function problem12() {
var outputObj = document.getElementById("output");
=
parseInt(prompt ("Please enter a number: ""));
var inputNumber
outputObj.innerHTML
=
"Input number:
var lastDigit = inputNumber % 10;
inputNumber
=
+ inputNumber + "<br><br>Numbers in non-decreasing order? ";
Math.floor(inputNumber/ 10);
var allDigitsNonDecreasing = true;
while (inputNumber > 0) {
var currentDigit = inputNumber % 10;
if (currentDigit > lastDigit) {
1
allDigitsNonDecreasing = false;
break;
}
}
lastDigit = currentDigit;
inputNumber = Math.floor(inputNumber/10);
outputObj.innerHTML += allDigits Non Decreasing? "yes" "no";
// Inform the user that the program has ended
outputObj.innerHTML += "<br><br>" + "Program ended";
document.getElementsByTagName("button")[0].setAttribute("disabled", "true");](https://content.bartleby.com/qna-images/question/1399694f-68c7-4a50-b56d-843cae9b4041/db2571db-fb87-4f31-8274-ada6081ee6d7/z6ywun_thumbnail.jpeg)
Transcribed Image Text:function problem12() {
var outputObj = document.getElementById("output");
=
parseInt(prompt ("Please enter a number: ""));
var inputNumber
outputObj.innerHTML
=
"Input number:
var lastDigit = inputNumber % 10;
inputNumber
=
+ inputNumber + "<br><br>Numbers in non-decreasing order? ";
Math.floor(inputNumber/ 10);
var allDigitsNonDecreasing = true;
while (inputNumber > 0) {
var currentDigit = inputNumber % 10;
if (currentDigit > lastDigit) {
1
allDigitsNonDecreasing = false;
break;
}
}
lastDigit = currentDigit;
inputNumber = Math.floor(inputNumber/10);
outputObj.innerHTML += allDigits Non Decreasing? "yes" "no";
// Inform the user that the program has ended
outputObj.innerHTML += "<br><br>" + "Program ended";
document.getElementsByTagName("button")[0].setAttribute("disabled", "true");
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 3 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
- What are the values of the variable number and the vector review after the following code segment is executed? vector<int> review(10,-1); int number; number = review[0]; review[1] = 150; review[2] = 350; review[3] = 450; review.push_back(550); review.push_back(650); number += review[review.size()-1]; review.pop_back();arrow_forwardJS Write a function named find_value that takes a list/array of whole numbers as a parameter. Your functio will need to find if the parameter contains the value 3 as an entry. Return true if the input has an entry equivalent to 3 and false if it does not.arrow_forwardPOEM List[POEM_LINE] PRONUNCIATION_DICT Dict[str, PHONEMES] Do not add statements that call print, input, or open, or use an import statement. Do not use any break or continue statements.arrow_forward
- Scrabble Scrabble is a game where players get points by spelling words. Words are scored by adding together the point values of each individual letter. Define a function scrabble_score (word:str) -> int that takes a string word as input and returns the equivalent scrabble score for that word. score = {"a": 1, "c": 3, "f": 4, "i": 1, "1": 1, "o": 1, "r": 1, "u": 1, "t": 1, "x": 8, "z": 10} For example, "b": 3, "h": 4, "n": 1, Your Answer: == 20 assert scrabble_score("quick") assert scrabble_score("code") == 7 1 # Put your answer here 2 Submit "e": 1, "d": 2, "g": 2, "k": 5, "j": 8, "m": 3, "q": 10, "p": 3, "s": 1, "w": 4, "v": 4, "y": 4,arrow_forwardJS Write a function named list_concat that has a single parameter. This parameter will be a list/array. The parameter's entries will be strings. Your function needs to return a string. The returned string's value should be the concatention of all of the entries in the parameter with a space after each entry. Sample test cases: list_concat(["single"]) evaluates to "single list_concat(["limit", "break", "ready"]) evaluates to "limit break readyarrow_forwardThe show_sequence function at below is part of chapter 3 program. What kind of passing does this function us and why? void show_sequence(sequence display) // Library facilities used: iostream{ for (display.start( ); display.is_item( ); display.advance( )) cout << display.current( ) << endl;} Group of answer choices It uses a value parameter. The reason is the advancing of the current element through the sequence would alter the actual argument. That is what we want. It uses a value parameter. The reason is the we don't want the advancing of the current element through the sequence to alter the actual argument. It uses a geneeral parameter. The reason is the we don't want the advancing of the current element through the sequence to alter the actual argument. It uses a reference parameter. The reason is the we don't want the advancing of the current element through the sequence to alter the actual argument. It uses a reference parameter. The reason is…arrow_forward
- The following array of structures is used to hold data of your IPC144 grade center strcut grades {char name[101]; unsigned final; unsigned total;} struct grades myClass[25]; Write a function that gets the class grades array as a parameter and prints the list of people who passed the course (a student passes a course if he/she passes the final as well as the total) and their total mark. The function should also print the class average at the end (based on the total marks) void printPassedAverage(struct grades myClass, int size) The output should be like this Students passed:--------------------- John Smith 85 Jane Doe 65 Roy Crowe 80 Julia Stuart 55 Rob Gates 60 Class average: 69arrow_forward#include using namespace std; struct ListNode { string data; ListNode *next; }; int main() { ListNode *p, *list; list = new ListNode; list->data = "New York"; p new ListNode; p->data = "Boston"; list->next = p; p->next = new ListNode; p->next->data = "Houston"; p->next->next = nullptr; // new code goes here Which of the following code correctly deletes the node with value "Boston" from the list when added at point of insertion indicated above? O list->next = p; delete p; O p = list->next; %3D list->next = p->next; delete p; p = list->next; list = p->next; delete p; O None of these O p = list->next; %3D list->next = p; %3D delete p;arrow_forwardWhich function members are mutators?arrow_forward
- 1c) Average sentence length We will create a function (avg_sentence_len) to calculate the average sentence length across a piece of text. This function should take text as an input parameter. Within this function: sentences: Use the split() string method to split the input text at every '.'. This will split the text into a list of sentences. Store this in the variable sentences. To keep things simple, we will consider every "." as a sentence separator. (This decision could lead to misleading answers. For example, "Hello Dr. Jacob." is actually a single sentence, but our function will consider this 2 separate sentences). words: Use the split() method to split the input text into a list of separate words, storing this in words. Again, to limit complexity, we will assume that all words are separated by a single space (" "). (So, while "I am going.to see you later" actually has 7 words, since there is no space after the ".", so we will assume the this to contain 6 separate words in our…arrow_forwardvoid getVectorSize(int& size); void readData(vector<Highscore>& scores); void sortData(vector<Highscore>& scores); vector<Highscore>::iterator findLocationOfLargest( const vector<Highscore>::iterator startingLocation, const vector<Highscore>::iterator endingLocation); void displayData(const vector<Highscore>& scores); The size parameter from the given code won't be needed now, since a vector knows its own size. Notice that the findLocationOfLargest() function does not need the vector itself as a parameter, since you can access the vector using the provided iterator parameters. The name field in the struct must still be a c-string The focus of this assignment is to use iterators. You must use iterators wherever possible to access the vector. As a result, you must not use square brackets, the push_back() function, the at() function, etc. Also, the word "index" shouldn't appear in your code anywhere. You won't get full credit if…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