Finally, create a Word or text document (300-500 words) that answers the following questions:
In: Computer Science
Complete the following questions with proper citations; there is a 150-word minimum per question. Questions: Describe the difference between database structural integrity and semantic data integrity. Describe the preferred method of implementing referential integrity in a relational database. Explain two ways that views can be used to implement data security. What is a cascading REVOKE, and what effect can it have on database security?
In: Computer Science
Answer the following questions and upload to Canvas. Submit in Word or PDF format. Show your work and upload the Excel sheet as well. All the writing parts must be your original writing, don't quote, write in your own words.
The following table presents the orders of Samson Company for the last 36 months (3 years).
|
Month |
Order Year 1 |
Order Year 2 |
Order Year 3 |
|
January |
502 |
614 |
712 |
|
February |
408 |
592 |
698 |
|
March |
491 |
584 |
686 |
|
April |
456 |
532 |
644 |
|
May |
481 |
599 |
694 |
|
June |
511 |
604 |
702 |
|
July |
522 |
624 |
724 |
|
August |
500 |
612 |
716 |
|
September |
510 |
625 |
732 |
|
October |
512 |
627 |
740 |
|
November |
520 |
650 |
745 |
|
December |
536 |
680 |
756 |
In: Statistics and Probability
develop a 1,050-word evaluation describing a business structure and financial statements, including the following:
Identify and describe the legal categories of a business organization contrasting tax-related advantages and disadvantages.
Next, using your entrepreneur skills, consider starting your own business. What business structure would you choose and why?
Discuss financial statements for the chosen business structure, then explain with specific examples from the University Library, how these would help you make decisions about your business.
Cite a minimum of two peer-reviewed references.
Format your paper consistent with APA guidelines. ?
In: Accounting
Write a 700 word summary in which you articulate elements of leadership using the following criteria: Differentiate between leadership and management roles, and provide specific examples from the text, literature, or personal example. Cite at least one peer-reviewed source in addition to the course text (be certain to include the web link for your test in your citations). Format your paper consistent with APA guidelines.
In: Operations Management
Examine the following code, which contains six common bugs. In a separate Microsoft Word (or other word processing or text file), identify the line number of at least three (3) bugs as well as a brief description of each bug. 1. 2.
1. <!DOCTYPE html>
2. </html>
3. <head> <link rel="stylesheet" href="MyStyle.css"> </head>
4. <body>
5. <nav>
6. <a href="GroceryHome.html">Home</a> |
7. <a href="Products.html">Products</a> |
8. <a href="AboutUs.html">About Us</a> |
9. <a href="Contact.html">Contact</a>
10. </nav>
11. <header>
12. <h1> My Contact Page</h1>
13. </header>
14. <article>
15. Thank you for your interest in our grocery store. We offer delivery or call-ahead pickup services.
Please provide your contact information, and indicate your family's food preferences.
16. </article> <p>
17. <form action="#" method="post" id="form1">
18. <div class="div1">
19. <label for="fname1" >First Name:</label><br>
20. <input type="text" name="firstname1" id="fname1"><br>
21. <label for="lname1" >Last Name:</label><br>
22. <input type="text" name="lastname1" id="lname1"><br>
23. <label for="phone1" >Phone (i.e. 123-456-7890):</label><br>
24. <input type="text" name="phone1" id="phone1" placeholder="123-456-7890" ><br>
25. <label for="email1" >Email:</label><br>
26. <input type="text" name="email1" id="email1" placeholder="abc@xyz"><br>
27. <label for="contactpreference1" >Prefered contact method?</label><br>
28. <input type="radio" name="contactpreference1" value="phone" checked> Phone
29. <input type="radio" name="contactpreference1" value="email"> Email
30. <br><br>
31. <input type="submit" id="Submit1" value="Submit" onclick=" validateMyPage()" />
32. </div>
33. </form>
34. <form action="#" method="post" id="form2" >
35. <div class="div2">
36. <label for="fname2" >First Name:</label><br>
37. <input type="text" name="firstname2 id="fname2" required><br>
38. <label for="lname2" >Last Name:</label><br>
39. <input type="text" name="lastname2" id="lname2" required><br>
40. <label for="phone2" >Phone (i.e. 123-456-7890):</label><br>
41. <input type="tel" name="phone2" id="phone2" placeholder="123-456-7890" pattern='\d{3}[\-
]\d{3}[\-]\d{4}' required><br>
42. <label for="email2" >Email:</label><br>
43. <input type="email" name="email2" id="email2" placeholder="[email protected]" required><br>
44. <label for="contactpreference2" >Prefered contact method?</label><br>
45. <input type="radio" name="contactpreference2" value="phone" checked> Phone
46. <input type="radio" name="contactpreference2" value="email"> Email
47. <br><br>
48. <input type="submit" id="Submit2" value="Submit" />
49. </div>
50. <br><br>
51. <div class="myColumns ">
52. <select id="mySiteColor" onChange="changeColor(this.value)">
53. <option value="">-- Select a color --</option>
54. <option value="blue">Blue</option>
55. <option value="yellow">Yellow</option>
56. <option value="red">Red</option>
57. </select>
58. </div>
59. </form>
60. <script>
61. function validateMyPage() {
62. var firstname1 = document.getElementById("fname1").value;
63. if (firstname1 != "") {
64. alert("Please enter a first name.");
65. }
66. else {
67. alert(firstname1);
68. }
69. var phone1 = document.getElementById("phone1").value;
70. if (phone1 == "") {
71. alert("Please enter a phone number.");
72. return false;
73. }
74. else
75. {
76. var rePhone = new RegExp(/\d{3}[\-]\d{3}[\-]\d{4}/);
77. var reResult = rePhone.test(phone1);
78. if (reResult == false)
79. {
80. alert("Please provide a valid phone number in the format of: 222-222-2222.");
81. return false;
82. }
83. else
84. {
85. alert(phone1);
86. }
87. }
88. var email1 = document.getElementById("email1")!value;
89. if (email1 == "") {
90. alert("Please enter an email address.");
91. return false;
92. }
93. else
94. {
95. var reEmail = new RegExp(/[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$/);
96. var reResult == reEmail.test(email1);
97. if (reResult == false)
98. {
99. alert("Please provide a valid email address.");
100. return false;
101. }
102. else
103. {
104. alert(“email1”);
105. }
106. }
107. alert("Form data validated by JavaScript successfully!");
108. }
109. function changeColor(value) {
a. var myColor = document.getElementById("mySiteColor").value;
b. document.body.style.color = value;
110. }
111. </script>
112. </body>
113. </html>
In: Computer Science
Take this time to think about the word “empowerment.” Now consider this statement: You cannot empower anyone; only a person can empower him or her self. The most you can do as a helping professional is create a context for someone to empower himself or herself. What are the implications of this statement for your approach to the work you are doing?
1 page paper please
In: Psychology
Write a 500-750-word paper that identifies the major characteristics of services compared with goods, and describe how technology is changing the customer service and service offerings.
the two key components that we need to make sure we include are to fully discuss tangible and intangible and the 4 I’s of service.
Each "I" needs to be discussed and not just mentioned as it is a critical component of the differences in goods vs. services.
In: Economics
Hey can you please answer this question in detail and explanation in your own word i need to post in discussion board
Be sure to give thought to each assigned question before posting.
In: Computer Science
Please, edit for clarity and conciseness, for grammar, capitalization, punctuation, abbreviation, number style, word division, and vocabulary. Thank you
The Executive Summary (excerpt)
Purpose of the Proposal
This document will acquaint the reader with 3 principle topics by
· Showing what the San Diego State University (SDSU) Suntrakker project is;
· Showing that the team-oriented, interdepartmental disciplines at SDSU possess the tenacity and know-how to build and race a solar-powered vehicle in the World Solar Challenge Race in Austrailia next year;
· Define and articulate how this business team expects to promote and generate the necessary support; funds, and materials from the student body, alumni, community and local businesses to sieze and executive this opportunity.
Project Profile
The Suntrakker Solar Car project was conceived by a small group of San Diego State University engineering students motivated by the success of the General motors “Sunrayce,” committed itself to designing and building a superior solar-powered vehicle to compete in the world Solar Challenge.
From modest Beginnings, the Suntrakker project quickly revolved into a cross-disciplinary educational effort encompassing students from many colleges of San Diego State University. The project has provided students participants and volunteers with valuable real-life experiences and has brought them together in an effort that benefits not only the students and the university but also the environment.
Sponsors of this project are not only contributing to the successful achievement of the overall Suntrakker project but will also enhance their goodwill, advertising, and name promotion by association with the project. In addition, the Suntrakker offers a unique opportunity for the companies who can donate parts and accessories to showcase their name and test field their products in public in this highly publicized international contest.
?
In: Operations Management