Problem 3B (harder) In this version, assume the two input strings can be of same or different lengths. For example, "apple Vs. ave s "base" vs. "basement". Same as above, this function starts by comparing the first character of each string. If they are equal, it continues with the following pairs until the characters differ, or, we reach the end of one of the stings (or reach both ends if the ngs nave the same length). If no mismatch is detected when one string is exhausted, for example, "base" vs. asement", then the shorter string is deemed lexicographically preceding the longer one, i.e., "base" <"basement", which means "base" should appear earlier in dictionary than "basement" (make sense, right) More examples, Expected output "abacus < boạt" "abacus > Boat" First input string Second input string "boat" "abacus" "abacus" "Boat" "building > beat" "apple > abut" "building" "beat" "apples" "еxam" "abut" "examines" "exam < examines" "apples > apple" "apples" "аpple" "apple" "apple" "apple == apple" Develop flowchart for this algorithm, Hint: first find the shorter length, and loop through only that range. Should stop loop immediately when a mismatch is found. But you cannot say, "go out of loop". Use the approach mentioned in class and lab to stop a loop earlier. The loop should only have one exit point. Save the flowchart as img_03B.jpg Implement this using JavaScript Use prompt to ask users for two strings For characters comparisons, just use < >=, as numerical values You should stop loop immediately when a mismatch is found. But cannot use break. Use the approach mentioned in class and use in labs to stop a loop earlier. The loop should only have one exit point.
Problem 3B (harder) In this version, assume the two input strings can be of same or different lengths. For example, "apple Vs. ave s "base" vs. "basement". Same as above, this function starts by comparing the first character of each string. If they are equal, it continues with the following pairs until the characters differ, or, we reach the end of one of the stings (or reach both ends if the ngs nave the same length). If no mismatch is detected when one string is exhausted, for example, "base" vs. asement", then the shorter string is deemed lexicographically preceding the longer one, i.e., "base" <"basement", which means "base" should appear earlier in dictionary than "basement" (make sense, right) More examples, Expected output "abacus < boạt" "abacus > Boat" First input string Second input string "boat" "abacus" "abacus" "Boat" "building > beat" "apple > abut" "building" "beat" "apples" "еxam" "abut" "examines" "exam < examines" "apples > apple" "apples" "аpple" "apple" "apple" "apple == apple" Develop flowchart for this algorithm, Hint: first find the shorter length, and loop through only that range. Should stop loop immediately when a mismatch is found. But you cannot say, "go out of loop". Use the approach mentioned in class and lab to stop a loop earlier. The loop should only have one exit point. Save the flowchart as img_03B.jpg Implement this using JavaScript Use prompt to ask users for two strings For characters comparisons, just use < >=, as numerical values You should stop loop immediately when a mismatch is found. But cannot use break. Use the approach mentioned in class and use in labs to stop a loop earlier. The loop should only have one exit point.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 4 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.Recommended textbooks for you
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
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