subject

A student creates a Raptor program that allows the user to input a list of first names into one array and last names into a parallel array. Student’s program allows the input to be terminated when the user enters a sentinel character. Student’s program produces a list of email addresses where the address is of the following form:__deleted3ca2a6f87c5294b52729d d96452132238ff30a93885ec2a6df5de376 de0437acdeleted__. What did the student do?a) Student declares and uses valid variables and arrays with the appropriate data types. b) Student evaluates the input, processes the data and determines the appropriate solution. c) Student creates formulas that can produce correct results. d) Student incorporates logical conditions that covers all boundaries specified by the problem. e) Student uses defensive programming techniques. f) Student shows strong evidence of applying program development strategies as discussed in the reading. g) Student enters in the appropriate documentation. h) Student shows mastery of algorithm design.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 01:50
Create a class named majors that includes an enumeration for the six majors offered by a college as follows: acc, chem, cis, eng, his, phys. display the enumeration values for the user, then prompt the user to enter a major. display the college division in which the major falls. acc and cis are in the business division, chem and phys are in the science division, and eng and his are in the humanities division. save the file as majors.java.
Answers: 2
question
Computers and Technology, 23.06.2019 15:30
Brian wants to conduct an online search with a certain phrase. he intends to use the words books that belong to the 1800s in his search. how should he use the word that in his search?
Answers: 1
question
Computers and Technology, 24.06.2019 18:20
Acommon algorithm for converting a decimal number to binary is to repeatedly divide the decimal number by 2 and save the remainder. this division is continued until the result is zero. then, each of the remainders that have been saved are used to construct the binary number.write a recursive java method that implements this algorithm.it will accept a value of int and return a string with the appropriate binary character representation of the decimal number.my code: public class lab16{public string converttobinary(int input){int a; if(input > 0){a = input % 2; return (converttobinary(input / 2) + "" +a); } return ""; } }
Answers: 1
question
Computers and Technology, 24.06.2019 22:00
According to your study unit, what is the main reason that improved human relations skills may improve your grades?
Answers: 1
You know the right answer?
A student creates a Raptor program that allows the user to input a list of first names into one arra...
Questions
question
English, 08.10.2020 01:01
question
Health, 08.10.2020 01:01
question
Mathematics, 08.10.2020 01:01
Questions on the website: 13722361