Android Studio Code:
Provide a working android studio code i.e java and xml code for the activity below:
Develop an application that is capable to turn pages back and forth.
Detailed Instructions:
For the main activity, create a layout that represents a fictitious title and author. The activity should include a clickable button on the bottom right that allows you to go forward to the next activity. The next activity will simply be an image above simple text that can say anything.
Once in the next activity, below the text there should be two clickable buttons. On the left, a button that will take us back to our original title page. The right button does not need to go anywhere.
In: Computer Science
For this assignment, you will select an article from a print or online FAKE news source that addresses economic issues in an editorial fashion. Using the tools of analysis covered so far in this course, you should briefly (1-2 paragraphs) summarize the article, and then analyze and criticize the article. You must critique the article and not merely summarize it. Your paper should be well-written and should reflect your current knowledge of economic theory (as limited as it is). (Hint: A good starting point is to identify the assumptions of the author.)
Since this is a fake news assignment why do you think the article was believable? Are there clues in the article that the article might be FAKE news?
Please identify the article that was used
In: Economics
Ask a member of the Human Resources team (or the person who does the hiring) at your work what they see as the key characteristics of a successful manager. In the discussion thread, provide a summary, answering the following questions: What company do you work for and what is the role of the individual you interviewed? What are the key characteristics of a successful manager that your colleague described? What are your thoughts on your colleaguebs response? OR Find an article discussing the key characteristics of a successful manager. Post a link to the article in the discussion thread and provide a summary of the following: What is the role and background of the author of the article? What are the key characteristics of a successful manager detailed in the article? What are your thoughts on these characteristics?
In: Operations Management
CREATE TABLE youtubevideos(
url VARCHAR(150),
title VARCHAR(50),
description VARCHAR(200),
comid INTEGER NOT NULL,
postuserVARCHAR(50) NOT NULL,
postdate DATE,
PRIMARY KEY (email),
FOREIGN KEY (comid) REFERENCES Comedians(comid),
FOREIGN KEY (postuser) REFERENCES Users(email));
CREATE TABLE Users(
email VARCHAR(50),
password VARCHAR(50),
firstname VARCHAR(50),
lastname VARCHAR(50),
gender CHAR(1),
age INTEGER,
PRIMARY KEY (email));
CREATE TABLE Comedians(
comid INTEGER,
firstname VARCHAR(50),
lastname VARCHAR(50),
birthday DATE,
VARCHAR(50),
PRIMARY KEY(comid));
CREATE TABLE Reviews(
reviewid INTEGER NOT NULL AUTO_INCREMENT,
remark VARCHAR(100),
rating CHAR(1), //P.F.G.E
author VARCHAR(50) NOT NULL,
youtubeid VARCHAR(150) NOT NULL,
PRIMARY KEY (reviewid),
FOREIGN KEY (author) REFERENCES Users(email),
FOREIGN KEY (youtubeid) REFERENCES youtubevides(url),
CONSTRAINT rating,
CHECK rating ['P','F','G','E']
)
CREATE TABLE youtubetags(
url VARCHAR(150),
tag VARCHAR(50),
PRIMARY KEY (url, tag))
CREATE TABLE IsFavorite(
email VARCHAR(50),
comid INTEGER,
PRIMARY KEY (email, comid),
FORIGN KEY (email REFERENCES Users(email),
FOREIGN KEY (comid) REFERENCES Comedians(comid))
In: Computer Science
use a page(roughly 300 words )to review Matthew Hayday, “Fireworks, Folk-Dancing and Fostering a National Identity: the Politics of Canada Day” Canadian Historical
• First Step:
Read Actively. Read the work through once. During this reading, pay attention to: (a) the author’s purpose; (b) the main ideas of the passage/article; (c) the author’s argument; (d) the support for the argument; (e) the author’s insights. This information will have to be concise and clear in your précis.
• Second Step:
Summarize . Read the work through again. Make a one-sentence summary of each paragraph or major division in the text. Now you have created a basic outline of the work.
• Third Step:
Writing. Depending on the required length of the assignment, write a short introductory paragraph or sentence. This should include, at a minimum, the author, the title and the thesis or main idea. Use the sentences you wrote in the second step as details to develop your short précis paragraph or as topic sentences for the body paragraphs in a longer précis assignment. Keep the body paragraphs as concise as possible, but make sure to include the necessary information that you noted when reading the work through the first time (purpose, research, methods, insights, support). To conclude the précis, summarize the thesis in a new paragraph and list any conclusions made by the author.
• Fourth Step:
Editing and Proofreading. Check your précis to make sure it meets all requirements. Check the initial work to make sure you have made a complete summary and have not added any personal opinion. Check for correct spelling and grammar, clarity, and coherence. Finally, read your précis aloud.
In: Psychology
In: Anatomy and Physiology
: Pam Tarver just opened an information technology consulting company and has thought for a long time about what to name it. She finally settled on the fictitious name Infoxx. Search the USPTO database to determine if the name Infoxx is available. Is it? If it is available, describe how Pam would go about obtaining a trademark on Infoxx or any other name.
In: Operations Management
Email username generator Write an application that asks the user to enter first name and last name. Generate the username from the first five letters of the last name, followed by the first two letters of the first name. Use the .toLowerCase() method to insure all strings are lower case. String aString = “Abcd” aString.toLowerCase(); aString = abcd Use aString.substring(start position, end position + 1) aString.substring(0, 3) yields the first 3 letters of a string If the last name is no more than five letters, use the entire name. If it is more than five letters, use the first 5 letters Print the email username you generated with @myCollege.edu appended
In: Computer Science
1. The following XML document describes some employees of a company.
<?xml version="1.0" encoding="UTF-8"?>
<company>
<person age="25" id="p29432" manager="p48293">
<ssn>123456789</ssn>
<name> John Davis</name>
<office>B432</office>
<phone>1234</phone>
</person>
<person age="27" id="p29333" manager="p48222">
<ssn>987654321</ssn>
<name>Jim Handler</name>
<office>B123</office>
</person>
<person age=55 id="p29432" manager="p48221">
<ssn>123456789</ssn>
<name> Christo Dichev</name>
<office>A4210</office>
<phone>2477</phone>
</person>
<person age="57" id="p29333" manager="p4832">
<ssn>987654321</ssn>
<name>Elva Jones</name>
<office>A4211</office>
</person>
</company>
1. Check if the XML document is well-formed. If it is not, change it so that it becomes
wellformed, making as little changes as possible.
2. Write a DTD for this XML document such that the corrected version of the example is
a valid XML document.
In: Computer Science
Write html code:
1. Define constructor functions Faculty and Course. An instance of Course has instance of Faculty as the value if its instructor instance variable.
Download testProb1.js and testProb1.html
Write two files (faculty.js and course.js)
Constructor function Faculty. Arguments name and dept; Instance variables, name (a string, with default ("name unknown")
Write get_ and set_ methods for both instance variables; toString() return strings of form "<name> of <dept>"
Constructor function Course Arguments name, times, instructorName, and instructorDept, all with string values
Instance variables name (a string, with default “unknown course name”)
times (a string, with default “unknown times”)
instructor (instance of Faculty, with no default), constructed using new and the Faculty constructor
Define get_ and set_ methods for all instance variables
setinstructor() takes an instance of Faculty as its parameter
getinstructor() returns an instance of Faculty
toString() returns the string value of the name instance variable
In: Computer Science