1.What are the THREE (3) types of CSS?
a) Internal, External and Online Style Sheets
b) Embedded, Outsider and Inline Style Sheets
c) Embedded, Linking and Inline Style Sheets
2. The width, src and border are examples of an ______. *
a) entity
b) element
c) attribute
d) operation
d) Internal, External and Inline Style Sheets
3. Which of the following codes best represents inserting image from folder named images?
a) <p>Image:</p> <img src="/chrome/images.gif" alt="Google Chrome" width="33" height="32" />
b) <p>Image:</p><img src="file://images/chrome.gif" alt="Google Chrome" width="33" height="32" />
c) <p>Image:</p><img src="/images/chrome.gif" alt="Google Chrome" width="33" height="32" />
d) <p>Image:</p><img src="folder: images image file name: chrome.gif" alt="Google Chrome" width="33" height="32" />
4.Which of the following is the CORRECT HTML tag to start JavaScript?
a) <script>
b) <js>
c) <javascript>
d) <scripting>
5. How can you add a comment in JavaScript? *
a) <!--This is a comment-->
b) //This is a comment
c) "This is a comment"
d) <--! This is a comment -->
6. Select the correct HTML statement in referring to an external style sheet.
a) <link rel="stylesheet" type="text/css" href="mystyle.css">
b) <stylesheet>mystyle.css</stylesheet>
c) <style src="mystyle.css">
d) <link rel=”style" type="text/css" href="mystyle.css">
In: Computer Science
Discuss three ways in which a company can protect it's
Intellectual Property internationally
In: Operations Management
Comparison of Tetris to what you already know about Project Management (be sure to compare each item to your experience with playing Tetris)
What is your initial strategy in terms of balancing the triple constraint, i.e. scope (goals and what is to be accomplished), time (or schedule to get things done), and resources (money, people, and being provided the resources WHEN you need them)?
We have all worked with folks who are afraid of making the wrong decision, so they either drag out their decision or make NO decision. How does that compare here?
As time goes by (and you get closer to your ‘deadline’) and parts of your ‘project’ are not getting completed as you would have liked, what do you now see happening?
What may affect your decision-making (generally) in project management?
How might you adjust the project if you don’t have resources when you need them?
Tetris does have one major difference from project management: by definition, a project is unique; it has an achievable goal, and it has an end. How might we ‘redefine’ the game Tetris (or more specifically, the ‘game over’) so that it IS more inline with the attributes of a project? m. How might you incorporate lessons-learned from project management into future projects?
In: Operations Management
Make pesodocode of this code.
void loadData()
{
char line[MAX_LENGTH];
const char * delimiter = ",\n";
FILE * fp;
fp = fopen("patients.txt", "r");
char c;
if (fp == NULL)
{
printf("file not found");
return;
}
while (fp != NULL)
{
if (fgets(line, MAX_LENGTH - 1, fp) == NULL)
break;
if (line[1] == '\0')
break;
patients[patientCount].id = atoi(strtok(line, delimiter));
strcpy(patients[patientCount].name, strtok(NULL, delimiter));
patients[patientCount].age = atoi(strtok(NULL, delimiter));
patients[patientCount].annualClaim = strtok(NULL, delimiter);
patients[patientCount].plan = atoi(strtok(NULL, delimiter));
strcpy(patients[patientCount].contactNum, strtok(NULL,
delimiter));
strcpy(patients[patientCount].address, strtok(NULL,
delimiter));
strcpy(line, "\0");
patientCount++;
}
fclose(fp);
fp = fopen("claims.txt", "r");
int claimCount = 0;
while (fp != NULL)
{
if (fgets(line, MAX_LENGTH - 1, fp) == NULL)
break;
if (line == "\n")
break;
claims[claimCount].id = atoi(strtok(line, delimiter));
claims[claimCount].claimedYear = atoi(strtok(NULL,
delimiter));
claims[claimCount].amountClaimed = atoi(strtok(NULL,
delimiter));
claims[claimCount].remaininigAmount = atoi(strtok(NULL,
delimiter));
strcpy(line, "\0");
claimCount++;
}
fclose(fp);
}
int menu()
int ch;
do {
system("cls");
printf("Select one of the below option to continue\n");
printf("1-Insurence Plan Subscription\n");
printf("2-Claim Processing\n");
printf("3-Accounts Information\n");
printf("4-Searching Functionalities\n");
printf("5-Exit\n");
scanf("%d", & ch);
} while (ch > 5 || ch < 1);
return ch;
}
int main()
{
int ch;
loadData();
do {
ch = menu();
if (ch == 1)
subscribe();
else if (ch == 2)
claimProcess();
else if (ch == 3)
accountInfo();
else if (ch == 4)
searchingFunctionalities();
else
break;
} while (ch != 5);
system("pause");
return 0;
}
In: Computer Science
Recommend ethical approaches to HR management?
In: Operations Management
FASB CODIFICATION RESEARCH- provide references
CE11.3
Your great-uncle, who is a CPA, is impressed that you are majoring in accounting. However, he believes that depreciation is something that companies do based on past practice, not on the basis of any authoritative guidance. Provide the authoritative literature to support the practice of fixed-asset depreciation.
CE11.4
What is the nature of SEC guidance concerning property, plant, and equipment disclosures?
In: Accounting
Discuss the benefits of long-term economic growth. What are the factors that contribute to economic growth? Provide your perspective as to what our society can do to enhance economic growth.
Please indicate where is the best source to find answers to this question.
Best regards,
In: Economics
For each of the following experiments or investigations indicate whether a fixed-effects or random-effects model is appropriate.
In: Math
NoSQL databases can store relationship data—they just store it differently than relational databases do. How would you describe the differences between a relational database and a NoSQL database? What do you see as the business advantages that a NoSQL database has over a relational database?
In: Computer Science
Westchester Teaching Hospital System is not-profit
organization that owns and operates six hospital campuses and a
variety of off-campus ambulatory services. The organization has
revenues of over $1 billion. They are affiliated with 3 medical
schools with over 400 residents. You are the new manager for the
ambulatory care department. You have been bought onboard to develop
and implement strategies to expand the department. Here are some
facts you need to know:
1. Inpatient services represent 65 percent of the operating
revenues.
2. Outpatient services represent 35 percent.
3. Resources for the department are scarce.
4. His department has been underfunded for a while now.
5. Meaningful financial and statistical data does not exist.
6. He has a staff of 50 people (administrative and clinical)
7. There has been some open hostility between the 2 groups.
8. The supervisors do not take direction well.
9. Staff don't follow the rules (come in late, call out a lot, miss
due dates, rude to patients and staff).
10. The ambulatory care area is outdated and not very
appealing.
QUESTION: How will you achieve the goals you've been given while acclimating to the new unit? You will need to address the issues listed above in your evaluation.
In: Operations Management
The study of conformity involves why people are likely to change their behaviors or beliefs as a result of real or imagined group pressure. Your textbook describes three types of conformity. Conformity has been a huge contributor to such groups that may be considered as cults. Define how conformity is utilized in cults, sororities, fraternities, sports, or even in the workplace. If your employer has a policy that employees must wear business attire when making a presentation to clients, which type of conformity is implied: compliance, obedience, or acceptance? What about the situation led you to your conclusion?
In: Psychology
Indicate whether you think the following situations describe an employee relationship or an independent contractor? What factors do you base your decision on?
Sara work as a clerk in Ann’s Dress Shop. Ann withholds federal taxes from her pay, and controls the methods and details of the performance of her work.
1. Sara is an:
Why?
Ann hires Krupp Carpet Company to clean the carpets of her shop. Ann gives Krupp instructions as to what needs to be cleaned and when.
2. Krupp is an:
Why?
Janet and Rob work at ABC Interiors. Janet is a designer who works with clients of ABC on interior design projects. ABC closely supervises all of its designers, and dictates their work schedules. Rob works part-time in the evenings maintaining the computer equipment.
3. Janet is an:
Why?
4. Rob is an:
Why?
In: Operations Management
Describe an aspect of your everyday life that has been touched by Big Data and/or Business Intelligence Systems. Be sure to include your thoughts on the advantages or challenges you feel Big Data poses for modern data driven businesses.
In: Computer Science
In: Finance
The two religions with the largest number of followers are Christianity (31.2% of the global population) and Islam (24.1%) Many (most?) of the leaders within each faith are male. Focusing on the world’s two major religions, how is religion used to oppress women? How does this religious control impact women’s access to other human rights?
In: Psychology