Tuesday 24 December 2013

Advocacy and Mediation

Advocacy and Mediation
Paper instructions:
Explore the existing integration of mediation and advocacy within a human services agency on a national or international level.
Summarize the findings from your three sources. Discuss whether you believe mediation is appropriate for those specific populations.
Hasenfeld, Y., & Garrow, E. E. (2012). Nonprofit Human-Service Organizations, Social Rights, and Advocacy in a Neoliberal Welfare State. Social Service Review, 86(2), 295-322. Retrieved from http://web.ebscohost.com.ezproxy.apollolibrary.com/ehost/detail?
Helm, B., & Scott, S. (1986). Advocacy in Mediation. Mediation Quarterly, (13), 69-76. Retrieved from http://onlinelibrary.wiley.com/doi/10.1002/crq.38919861309/
Hoover, L.H. (1996). Advocacy in Mediation Means Rethinking Legal Skills. Virginina Lawyers Weekly. Retrieved from http://www.mccammongroup.com/articles/advocacy-in-mediation.asp.
Additional materials: not defined

Programming Org. Language


Programming Org. Language
1. Consider the following program written in C syntax:
void fun (int first, int second) {
first += second;
second += first;
}
void main () {
int list[2] = {6, 7};
fun (list[0], List [1]);
}
For each of following parameter-passing methods, what are the values of the list array after execution?
a. Passed by value
b. Passed by reference
c. Passed by value-result
2. Consider the following program written in C syntax:
#include <iostream>
typedef float(*pFooType)(float, float);
float A(float num1, float num2) {return num1 + num2;}
float B(float num1, float num2) {return num1 – num2;}
float C(float num1, float num2) {return num1 * num2;}
float D(float num1, float num2) {return num1 / num2;}
float Calc(float num1, float num2, float (*pCalcMethod)(float,
float))
{
return pCalcMethod(num1, num2);
}
int main()
{
pFooType pFoo[] = ;
float result;
for(int i = 0; i < 4; ++i)
{
result = Calc(10, 2, pFoo[i]);
std::cout << result << ‘‘, ‘‘;
}
return 0;
}
Fill out the blank in order to generate the output — 8, 12, 5, 20,
3. Show the stack with all activation record instances, including static and dynamic chains, when execution reaches position 1 in the following skeletal program. Assume Bigsub is at level 1.
procedure Bigsub is
MySum : Float;
procedure A is
X : Integer;
procedure B(Temp : Float) is
Y, Z : Float;
begin — of B
. . .
C(Z);
. . .
end; — of B
begin — of A
. . .
B(X);
. . .
end; — of A
procedure C(Plum1 : Float) is
begin — of C
. . . position 1
end; — of C
L : Float;
begin — of Bigsub
. . .
A;
. . .
end; — of Bigsub
Note that, B is nested in A
4. The following producer-consumer programs written in C.
Void producer(void){
int item;
while (TRUE) {
produce item(&item);
produce_item(&item);
if (count == N) sleep();
enter_item(item);
count = count + 1;
if (count == 1)
wakeup(consumer);
}
}
Suppose that the programs share items and work concurrently. This can result in both processes (producer and consumer) going to sleep. Explain what it is.
5. Consider the following program written in a pseudo-code.
int x = 10;
void a(){
x = x + x;
}
void b(){
c(a);
}
void c(d){
int x = 20;
d();
}
b();
print(x);
a) Suppose this program uses static scoping. What is the output of the program? Explain why?
b) Suppose this program uses dynamic scoping with deep binding. What is the output of the program? Explain why?
c) Suppose this program uses dynamic scoping with shallow binding. What is the output of the program? Explain why?
6. To reclaim garbage for heap management, there are two approaches: reference counters and mark-sweep. The mark-sweep garbage collection occurs more frequently than reference counters before memory is exhausted, resulting in more effective garbage collection. Explain the side-effect of mark-sweep
Note that, the question is the side-effect but not disadvantage.
7. The following program is written on the form of a selection guarded command
if i = 1 -> sum := sum + i
[ ] i > j -> sum := sum + j
[ ] j > i -> sum := sum + j
fi
print sum
a) Suppose the initial values: sum=0, i=1 and j=2. What is the output of this program?
b) Explain why

CLICK HERE FOR MORE ON THIS TOPIC

Database systems and Administration


Database systems and Administration
The database assignment has two sections (Part A and Part B) each focusing on advanced database concepts: in Part A, you are required to write a scholarly academic article based critical engagement with a chosen topic; part B focuses on analysis of key factors of database systems.
Part A
Research Article
Write a research article exploring database administrators role which naturally divides into three major activities: ongoing maintenance of production databases (operations DBA); planning, design, and development of new database applications, or major changes to existing applications (development DBA, or architect); and management of an organization’s data (data administrator). You are required to focus on.
• Storage management,
Produce an article covering the following aspects of research (approx. 1500 words):
• Approach to the problem and research questions;
• Objectives;
• Theoretical framework;
• Rigor of literature review;
• Methods or empirical analysis techniques;
• used data sources;
• Key findings and conclusions;
• The importance of the research from the theoretical or empirical point of view.
Part B
Scenario:
Reem Batteries Company was incorporated as Associated Battery Makers LLC., on 31st January, 2001. The company has signed an agreement for the development of a piece of software in 2013 for its operations. The Company manufactures the widest range of storage batteries in the world from 2.5 Ah to 20,400 Ah capacities, covering the broadest spectrum of applications. The Company has also recently forayed into the manufacture and sale of Home UPS/Inverters all over the world. The Company has seven battery manufacturing facilities strategically located across the world.
You are required to create a conceptual data model of the data requirements for the company ‘Reem Batteries’. The company has more than 50 products with various types. Total number of employees working for ‘Reem Batteries’ is more than 10000. The Managing Director wants you to come up with a conceptual model after an in-depth research on their operations and processes. In order to come up with an appropriate design/solution, you must study the requirements, issues and best practices in this problem context. You can make relevant assumptions required to formulate business rules, security, and administration and modelling.
Based on the above information execute Task 1, Task 2 and Task 3. You may have to make additional assumptions to execute Task 1, Task 2 and Task 3.

CLICK HERE FOR MORE ON THIS TOPIC

Task 1: (2 Pages)
Design an Entity Relationship Diagram (ERD) to model the above scenario. Identify the different entities (minimum six entities) and attributes of each entity. Suggest and justify the choice of relationship and cardinality of the relationship. State the assumptions (if any) made by you to develop the ERD based on your research. Provide detailed analysis and justification for the selection of entities and attributes based on your research.
Task 2: (1 Page)
Derive a set of relational tables from the ER diagram (Task 1), using appropriate choices for the table attributes. List several integrity rules, which you would recommend to ensure the quality of the data.
(Indicate the primary key, foreign key and constraints/business rules. Critically analyses the constraints and business rules based on your study of the company.
Task 3: (2 Pages)
Outline the kinds of anomalies that can arise in the scenario given above by using un-normalized tables. Show how the table created in task two could be re-organized into separate tables to avoid anomalies (Decompose the table structures to a set of 3NF tables).
Task 4: (1 page)
Propose and critically review user management, storage management/techniques formulated for the system discussed in Task 1-3.
Task 5: (4 Slides)
Prepare 4 presentation slides to discuss/demonstrate your knowledge with the different concepts used in preparing the assignment. Produce evidences (if any) during your presentation.

Guidelines
Follow the guidelines mentioned below for your assignment.
i. Students are expected to do a critical analysis of the tasks and present their analysis by drawing on relevant theoretical concepts. Marks will be awarded based on the ability of students to undertake the task in a logical manner by drawing on appropriate concepts and theoretical frameworks/literatures.
ii. Report should have a Title Page. Title Page should contain the following information.
a. Assignment Name
b. Student name
c. Student ID
iii. It should have Table of Contents
iv. Use page numbers
v. Assignment should be typed in your own words using Times New Roman font.
vi. Use Diagrams to explain in detail.
vii. Use suitable notation in your diagrams.
viii. Use appropriate SQL syntax wherever applicable.
ix. Copy paste from the Internet is strictly not acceptable.
x. Reference should be included in the last page.
xi. Attach the evidences (if any).

CLICK HERE FOR MORE ON THIS TOPIC

INCOTERMS & SUPPLY CHAIN MANAGEMENT


INCOTERMS & SUPPLY CHAIN MANAGEMENT

INCOTERMS & SUPPLY CHAIN MANAGEMENT FINAL PRESENTATION
3 FIRST QUESTIONS: 1, 2 AND 4 = PowerPoint document is required of 10 slides. Proper bibliography and sourcing, table of content, professional English writing. Tables and charts required.
This presentation should answer to the document uploaded called “ Evaluation Subject”. It constitutes a case study on supply chain management so we have to be very technical and specific.
The document called “INCO & SUPPLY CHAIN CLASS” constitutes all the various concepts and rules related to this subject and which MUST be used to answer to the questions in the presentation. Graphs, boards and charts must absolutely be used to present clear computations, arguments and support answers. There are several calculations
Only the 3 first questions ( 1, 2 and 4) of the subject have to be answered for this presentation order, which represents a total of 10 PowerPoint slides.
The Incoterms rules included in the INCO & SUPPLY CHAIN CLASS and the document uploaded called “ INCOTERMS CHART” should be used thoroughly to develop our argumentation. THEY HAVE TO BE RESPECTED THOROUGHLY.
The prices of LE BON MARCHE that you need to know in order to answer the questions are the following (we have managed to get these prices directly on site at LE BON MARCHE):
• Shirt: 85€ / 100% cotton made in Morocco
• Trench coat: 400€ / outside made with 100% polyester, inside by 48% wool and 52% polyester, made in China
• Cashmere Pullover: 195€ / 100% cashmere from Mongolia
• Cashmere Scarf: 85€ /100% cashmere from Mongolia
• Cashmere vest: 295€ / 100% cashmere from Mongolia
The prices of le Bon Marche competitors are listed in an excel document that will be uploaded in the message board. WE NEED TO USE ALL THESE REAL PRICES GATHERED ON SITE IN PARIS WHILE BUIDLING OUR PRESENTATION. THIS IS A REAL CASE SCENARIO, ALL THE PRICES DECIDED AND CALCULATED MUST BE EXPLAINED.
Clear, readable, understandable and professional slides are required. Proper sentences should be used, graphs, charts, boards. Clear calculation explanations. Technical terms and rules from the Professor Course are mandatory! They have to be used while answering the questions. The Professor Course includes all the concepts and principles that we have to know in order to answer the evaluation’s questions.
The document called “ RELATION BUYING PRICE/SELLING PRICE/QUANTITY SOLD” has also to be used in case of table building as a model. Thorough analysis and clear logical calculations details should be made. The presentation has to be really practical, while understanding how all the calculations and the concepts developed during the COURSE have to be used in the presentation.

CLICK HERE FOR MORE ON THIS TOPIC

Macros and security features


Macros and security features
For this week’s discussion you will explore macros and security features provided by MS Word.

For this week’s discussion you will explore macros and security features provided by MS Word. For the class discussion, please respond to all of the following prompts:
• How do macros improve efficiency by automating tasks? Provide at least three examples in addition to those given in the text.
Your text references “Macro Viruses” (page WD 678). How would you help prevent your computer from virus attacks? What kinds of damage could an attack cause?

CLICK HERE FOR MORE ON THIS TOPIC


Friday 20 December 2013

RELIGIOUS STUDIES

RELIGIOUS STUDIES
QUESTION 1
EULOGY
You are selected amongst the family members to deliver a powerful eulogy at your cousin’s funeral day, for the simple reason that you grew up with him and understand him perfectly. You are expected to write a powerful funeral oration about the gentleman who passed on to the lord. Use powerful but simple vocabularies to describe your cousin. Be very creative in your writing. He left behind a wife and 4 children, brothers and sisters to mourn him.
Write the best things about him such as:
1. He thinks about other people before himself
2. The kindest person ever……so kind to a fault
3. A peoples’ person…..very sociable
4. He is like a disciplined soldier……..he will never leave anyone behind.
Close the speech with a powerful prayer and thank the audience for coming to share the grief with the family and wish them safe journey back to their various homes.

CLICK HERE FOR MORE ON THIS TOPIC


The Nature of Industry

The Nature of Industry
Paper instructions:
Multiple choice and this question:
This question is taken (with minor revision) from “Chapter 7: The Nature of Industry”, page 263 of the book Managerial Economic and Business Strategy, 5th edition by Michael Baye. This question can be completed as an out-of-class exercise but should be completed individually.
In the 1990s, five firms supplied amateur color film in the United States: Kodak, Fuji, Konica, Agfa, and 3M. From a technical viewpoint, there was little difference in the quality of color film produced by these firms, yet Kodak’s market share was 67 percent. The own price elasticity of demand for Kodak film was -2.0 and the market elasticity of demand was -1.75. Suppose that in the 1990s, the average retail price of a roll of Kodak film was $6.95 and that Kodak’s marginal cost was $3.475 per roll. Based on this information, discuss industry concentration, demand and market conditions, and the pricing behavior of Kodak in the 1990s. Do you think the industry environment is significantly different today? Explain.

CLICK HERE FOR MORE ON THIS TOPIC


In what way should the UK CAP/BCAP Codes be reformed


In what way should the UK CAP/BCAP Codes be reformed
Paper instructions:
To answer this question you are advised to offer either a macro-level discussion of the
ethics of advertising regulation as a whole or to highlight a micro-level aspect of the
current CAP codes that you believe needs reform. Whichever option you chose, in
preparing your answer you should ensure you have understood the operation of the CAP
codes and the content of the CAP codes. You should also ensure you have a developed and consistent idea about how you think advertising works in markets, the media and
society. Contained within your answer, you should understand your own implicit ethical
and political assumptions. In addition, as one element of this module focuses on the
technical skills of creating persuasive texts, all assignments will be judged in terms of
their language, formatting and style (please follow the writing guide on Moodle).
Marks will be awarded in regard to the following criteria:
1. Does the assignment set out a clear argument that answers the question?
2. Does the assignment demonstrate an understanding of the regulatory system for
UK advertising?
3. Does the assignment justify its argument with evidence and support from
appropriate sources including relevant psychological and sociological theories?
4. Does the assignment offer a balanced account that reflects on its own
assumptions?
5. Is the assignment formatted as academic text with full referencing details?

CLICK HERE FOR MORE ON THIS TOPIC


writing-the-reaction-paper-a-teacher-to-student-guide


writing-the-reaction-paper-a-teacher-to-student-guide
Read: http://suite101.com/a/writing-the-reaction-paper-a-teacher-to-student-guide-a318369 and http://twp.duke.edu/uploads/assets/response%20paper.pdf
summarize what you think is required of this paper. What do you think the hardest part of the paper will be?

CLICK HERE FOR MORE ON THIS TOPIC


Assessing the Impact of Trauma


Assessing the Impact of Trauma
Understanding the extent of the impact of a trauma-causing event on a survivor is critical. The use of assessment measures can greatly inform the counseling process as it provides rich information related to the level of emotional response a survivor may be experiencing. As a counselor, you can use the knowledge obtained from these assessments to inform your selection of counseling intervention strategies and approaches.
Selecting the appropriate assessment and assessment method for a client is an important first step in the assessment process, and there are many resources from which to choose. Some assessments focus on children, adolescents, adults (at various stages of adulthood), couples, or families. Some assessments focus on the impact of trauma, while others address adaptation to trauma. There are also assessments for primary survivors as well as secondary survivors. It would benefit you as a counselor to have a ?toolbox? of resources and an understanding of a variety of assessments from which to draw when providing services to survivors.
To prepare for this assignment:
Review the articles, ?Assessment of Children and Adolescents in Crisis? and ?Creating More Trauma-Informed Services for Children Using Assessment-Focused Tools.? Focus on how assessment tools are used in response counseling.
Review the article, ?Which Instruments are Most Commonly Used to Assess Traumatic Event Exposure and Posttraumatic Effects?: A Survey of Traumatic Stress Professionals.? Reflect on the different types of assessments available for use and how they could be integrated into your personal counseling style (i.e. behavioral, humanistic, cognitive, etc).
Read the case study, ?Jessie,? provided in this week?s Learning Resources.
Select a method or particular instrument you would use to assess the client in the case study.
The assignment: (2?3 pages)
Briefly describe the method or particular instrument you would use to assess the client presented in the case study and explain why you chose that method or instrument.
Explain how you would integrate the use of this assessment into your personal counseling style.
Briefly conceptualize this client?s case based on the crisis assessment.

CLICK HERE FOR MORE ON THIS TOPIC


“less effective” leadership


“less effective” leadership
Choose 1 case example only of what you consider to be either “effective” or “less effective” leadership.
Choose 1 case example only of what you consider to be either “effective” or “less effective” leadership. Drawing on relevant leadership theory, discuss and critically analyse this leadership case. What does this case tell you about the nature and dynamics of leadership?

CLICK HERE FOR MORE ON THIS TOPIC


UK government policies




UK government policies
UK government policies in response to the emerging financial crisis in 2008 may undermine credibility and transparency and suggest a fundamental shift in economic policy regime.’ Explain and discuss

CLICK HERE FOR MORE ON THIS TOPIC


Managerial decisions under risk and uncertainty


Managerial decisions under risk and uncertainty
Exemplify the impact that managerial decisions under risk and uncertainty and elaborate on government regulation of business.
Exemplify the impact that managerial decisions under risk and uncertainty and elaborate on government regulation of business.

CLICK HERE FOR MORE ON THIS TOPIC


Managerial decisions under risk and uncertainty


Managerial decisions under risk and uncertainty
Exemplify the impact that managerial decisions under risk and uncertainty and elaborate on government regulation of business.
Exemplify the impact that managerial decisions under risk and uncertainty and elaborate on government regulation of business.

CLICK HERE FOR MORE ON THIS TOPIC


Delivering bad news to death-sick patients


Delivering bad news to death-sick patients
Write for and against essay, expressing your point of view – whether to tell patients the truth or keep the information in secret and support them. Make sure your conclusion sound thought-provoking and essay parts are connected with each other.

CLICK HERE FOR MORE ON THIS TOPIC


Marketlism


Marketlism
“Angela Merkel and German’s Global Trade, Investment, and Finance Policy Under Her Leadership: in the Past Eight Years, at Present, and in the Next Four Years”
How do you describe Merkelism? How has Merkelism affected German, European and Global Trade, Investment, and Finance Policies in the past eight years?

CLICK HERE FOR MORE ON THIS TOPIC


personalities


personalities
Pick a movie, television or book character and describe their personality from each of the following perspectives:
psychoanalytic
cognitive and behavioural
humanistic/existential
trait
First, briefly describe the movie/television series/book and introduce the character.
Next, use subheadings to make it very clear as to the perspective you are describing (i.e., psychoanalytic, cognitive behavioral, humanistic, trait). Please note, it may be difficult to integrate concepts from the humanistic existentialist perspective. From the trait perspective, you can describe both the normal (e.g., Big Five) and abnormal (personality disorders – if applicable) aspects of personality.
Highlight the significant terms associated with each of the above paradigms. For example, in discussing the character from a psychoanalytic perspective, you will stress important terms such as “the unconscious”, “the id”, “the ego”, “the Super Ego”, “defenses” and so forth.
Summarize your discussion at the end of the paper.
Make sure you cite all peer-reviewed sources you use to write your case study as well as referencing your textbook, and the movie/television series/book.
Similar to all other assignments, the paper will be in APA format.
The body of the paper will be approximately 20 pages long.

CLICK HERE FOR MORE ON THIS TOPIC


Angela Market


Angela Market

“Angela Merkel and German’s Global Trade, Investment, and Finance Policy Under Her Leadership: in the Past Eight Years, at Present, and in the Next Four Years”
In my paper,I have to answer these few questions
How do you describe Merkelism? How has Merkelism affected German, European and Global Trade,

CLICK HERE FOR MORE ON THIS TOPIC


The sun also rises


The sun also rises
Paper instructions:
Consider the following sources below on hemingways life World War One. The lost generation, bullfighting-as you support, contradict or qualify the essential question above ( if “the sun Also rises” serves as a fictional ode to hemingways feelings about the First World War then why did he and his circle of expatriates feel unwilling or unable to return home? ) be sure to clearly state your position and develop it in a paper of at least 750 words. You may wish to refer to additional secondary sources of your own but you must include the primary sources and at least three of the following sources. You must properly credit these sources in apa format remember to type in times new Romans, double spaced, 12 font . You will need a cover sheet and a bibliography (again, APA formatted)

CLICK HERE FOR MORE ON THIS TOPIC


Define folk psychology and outline its limitations.


Define folk psychology and outline its limitations.
Folk psychology could be better described as commonsense psychology, really a layman’s way of understanding and attempting to explain human behaviour as well as mental state. Serious limitations exist which include that it is based on a relatively small sample size (typically less than 150 people) and is limited in its time frame; usually a human life span. Most limiting, folk psychology is undertaken using little if no scientific rigour and would not be described as exhaustive and comprehensive.
How did Kant synthesise Empiricism and Rationalism?
Rationalism, where logical thought is the ultimate source of knowledge, was followed by the theory of Empiricism, where in contrast knowledge is believed to come primarily from experience and observation.
Kant combined the strengths of these opposing philosophical thoughts and proposed that we needed both. To Kant, although experiencing an event was crucial, further analysis by a human mind is required to process this experience and to make it useful and meaningful, resulting in knowledge generation. At the centre of his universe was the human mind – which is where we make sense of the laws of nature, giving us useful predictive ability. As humans – the mind groups things together. In addition, Kant also raised an important question of could we be both the object and subject in the study of humans.
How does the stage of psychological theory development impact on the generation of research questions?
The stage of theory development will impact the design chosen (and hence also the questions used) and this depends on the state of knowledge in the area as well as the maturity of the research (very few theories stay static). Theories at an advanced stage of theory development will typically have a more refined design, resulting in asking specific questions to answer specific hypothesis. In contrast, research in areas that are new or immature, or that are at an early stage of theory development will have questions that start out in a more general and are wide ranging in nature
What are some of the ethical problems that can limit the conduct of psychological research?
Ethics are norms for conduct that distinguish between acceptable and unacceptable research behaviour. Although the implementation of a code of Ethics could potentially limit the conduct and reach of some psychological research, it is in place to prevent a situation where, following an experiment, participants will have an outcome that is detrimental to their well, and clearly the risk to the participants far outweighed any gain.
The result is a code of ethics, which varies slightly between countries and organisations. Generally these follow the same principles; where participation must be voluntary, there is the need to obtain informed consent and to maintain participant confidentiality, with an over arching principle of ‘Do no harm’.

Measuring psychological constructs or concepts involves operationalising them.
What does this involve?
Operationalisation involves defining the measurement of something that is not directly measureable. It results in defining an unclear concept to make the theoretical concept distinguishable or measurable.
It takes a variable from theoretical, to real and specific, and defines the variable in terms of the methods the researcher uses to measure or manage the variable. More simply – its deciding what data will demonstrate the existence of a particular concept. Operational definitions are rules for moving between data and concepts
Importantly a researcher must be able to justify their choice of indicators as they are the link between the abstract world and reality.

CLICK HERE FOR MORE ON THIS TOPIC


Martin luther and John calvin


Martin luther and John calvin
how did crusades, corruption of catholic church,bubonic plague, Martin luther and John calvin lead to the protestant reformation?
how did crusades, corruption of catholic church,bubonic plague, Martin luther and John calvin lead to the protestant reformation?

CLICK HERE FOR MORE ON THIS TOPIC


Programming Org. Language


Programming Org. Language
1. Consider the following program written in C syntax:
void fun (int first, int second) {
first += second;
second += first;
}
void main () {
int list[2] = {6, 7};
fun (list[0], List [1]);
}
For each of following parameter-passing methods, what are the values of the list array after execution?
a. Passed by value
b. Passed by reference
c. Passed by value-result
2. Consider the following program written in C syntax:
#include <iostream>
typedef float(*pFooType)(float, float);
float A(float num1, float num2) {return num1 + num2;}
float B(float num1, float num2) {return num1 – num2;}
float C(float num1, float num2) {return num1 * num2;}
float D(float num1, float num2) {return num1 / num2;}
float Calc(float num1, float num2, float (*pCalcMethod)(float,
float))
{
return pCalcMethod(num1, num2);
}
int main()
{
pFooType pFoo[] = ;
float result;
for(int i = 0; i < 4; ++i)
{
result = Calc(10, 2, pFoo[i]);
std::cout << result << ‘‘, ‘‘;
}
return 0;
}
Fill out the blank in order to generate the output — 8, 12, 5, 20,
3. Show the stack with all activation record instances, including static and dynamic chains, when execution reaches position 1 in the following skeletal program. Assume Bigsub is at level 1.
procedure Bigsub is
MySum : Float;
procedure A is
X : Integer;
procedure B(Temp : Float) is
Y, Z : Float;
begin — of B
. . .
C(Z);
. . .
end; — of B
begin — of A
. . .
B(X);
. . .
end; — of A
procedure C(Plum1 : Float) is
begin — of C
. . . position 1
end; — of C
L : Float;
begin — of Bigsub
. . .
A;
. . .
end; — of Bigsub
Note that, B is nested in A
4. The following producer-consumer programs written in C.
Void producer(void){
int item;
while (TRUE) {
produce item(&item);
produce_item(&item);
if (count == N) sleep();
enter_item(item);
count = count + 1;
if (count == 1)
wakeup(consumer);
}
}
Suppose that the programs share items and work concurrently. This can result in both processes (producer and consumer) going to sleep. Explain what it is.
5. Consider the following program written in a pseudo-code.
int x = 10;
void a(){
x = x + x;
}
void b(){
c(a);
}
void c(d){
int x = 20;
d();
}
b();
print(x);
a) Suppose this program uses static scoping. What is the output of the program? Explain why?
b) Suppose this program uses dynamic scoping with deep binding. What is the output of the program? Explain why?
c) Suppose this program uses dynamic scoping with shallow binding. What is the output of the program? Explain why?
6. To reclaim garbage for heap management, there are two approaches: reference counters and mark-sweep. The mark-sweep garbage collection occurs more frequently than reference counters before memory is exhausted, resulting in more effective garbage collection. Explain the side-effect of mark-sweep
Note that, the question is the side-effect but not disadvantage.
7. The following program is written on the form of a selection guarded command
if i = 1 -> sum := sum + i
[ ] i > j -> sum := sum + j
[ ] j > i -> sum := sum + j
fi
print sum
a) Suppose the initial values: sum=0, i=1 and j=2. What is the output of this program?
b) Explain why

CLICK HERE FOR MORE ON THIS TOPIC


Database systems and Administration


Database systems and Administration
The database assignment has two sections (Part A and Part B) each focusing on advanced database concepts: in Part A, you are required to write a scholarly academic article based critical engagement with a chosen topic; part B focuses on analysis of key factors of database systems.
Part A
Research Article
Write a research article exploring database administrators role which naturally divides into three major activities: ongoing maintenance of production databases (operations DBA); planning, design, and development of new database applications, or major changes to existing applications (development DBA, or architect); and management of an organization’s data (data administrator). You are required to focus on.
• Storage management,
Produce an article covering the following aspects of research (approx. 1500 words):
• Approach to the problem and research questions;
• Objectives;
• Theoretical framework;
• Rigor of literature review;
• Methods or empirical analysis techniques;
• used data sources;
• Key findings and conclusions;
• The importance of the research from the theoretical or empirical point of view.
Part B
Scenario:
Reem Batteries Company was incorporated as Associated Battery Makers LLC., on 31st January, 2001. The company has signed an agreement for the development of a piece of software in 2013 for its operations. The Company manufactures the widest range of storage batteries in the world from 2.5 Ah to 20,400 Ah capacities, covering the broadest spectrum of applications. The Company has also recently forayed into the manufacture and sale of Home UPS/Inverters all over the world. The Company has seven battery manufacturing facilities strategically located across the world.
You are required to create a conceptual data model of the data requirements for the company ‘Reem Batteries’. The company has more than 50 products with various types. Total number of employees working for ‘Reem Batteries’ is more than 10000. The Managing Director wants you to come up with a conceptual model after an in-depth research on their operations and processes. In order to come up with an appropriate design/solution, you must study the requirements, issues and best practices in this problem context. You can make relevant assumptions required to formulate business rules, security, and administration and modelling.
Based on the above information execute Task 1, Task 2 and Task 3. You may have to make additional assumptions to execute Task 1, Task 2 and Task 3.
Task 1: (2 Pages)
Design an Entity Relationship Diagram (ERD) to model the above scenario. Identify the different entities (minimum six entities) and attributes of each entity. Suggest and justify the choice of relationship and cardinality of the relationship. State the assumptions (if any) made by you to develop the ERD based on your research. Provide detailed analysis and justification for the selection of entities and attributes based on your research.
Task 2: (1 Page)
Derive a set of relational tables from the ER diagram (Task 1), using appropriate choices for the table attributes. List several integrity rules, which you would recommend to ensure the quality of the data.
(Indicate the primary key, foreign key and constraints/business rules. Critically analyses the constraints and business rules based on your study of the company.
Task 3: (2 Pages)
Outline the kinds of anomalies that can arise in the scenario given above by using un-normalized tables. Show how the table created in task two could be re-organized into separate tables to avoid anomalies (Decompose the table structures to a set of 3NF tables).
Task 4: (1 page)
Propose and critically review user management, storage management/techniques formulated for the system discussed in Task 1-3.
Task 5: (4 Slides)
Prepare 4 presentation slides to discuss/demonstrate your knowledge with the different concepts used in preparing the assignment. Produce evidences (if any) during your presentation.

Guidelines
Follow the guidelines mentioned below for your assignment.
i. Students are expected to do a critical analysis of the tasks and present their analysis by drawing on relevant theoretical concepts. Marks will be awarded based on the ability of students to undertake the task in a logical manner by drawing on appropriate concepts and theoretical frameworks/literatures.
ii. Report should have a Title Page. Title Page should contain the following information.
a. Assignment Name
b. Student name
c. Student ID
iii. It should have Table of Contents
iv. Use page numbers
v. Assignment should be typed in your own words using Times New Roman font.
vi. Use Diagrams to explain in detail.
vii. Use suitable notation in your diagrams.
viii. Use appropriate SQL syntax wherever applicable.
ix. Copy paste from the Internet is strictly not acceptable.
x. Reference should be included in the last page.
xi. Attach the evidences (if any).

CLICK HERE FOR MORE ON THIS TOPIC