"After the first calculation is performed, the program should ask the user if they would like to continue. They will type in the word “quit” if they wish to end the program. If they wish to continue, they will enter yes than enter a new length of a triangle side and the string they would like on their sign."
How could I show this in code? Please give examples asap. I don't understand loops at all. In java please
In: Computer Science
6. Write a Python function that checks whether a passed string is palindrome or
not. Note:-A palindrome is a word, phrase, or sequence that reads the same backward
as forward
. Some examples you may try: “madam”
redder
“race car”
Eva, Can I Stab Bats In A Cave?
If the argument passed is not a string,
invoke an exception or an assertion
and state in a comment which one you have chosen and why.
In: Computer Science
The Ones That Walk Away From Omelas Text
Please click on the link and read the following article -->https://docs.google.com/document/d/12n5cYjWs635zIapXxOSiRkTk2SjUWraGZRaoVCpwjfk/edit?usp=sharing
Then answer the following question with a 200 word minimum response. You should show that you have a good understanding over the subject of Utilitarianism.
1) How can this short story be considered a critique of Utilitarianism? Is it a fair critique?
In: Psychology
Question: “The more you focus on the value of your product or service, the less important price becomes.” Discuss that statement based on your understanding of consumer behavior, in particular, the ways that function, experience, cost, meaning, and elements of MINDSPACE influence consumer behavior by enhancing the perception of value. Use examples from class or your own assignment work to support your arguments. (1500 word maximum).
In: Operations Management
*** Please I do not want answer from internet
*** Plagiarism not allowed
In: Operations Management
Herstory: what do footbinding and witch burning tell us about women as a caste?
Dworkin tells a "herstory," which she describes as "the underbelly of history." She centres this herstory on two practices: footbinding and witchburning. Why might she focus on these particular practices? What do they have in common? What do they tell us about women as a caste?
(word limit: around 250)
In: Psychology
make a table of important vitamin facts. At the top of the document list your demographic (age/sex) category. In the table, include the following information for all vitamins (there are 13 - see Chapter 9 & 10)
FORMAT - choose a format that works for you. You may use either of the vitamin table templates (one is an excel file, one is a word doc) provided on the Chapter 9 page as a guide for what information to include in your table or make your own.
In: Biology
In: Psychology
Normalizing the Relational Model for the Student Project
and
Creating a Normalized SQL Database
Patient (patientNo, name, address, phone, dateOfBirth, sex, insuranceCo, policyNo, relationshipToInsured)
Appointment(patientNo, apptdate, appttime, reason, staffNo, visitNo)
Visit(visitNo, patientNo, visitdate, visittime, duration, reason, visitType, visitCost, staffNo, roomNo)
Staff(staffNo, name, title, specialty, address, phone)
Availability(staffNo, availDate, startTime, endTime)
InsurancePolicy (company, policyNo, insuredName, policytype, medicalCoPay, labCoPay, pharmacyCoPay, startDate, endingDate)
DiagnosisMenu(diagCode, diagName)
ProcedureMenu(procCode, procName, cost)
Room(roomNo, roomType, condition)
PrescriptionScript(scriptNo, visitNo, dateWritten, itemPrescribed, quantityPrescribed, directions, numberRefills)
LabTest(testNo, prescriptionNo, testype, testDate, testTime, cost, result)
Diagnosis(visitNo, diagCode, dateOnset, symptons, severity, prognosis)
Referral(refNo, visitNo, refTo, reason)
Bill(invoiceNo, billDate, totalAmount, dueDate, patientNo, amountPaid)
Charge(invoiceNo, serviceType, serviceDate, amountCharged)
Payment(invoiceNo, date, amountPaid, patientPayer, insuranceCoPayer, insurancePolNoPayer)
Task 1:
Begin with the list of the tables that the entities and relationships from the E-R diagram mapped to naturally. For each table on the list, identify the functional dependencies. List the functional dependencies in a Microsoft Word document.
Task 2:
Normalize the relations to BCNF, placing the normalized relations in your Word document.
Task 3:
Then decide whether the resulting tables should be implemented in that form. If not, explain why in your Word document.
Task 4:
For each table, write the table name and write out the names, data types, and sizes of all the data items, Identify any constraints, using the conventions of the DBMS you will use for implementation. Add this information to your Word document.
Task 5:
Write and execute SQL statements to create all the tables needed to implement the design. Note that you will need to name your database something different then the name you previously used.
Task 6:
Create indexes for foreign keys and any other columns that will be used most often for queries.
Task 7:
Insert about five records in each table, preserving all constraints. Put in enough data to demonstrate how the database will function.
Task 8:
Write SQL statements that will process five non-routine requests for information from the database just created. For each, write the request in English, followed by the corresponding SQL command.
Task 9:
Create at least one trigger and write the code for it.
In: Computer Science
I need the c# code for the below assignment.
Complete PigLatin program in Windows Forms GUI. Zip the solution project file and attach to this submission. Do this in the GUI format (Windows Form). Be sure and add a Clear Button to reset for entering another word or words.
PigLatinGUI
Basic Steps in Creating your Program
Your program assignment
Pig Latin is a nonsense language. To create a word in pig Latin, you remove the first letter and then add the first letter and “ay” at the end of the ford. For example, “dog” becomes “ogday” and “cat” becomes “atcay”. Write a program named PigLatin that allows the user to enter a word and display’s the pig Latin version.
For words which begin with vowel sounds or silent letter, one just adds "yay" to the end. Examples are:
Another less common way some speakers may use a different ending for words starting with vowels is adding "way" (or "wa") to the end. Examples are:
You could use the split command to enter more than one word. Indicating delimiters
char[] delimiterChars = { ' ', ',', '.', ':', ';', '\t' };
string[] words = text.Split(delimiterChars);
In: Computer Science