Although you are just beginning your doctoral journey, you should begin giving thought to your research topic. As you are continuing to learn, scholarly research and writing are critical skills required for completing the DBA program, including your Doctoral Study. One aspect of scholarly research is developing a systematic way of collecting your articles and using them for current and future work. Creating an annotated bibliography is the method for developing and storing invaluable research information. Your initial steps to create an annotated bibliography provide you with opportunities to collect scholarly, peer-reviewed research material from articles, journals, reports, and seminal books that can help you to lay the foundation for the completion of your Doctoral Study. Mastering the systematic building of your annotated bibliography early will save you time as you progress toward the completion of your Doctoral Study. To prepare for this Assignment, select three peer-reviewed scholarly articles, with each article addressing a topic of your interest for research. For more information and an example of an annotated bibliography, refer to the Walden Writing Center’s annotated bibliography resource in this week’s Learning Resources. By Day 7 Submit an annotated bibliography for the three peer-reviewed resources you selected. In your annotated bibliography, include the following: A full APA-style bibliographic reference for each resource that includes the author, date, title, place of publication, and publisher A summary of the document (2–3 paragraphs for each entry), including the main points, its purpose, the theoretical perspective on which it is based, and the scope For each article, evaluate the following: Reliability (research methods used, theories used, and data on which it is based) Appropriateness for the intended audience Background and authority of the author Limitations of the research (which can depend on the scope, reliability, age of the document, and bias) Significance of the research
Can be on any thing about healthcare
In: Nursing
Language: Python
Implement the Book class as demonstrated below. You should not change the Book methods and implementation as provided. The docstrings in the template contain descriptions of each method.
>>> b=Book ( ' Code' , 'Charles Ptzold' 'Computing' , 2001)
>>> b
Book ( ' Code' , 'Charles Ptzold' 'Computing' , 2001)
>>> str (b)
' Code : Charles Ptzold: Computing: 2001 '
>>> b. getTitle ( )
' Code '
>>> b. getAuthor()
' Charles Ptzold'
>>> b. getPublicationYear( )
2001
>>> b*10
[Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) , Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001) ,Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001)]
>>> b2=Book( ' Code' , 'Charles Ptzold' 'Computing' , 2001)
True
>>> b3=Book( ' Code' , 'Charles Ptzold' 'Computing' , 2003)
False
__________________________________________________________________________
import random
class Book(object):
def __init__(self,title='',author='', genre='', yearOfPublication=0):
'constructor.'
pass
def getTitle(self):
'get book title'
pass
def getAuthor(self):
'get book author'
pass
def getGenre(self):
'get book genre'
pass
def getPublicationYear(self):
'get publication year'
pass
def __mul__(self,count):
'makes copies of the book and returns a list of all the copies'
pass
def __eq__(self,other):
'Compares two books. returns True if all properites of a book are the same, False otherwise'
pass
def __str__(self):
'string representation of Book'
pass
def __repr__(self):
'python representation of Book'
pass
In: Computer Science
Create your own data. Ensure the data will test all criteria and prove all sorts worked as required. Be sure that all tables and queries have descriptive names. “Query 1” and “Step 1” are examples of poor names.
Step 1
Build a Database named DBMS Course Project. The database should include the following tables:
Step 2
Extract the First and Last Name, Address, City, State, Zip Code and Phone Number of each Senior on the database. Sort by Last Name, then First Name (1 sort).
Step 3
Extract the First and Last Name, and GPA of each student who qualifies for the Dean’s List. Sort by GPA, then Last Name, then First Name (1 sort). A GPA of 3.25 is required to make the Dean’s List.
PART 2
Build a query of all students on athletic scholarship. Additionally, produce a report with descriptive report and column headings. Be sure there is enough data to prove the selection and sort worked as required. Submit the database in unzipped format as well as submitting screenshots of the query and the report.
Step 1
Extract the First and Last Name, Student ID, Course Major and GPA of all students on athletic scholarship. Sort by Course Major, Last Name, then First Name in a single sort.
Step 2
Produce a report with the data from Step 1 and use good headings.
In: Computer Science
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form Display Example</title>
<script type="text/javascript">
function display() {
dispWin =
window.open('','NewWin','toolbar=no,status=no,width=300,height=200')
message = "<ul><li>NAME:" +
document.form1.name.value;
message += "<li>ADDRESS:" +
document.form1.address.value;
message += "<li>PHONE:" +
document.form1.phone.value;
message += "</ul>";
dispWin.document.write(message);
}
</script>
</head>
<body>
<h1>Form Display Example</h1>
<p>Enter the following information. When you
press the Display button, the data you entered will be displayed in
a pop-up.</p>
<form name="form1" method="get" action="">
<p>NAME: <input type="text" name="name"
size="50" /></p>
<p>ADDRESS: <input type="text" name="address"
size="50" /></p>
<p>PHONE: <input type="text" name="phone"
size="50" /></p>
<p><input type="button" value="Display"
onclick="display();" /></p>
</form>
</body>
</html>
Above is the code from the text and below is the edits that I am having trouble adding to the assisnment.
Using Notepad++, copy the code presented in Listing 26.2, "A Form That Displays Data in a Pop-Up Window," in the subsection "Displaying Data From a Form" in the section "Accessing Form Elements With JavaScript" in Ch. 26, "Working with Web-Based Forms of Sams Teach Yourself HTML, CSS and JavaScript All In One. Save the file using the name Week4ValidationExample.html. Test your code and debug as necessary.
Change the name of the display() function to myDisplay() where my is your first name. For example, if your first name were Sam, your display function would be SamDisplay(). Test your code and debug as necessary.
Change the width and height of the pop-up window in which you have set the feedback to appear as 250 and 400, respectively. Test your code and debug as necessary.
In: Computer Science
Please Use JavaScript and P5
1) Greeter
Create an page with an input, and a button. When the button is clicked, output the phrase "Hello {Name}" to the developer console, with {Name} being the value the user put into the input field.
Use a function that takes the name as an argument, and returns the full phrase as its output.
In: Computer Science
JAVA
StudentId: Consist of the first two characters of the student's first name, student's birth year, and the last two characters of the last name. For instance, if the student full name is John Doe and birthyear is 1995, then the id will be Jo1995oe. Birthday is using GregorianCalendar.
String firstname
String lastname
GregorianCalendar birthday
In: Computer Science
Metlock Company owns a trade name that was purchased in an
acquisition of McClellan Company. The trade name has a book value
of $3,500,000, but according to GAAP, it is assessed for impairment
on an annual basis. To perform this impairment test, Metlock must
estimate the fair value of the trade name. It has developed the
following cash flow estimates related to the trade name based on
internal information. Each cash flow estimate reflects Metlock’s
estimate of annual cash flows over the next 9 years. The trade name
is assumed to have no salvage value after the 9 years. (Assume the
cash flows occur at the end of each year.)
|
Cash Flow Estimate |
Probability Assessment |
||
| $380,700 | 20% | ||
| 646,400 | 50% | ||
| 754,600 | 30% | ||
(a) What is the estimated fair value of the
trade name? Metlock determines that the appropriate discount rate
for this estimation is 9%. (Round factor values to 5
decimal places and final answer to 0 decimal
places)
| Estimated fair value |
$ |
In: Accounting
In: Nursing
PHP/SQL Lab 1 Consider the banking example we used in the SQL in-class exercises:
branch (branch-name, branch-city, assets)
customer (customer-name, customer-street, customer-city)
account (account-number, branch-name, balance)
loan (loan-number, branch-name, amount)
depositor (customer-name, account-number)
borrower (customer-name, loan-number)
Write PHP code for the following problems:
1. Create a php file to display the names and cities of customers who have an account at Downtown branch from the web.
2. Create the corresponding html and php files so that a user can insert the following customer into the database from a web browser. After the insertion, display all the customers from the web. “Jane Doe”, “401 Rosemont Ave”, “Frederick” Submission:
Submit a softcopy of the html and php files and a document containing screenshots of web outputs with URL included for both problems
In: Computer Science
Hi, I am getting illegal start of expression on this. Any ideas where the problem may be: public static void main(String args []){ private String name; private double area; private int population; public Country(String name, double area, int population){ this.name = name; this.area = area; this.population = population; } public double getPopulationDensity() { return population / area; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getArea() { return area; } public void setArea(double area) { this.area = area; } public int getPopulation() { return population; } public void setPopulation(int population) { this.population = population; } } class CountryTest { public static void main(String[] args) { Country country = new Country("United States of America", 3797000, 327000000); System.out.println("Population density of " + country.getName() + " is " + country.getPopulationDensity() + " per square mile"); } }
In: Computer Science