SlideShare a Scribd company logo
1 of 10
1
To: ADD name, titleFrom: ADD your nameDate: ADD
date Subject: Status Report Week 8
The status report aims to provide an overview of various
activities performed weekly to accomplish the information
project vision. It provides an overall plan of the project to
ensure effective and efficient implementation, monitoring, and
evaluation (Ahrari & Haghani, 2019). The primary purpose is to
help the project manager monitoring the impletion of project
activities, evaluated the accomplished task, and unaccomplished
tasks as well as plan for the nest week activities. Project Task
for this week:
· Selecting project team members
· Discussion in detail the mission and vision of the information
system project. It involved design a communication plan to be
followed by the team member.
· Develop a critical plan of the information system that will
meet the need of the internal and external users.
· The team member discusses the structure and content of the
overall project.
· The team member provides an analysis of the purpose of the
project, likely users, and how it can be implemented.
· The team members design the related issues, technology
constraints, and the development environment of the project.
This week plans to set the foundation of the project by coming
up with team members, focusing on the need for the project to
be accomplished, setting everything in order, analyzing the
project plan, and coming up with any constraint that may hinder
the success of the project (Hannach, Marghoubi, & Dahchour,
2016). Project Task accomplished this week:
· Selection of effective team member
· Designing of communication plan
· Developing the need for the project
· Designing the structure and content of the project
The week activities did not adequately provide the constraint
that might affect the proper development of the information
system. The team was unable to forecast the constrained related
to technology issues and the development environment (Bartak,
2016). This was due to time constraints and the lack of
appropriate resources to analysis and predict the future. Project
Issues:
· Technological issues such as the lack of effective technology
resources required to analysis and predict the future need of the
information system.
· Need for effective analysis of the expected user profiles
· I need enough time to ensure the successful completion of the
task at hand.
There was a plan to revise the next week's plan activities to
award more time and provide the necessary resources required
to implement the required task effectively (Teixeira, Xambre,
Figueiredo, & Alvelos, 2016).Project tasks planned for next
week:
· Forecast on the project constraint
· Utilization of project tool to design the project process and
structure
· Develop a project evaluation and resource tracking chart
(Maranga, 2018).
References
Ahrari, A., & Haghani, A. (2019). A New Decision Support
System for Optimal Integrated Project Scheduling and Resource
Planning. International Journal of Information Technology
Project Management, 10(3), 18-33.
doi:10.4018/ijitpm.2019070102
Bartak, R. (2016). Constraint Satisfaction for Planning and
Scheduling. Intelligent Techniques for Planning.
doi:10.4018/9781591404507.ch010
Hannach, D. E., Marghoubi, R., & Dahchour, M. (2016). Project
portfolio management Towards a new project prioritization
process. 2016 International Conference on Information
Technology for Organizations Development (IT4OD).
doi:10.1109/it4od.2016.7479281
Maranga, K. (2018). Virtual Organizations and IT Project
Management. Information Technology as a Facilitator of Social
Processes in Project Management and Collaborative Work, 144-
157. doi:10.4018/978-1-5225-3471-6.ch008
Teixeira, L., Xambre, A. R., Figueiredo, J., & Alvelos, H.
(2016). Analysis and Design of a Project Management
Information System: Practical Case in a Consulting
Company. Procedia Computer Science, 100, 171-178.
doi:10.1016/j.procs.2016.09.137
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include "a2.h"
#include "a3.h"
#include "a4.h"
#define DEFAULT_PORT 12345
typedef struct cfg {
long port;
char *iface;
char *server;
char *mcast;
FILE *fstream;
int use_udp;
int use_rudp;
} cfg_t;
/*
* If we are a server, launch the appropriate methods to handle
server
* functionality based on the configuration arguments.
*/
void run_server(cfg_t *cfg) {
fprintf(stderr, "Hello, I'm a server with no
purpose...goodbyen");
/* For example, if cfg->udp is true, then call the server UDP
handler */
}
/*
* If we are a client, launch the appropriate methods to handle
client
* functionality based on the configuration arguments.
*/
void run_client(cfg_t *cfg) {
fprintf(stderr, "Hello, I'm a client with no
purpose...goodbyen");
/* For example, if cfg->udp is true, then call the client UDP
handler */
}
void usage(const char *argv0) {
printf("Usage:n");
printf(" %s start a server and wait for connectionn",
argv0);
printf(" %s <host> connect to server at <host>n", argv0);
printf("n");
printf("Options:n");
printf(" -p, --port=<port> listen on/connect to port
<port>n");
printf(" -i, --iface=<dev> listen on interface <dev>n");
printf(" -f, --file=<filename> file to read/writen");
printf(" -u, --udp use UDP (default TCP)n");
printf(" -r, --rudp use RUDP (1=stopwait,
2=gobackN)n");
printf(" -m, --mcast=<addr> multicast addressn");
}
int main(int argc, char **argv) {
int c;
char *fname = NULL;
/* The configuration structure for netster */
cfg_t cfg = {
.port = DEFAULT_PORT, /* which port to use */
.iface = NULL, /* which interface to use */
.server = NULL, /* the server to connect to */
.mcast = NULL, /* the multicast group to use */
.fstream = NULL, /* the open file stream if fname given
*/
.use_udp = 0, /* should we use UDP (default TCP) */
.use_rudp = 0, /* should we use RUDP (default TCP) */
};
static struct option long_options[] = {
{ .name = "port", .has_arg = 1, .val = 'p' },
{ .name = "iface", .has_arg = 1, .val = 'i' },
{ .name = "mcast", .has_arg = 1, .val = 'm' },
{ .name = "file", .has_arg = 1, .val = 'f' },
{ .name = "udp", .has_arg = 0, .val = 'u' },
{ .name = "rudp", .has_arg = 1, .val = 'r' },
{ 0 }
};
while (1) {
c = getopt_long(argc, argv, "p:i:m:f:r:u", long_options,
NULL);
if (c == -1)
break;
switch (c) {
case 'p':
cfg.port = strtol(optarg, NULL, 0);
if (cfg.port < 0 || cfg.port > 65535) {
usage(argv[0]);
return 1;
}
break;
case 'i':
cfg.iface = strdup(optarg);
break;
case 'u':
cfg.use_udp = 1;
break;
case 'r':
cfg.use_rudp = atoi(optarg);
break;
case 'm':
cfg.mcast = strdup(optarg);
break;
case 'f':
fname = strdup(optarg);
break;
default:
usage(argv[0]);
return 1;
break;
}
}
if (optind == argc - 1)
cfg.server = strdup(argv[optind]);
/* open the file if specified */
if (fname) {
const char *mode = (cfg.server) ? "r" : "w+";
cfg.fstream = fopen(fname, mode);
if (!cfg.fstream) {
perror("fopen: ");
exit(1);
}
}
/* Here we decide if we started as a server or client! */
if (cfg.server)
run_client(&cfg);
else
run_server(&cfg);
if (fname && cfg.fstream) {
fclose(cfg.fstream);
}
return 0;
}
/*
* Here is the starting point for your Assignment 03
definitions. Add the
* appropriate comment header as defined in the code
formatting guidelines
*/
/* Add function definitions */
1
To: ADD name, titleComment by Sharon Rose: Use down arrow
to expand all comments below.
Remove all comments in paper before submitting to earn a
better grade. One way to do this, right click on each comment,
select ‘Delete Comment’.
Enter your content where the Bullet marks are located.
All Papers will be checked using SafeAssign. Please focus on
keeping the SafeAssign percentage to approximately 20%.
NOTE:
There is no need for a cover page.
Remove comments provide by instructor before submitting
assignment.
Enter a short paragraph stating objective of the status.
From: ADD your nameDate: ADD date Subject: Status Report
Week 9
Enter a short paragraph stating objective of the status.Project
Task for this week: Comment by Sharon Rose:
What did you expect to accomplish on the project this week?
List To earn an ‘A’ in this section you must (From Grading
Rubric):
List expectations toward project completion for the week.
Explain the plans to meet these expectation
Provide insight as to how expectations were set week-to-week.
Include when expectations listed would be met.
· Task 1
· Task 2Project Task accomplished this week Comment by
Sharon Rose: What did you actually accomplish on the project
this week?
List To earn an ‘A’ in this section you must (From Grading
Rubric):
List accomplishments for the week
Describe what was not accomplished for the week
List accomplishments for the week
Explain why things were not accomplished
· Task 1
· Task 2Project Issues Comment by Sharon Rose: What
issues have arisen, and what help would you like with them?
List To earn an ‘A’ in this section you must (From Grading
Rubric):
Describe issues that arose during the week
Determine what kind of help is needed to resolve outstanding
issues
Describe issues that arose and include how they were resolved.
Present issues in order of priority, with ideas about how to
solve each.
· Issue 1
· Issue 2 Project tasks planned for next week Comment by
Sharon Rose: What do you expect to accomplish on the project
next week?
List To earn an ‘A’ in this section you must (From Grading
Rubric):
List expectations toward project completion for next week
Described how outstanding issues would be resolved by the
following week
Prioritize list of expectations for next week
Propose strategy for prioritizing and resolving outstanding
issues
· Task 1
· Task 2…..

More Related Content

Similar to 1To ADD name, titleFrom ADD your nameDate ADD date Subject S.docx

Project Plan template
Project Plan templateProject Plan template
Project Plan templateDemand Metric
 
Info461ProjectCharterEskridgeAs08
Info461ProjectCharterEskridgeAs08Info461ProjectCharterEskridgeAs08
Info461ProjectCharterEskridgeAs08Greg Eskridge
 
Project Management Fundamentals
Project Management FundamentalsProject Management Fundamentals
Project Management FundamentalsOxfordCambridge
 
Project PlanGroup 2The Data Center Project PlanProj.docx
Project PlanGroup 2The Data Center Project PlanProj.docxProject PlanGroup 2The Data Center Project PlanProj.docx
Project PlanGroup 2The Data Center Project PlanProj.docxbriancrawford30935
 
Kickoff Meeting PowerPoint Presentation Slides
Kickoff Meeting PowerPoint Presentation SlidesKickoff Meeting PowerPoint Presentation Slides
Kickoff Meeting PowerPoint Presentation SlidesSlideTeam
 
PertGanttchart
PertGanttchartPertGanttchart
PertGanttchartlearnt
 
SE - Lecture 11 - Software Project Estimation.pptx
SE - Lecture 11 - Software Project Estimation.pptxSE - Lecture 11 - Software Project Estimation.pptx
SE - Lecture 11 - Software Project Estimation.pptxTangZhiSiang
 
Kickoff Meeting Powerpoint Presentation Slides
Kickoff Meeting Powerpoint Presentation SlidesKickoff Meeting Powerpoint Presentation Slides
Kickoff Meeting Powerpoint Presentation SlidesSlideTeam
 
Introduction to Project Management
Introduction to Project Management Introduction to Project Management
Introduction to Project Management Joshua Miranda
 
Assignment HandoutProgr.docx
Assignment HandoutProgr.docxAssignment HandoutProgr.docx
Assignment HandoutProgr.docxpoulterbarbara
 
EO notes Lecture 27 Project Management 2.ppt
EO notes Lecture 27 Project Management 2.pptEO notes Lecture 27 Project Management 2.ppt
EO notes Lecture 27 Project Management 2.pptyashchotaliyael21
 
Project Kickoff Meeting Agenda PowerPoint Presentation Slides
Project Kickoff Meeting Agenda PowerPoint Presentation SlidesProject Kickoff Meeting Agenda PowerPoint Presentation Slides
Project Kickoff Meeting Agenda PowerPoint Presentation SlidesSlideTeam
 
Mgmt404 entire class course project + all 7 weeks i labs devry university
Mgmt404 entire class course project + all 7 weeks i labs  devry universityMgmt404 entire class course project + all 7 weeks i labs  devry university
Mgmt404 entire class course project + all 7 weeks i labs devry universitykghkghfh
 
Mgmt404 entire class course project + all 7 weeks i labs devry university
Mgmt404 entire class course project + all 7 weeks i labs  devry universityMgmt404 entire class course project + all 7 weeks i labs  devry university
Mgmt404 entire class course project + all 7 weeks i labs devry universityliam111221
 

Similar to 1To ADD name, titleFrom ADD your nameDate ADD date Subject S.docx (20)

Project Plan template
Project Plan templateProject Plan template
Project Plan template
 
Info461ProjectCharterEskridgeAs08
Info461ProjectCharterEskridgeAs08Info461ProjectCharterEskridgeAs08
Info461ProjectCharterEskridgeAs08
 
Project Management Fundamentals
Project Management FundamentalsProject Management Fundamentals
Project Management Fundamentals
 
Project Management Fundamentals
Project Management FundamentalsProject Management Fundamentals
Project Management Fundamentals
 
Project PlanGroup 2The Data Center Project PlanProj.docx
Project PlanGroup 2The Data Center Project PlanProj.docxProject PlanGroup 2The Data Center Project PlanProj.docx
Project PlanGroup 2The Data Center Project PlanProj.docx
 
Kickoff Meeting PowerPoint Presentation Slides
Kickoff Meeting PowerPoint Presentation SlidesKickoff Meeting PowerPoint Presentation Slides
Kickoff Meeting PowerPoint Presentation Slides
 
PertGanttchart
PertGanttchartPertGanttchart
PertGanttchart
 
SE - Lecture 11 - Software Project Estimation.pptx
SE - Lecture 11 - Software Project Estimation.pptxSE - Lecture 11 - Software Project Estimation.pptx
SE - Lecture 11 - Software Project Estimation.pptx
 
Kickoff Meeting Powerpoint Presentation Slides
Kickoff Meeting Powerpoint Presentation SlidesKickoff Meeting Powerpoint Presentation Slides
Kickoff Meeting Powerpoint Presentation Slides
 
Team Contract
Team ContractTeam Contract
Team Contract
 
Final project se
Final project seFinal project se
Final project se
 
Introduction to Project Management
Introduction to Project Management Introduction to Project Management
Introduction to Project Management
 
15 Deliv template
15 Deliv template15 Deliv template
15 Deliv template
 
Assignment HandoutProgr.docx
Assignment HandoutProgr.docxAssignment HandoutProgr.docx
Assignment HandoutProgr.docx
 
EO notes Lecture 27 Project Management 2.ppt
EO notes Lecture 27 Project Management 2.pptEO notes Lecture 27 Project Management 2.ppt
EO notes Lecture 27 Project Management 2.ppt
 
Slides chapters 24-25
Slides chapters 24-25Slides chapters 24-25
Slides chapters 24-25
 
Project management
Project managementProject management
Project management
 
Project Kickoff Meeting Agenda PowerPoint Presentation Slides
Project Kickoff Meeting Agenda PowerPoint Presentation SlidesProject Kickoff Meeting Agenda PowerPoint Presentation Slides
Project Kickoff Meeting Agenda PowerPoint Presentation Slides
 
Mgmt404 entire class course project + all 7 weeks i labs devry university
Mgmt404 entire class course project + all 7 weeks i labs  devry universityMgmt404 entire class course project + all 7 weeks i labs  devry university
Mgmt404 entire class course project + all 7 weeks i labs devry university
 
Mgmt404 entire class course project + all 7 weeks i labs devry university
Mgmt404 entire class course project + all 7 weeks i labs  devry universityMgmt404 entire class course project + all 7 weeks i labs  devry university
Mgmt404 entire class course project + all 7 weeks i labs devry university
 

More from lorainedeserre

4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx
4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx
4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docxlorainedeserre
 
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docxlorainedeserre
 
38 u December 2017 January 2018The authorities beli.docx
38  u   December 2017  January 2018The authorities beli.docx38  u   December 2017  January 2018The authorities beli.docx
38 u December 2017 January 2018The authorities beli.docxlorainedeserre
 
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docxlorainedeserre
 
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docxlorainedeserre
 
3Moral Identity Codes of Ethics and Institutional Ethics .docx
3Moral Identity Codes of  Ethics and Institutional  Ethics .docx3Moral Identity Codes of  Ethics and Institutional  Ethics .docx
3Moral Identity Codes of Ethics and Institutional Ethics .docxlorainedeserre
 
3NIMH Opinion or FactThe National Institute of Mental Healt.docx
3NIMH Opinion or FactThe National Institute of Mental Healt.docx3NIMH Opinion or FactThe National Institute of Mental Healt.docx
3NIMH Opinion or FactThe National Institute of Mental Healt.docxlorainedeserre
 
4.1Updated April-09Lecture NotesChapter 4Enterpr.docx
4.1Updated April-09Lecture NotesChapter 4Enterpr.docx4.1Updated April-09Lecture NotesChapter 4Enterpr.docx
4.1Updated April-09Lecture NotesChapter 4Enterpr.docxlorainedeserre
 
3Type your name hereType your three-letter and -number cours.docx
3Type your name hereType your three-letter and -number cours.docx3Type your name hereType your three-letter and -number cours.docx
3Type your name hereType your three-letter and -number cours.docxlorainedeserre
 
3Welcome to Writing at Work! After you have completed.docx
3Welcome to Writing at Work! After you have completed.docx3Welcome to Writing at Work! After you have completed.docx
3Welcome to Writing at Work! After you have completed.docxlorainedeserre
 
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docxlorainedeserre
 
3Big Data Analyst QuestionnaireWithin this document are fo.docx
3Big Data Analyst QuestionnaireWithin this document are fo.docx3Big Data Analyst QuestionnaireWithin this document are fo.docx
3Big Data Analyst QuestionnaireWithin this document are fo.docxlorainedeserre
 
3HR StrategiesKey concepts and termsHigh commitment .docx
3HR StrategiesKey concepts and termsHigh commitment .docx3HR StrategiesKey concepts and termsHigh commitment .docx
3HR StrategiesKey concepts and termsHigh commitment .docxlorainedeserre
 
3Implementing ChangeConstruction workers on scaffolding..docx
3Implementing ChangeConstruction workers on scaffolding..docx3Implementing ChangeConstruction workers on scaffolding..docx
3Implementing ChangeConstruction workers on scaffolding..docxlorainedeserre
 
3Assignment Three Purpose of the study and Research Questions.docx
3Assignment Three Purpose of the study and Research Questions.docx3Assignment Three Purpose of the study and Research Questions.docx
3Assignment Three Purpose of the study and Research Questions.docxlorainedeserre
 
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docxlorainedeserre
 
392Group Development JupiterimagesStockbyteThinkstoc.docx
392Group Development JupiterimagesStockbyteThinkstoc.docx392Group Development JupiterimagesStockbyteThinkstoc.docx
392Group Development JupiterimagesStockbyteThinkstoc.docxlorainedeserre
 
39Chapter 7Theories of TeachingIntroductionTheories of l.docx
39Chapter 7Theories of TeachingIntroductionTheories of l.docx39Chapter 7Theories of TeachingIntroductionTheories of l.docx
39Chapter 7Theories of TeachingIntroductionTheories of l.docxlorainedeserre
 
3902    wileyonlinelibrary.comjournalmec Molecular Ecology.docx
3902     wileyonlinelibrary.comjournalmec Molecular Ecology.docx3902     wileyonlinelibrary.comjournalmec Molecular Ecology.docx
3902    wileyonlinelibrary.comjournalmec Molecular Ecology.docxlorainedeserre
 
38  Monthly Labor Review  •  June 2012TelecommutingThe.docx
38  Monthly Labor Review  •  June 2012TelecommutingThe.docx38  Monthly Labor Review  •  June 2012TelecommutingThe.docx
38  Monthly Labor Review  •  June 2012TelecommutingThe.docxlorainedeserre
 

More from lorainedeserre (20)

4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx
4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx
4 Shaping and Sustaining Change Ryan McVayPhotodiscThink.docx
 
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx
4.1 EXPLORING INCENTIVE PAY4-1 Explore the incentive pay a.docx
 
38 u December 2017 January 2018The authorities beli.docx
38  u   December 2017  January 2018The authorities beli.docx38  u   December 2017  January 2018The authorities beli.docx
38 u December 2017 January 2018The authorities beli.docx
 
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx
3Prototypes of Ethical ProblemsObjectivesThe reader shou.docx
 
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx
4-5 Annotations and Writing Plan - Thu Jan 30 2111Claire Knaus.docx
 
3Moral Identity Codes of Ethics and Institutional Ethics .docx
3Moral Identity Codes of  Ethics and Institutional  Ethics .docx3Moral Identity Codes of  Ethics and Institutional  Ethics .docx
3Moral Identity Codes of Ethics and Institutional Ethics .docx
 
3NIMH Opinion or FactThe National Institute of Mental Healt.docx
3NIMH Opinion or FactThe National Institute of Mental Healt.docx3NIMH Opinion or FactThe National Institute of Mental Healt.docx
3NIMH Opinion or FactThe National Institute of Mental Healt.docx
 
4.1Updated April-09Lecture NotesChapter 4Enterpr.docx
4.1Updated April-09Lecture NotesChapter 4Enterpr.docx4.1Updated April-09Lecture NotesChapter 4Enterpr.docx
4.1Updated April-09Lecture NotesChapter 4Enterpr.docx
 
3Type your name hereType your three-letter and -number cours.docx
3Type your name hereType your three-letter and -number cours.docx3Type your name hereType your three-letter and -number cours.docx
3Type your name hereType your three-letter and -number cours.docx
 
3Welcome to Writing at Work! After you have completed.docx
3Welcome to Writing at Work! After you have completed.docx3Welcome to Writing at Work! After you have completed.docx
3Welcome to Writing at Work! After you have completed.docx
 
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx
3JWI 531 Finance II Assignment 1TemplateHOW TO USE THIS TEMP.docx
 
3Big Data Analyst QuestionnaireWithin this document are fo.docx
3Big Data Analyst QuestionnaireWithin this document are fo.docx3Big Data Analyst QuestionnaireWithin this document are fo.docx
3Big Data Analyst QuestionnaireWithin this document are fo.docx
 
3HR StrategiesKey concepts and termsHigh commitment .docx
3HR StrategiesKey concepts and termsHigh commitment .docx3HR StrategiesKey concepts and termsHigh commitment .docx
3HR StrategiesKey concepts and termsHigh commitment .docx
 
3Implementing ChangeConstruction workers on scaffolding..docx
3Implementing ChangeConstruction workers on scaffolding..docx3Implementing ChangeConstruction workers on scaffolding..docx
3Implementing ChangeConstruction workers on scaffolding..docx
 
3Assignment Three Purpose of the study and Research Questions.docx
3Assignment Three Purpose of the study and Research Questions.docx3Assignment Three Purpose of the study and Research Questions.docx
3Assignment Three Purpose of the study and Research Questions.docx
 
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx
380067.docxby Jamie FeryllFILET IME SUBMIT T ED 22- .docx
 
392Group Development JupiterimagesStockbyteThinkstoc.docx
392Group Development JupiterimagesStockbyteThinkstoc.docx392Group Development JupiterimagesStockbyteThinkstoc.docx
392Group Development JupiterimagesStockbyteThinkstoc.docx
 
39Chapter 7Theories of TeachingIntroductionTheories of l.docx
39Chapter 7Theories of TeachingIntroductionTheories of l.docx39Chapter 7Theories of TeachingIntroductionTheories of l.docx
39Chapter 7Theories of TeachingIntroductionTheories of l.docx
 
3902    wileyonlinelibrary.comjournalmec Molecular Ecology.docx
3902     wileyonlinelibrary.comjournalmec Molecular Ecology.docx3902     wileyonlinelibrary.comjournalmec Molecular Ecology.docx
3902    wileyonlinelibrary.comjournalmec Molecular Ecology.docx
 
38  Monthly Labor Review  •  June 2012TelecommutingThe.docx
38  Monthly Labor Review  •  June 2012TelecommutingThe.docx38  Monthly Labor Review  •  June 2012TelecommutingThe.docx
38  Monthly Labor Review  •  June 2012TelecommutingThe.docx
 

Recently uploaded

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 

Recently uploaded (20)

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 

1To ADD name, titleFrom ADD your nameDate ADD date Subject S.docx

  • 1. 1 To: ADD name, titleFrom: ADD your nameDate: ADD date Subject: Status Report Week 8 The status report aims to provide an overview of various activities performed weekly to accomplish the information project vision. It provides an overall plan of the project to ensure effective and efficient implementation, monitoring, and evaluation (Ahrari & Haghani, 2019). The primary purpose is to help the project manager monitoring the impletion of project activities, evaluated the accomplished task, and unaccomplished tasks as well as plan for the nest week activities. Project Task for this week: · Selecting project team members · Discussion in detail the mission and vision of the information system project. It involved design a communication plan to be followed by the team member. · Develop a critical plan of the information system that will meet the need of the internal and external users. · The team member discusses the structure and content of the overall project. · The team member provides an analysis of the purpose of the project, likely users, and how it can be implemented. · The team members design the related issues, technology constraints, and the development environment of the project. This week plans to set the foundation of the project by coming up with team members, focusing on the need for the project to be accomplished, setting everything in order, analyzing the project plan, and coming up with any constraint that may hinder the success of the project (Hannach, Marghoubi, & Dahchour, 2016). Project Task accomplished this week: · Selection of effective team member · Designing of communication plan · Developing the need for the project · Designing the structure and content of the project
  • 2. The week activities did not adequately provide the constraint that might affect the proper development of the information system. The team was unable to forecast the constrained related to technology issues and the development environment (Bartak, 2016). This was due to time constraints and the lack of appropriate resources to analysis and predict the future. Project Issues: · Technological issues such as the lack of effective technology resources required to analysis and predict the future need of the information system. · Need for effective analysis of the expected user profiles · I need enough time to ensure the successful completion of the task at hand. There was a plan to revise the next week's plan activities to award more time and provide the necessary resources required to implement the required task effectively (Teixeira, Xambre, Figueiredo, & Alvelos, 2016).Project tasks planned for next week: · Forecast on the project constraint · Utilization of project tool to design the project process and structure · Develop a project evaluation and resource tracking chart (Maranga, 2018).
  • 3. References Ahrari, A., & Haghani, A. (2019). A New Decision Support System for Optimal Integrated Project Scheduling and Resource Planning. International Journal of Information Technology Project Management, 10(3), 18-33. doi:10.4018/ijitpm.2019070102 Bartak, R. (2016). Constraint Satisfaction for Planning and Scheduling. Intelligent Techniques for Planning. doi:10.4018/9781591404507.ch010 Hannach, D. E., Marghoubi, R., & Dahchour, M. (2016). Project portfolio management Towards a new project prioritization process. 2016 International Conference on Information Technology for Organizations Development (IT4OD). doi:10.1109/it4od.2016.7479281 Maranga, K. (2018). Virtual Organizations and IT Project Management. Information Technology as a Facilitator of Social Processes in Project Management and Collaborative Work, 144- 157. doi:10.4018/978-1-5225-3471-6.ch008 Teixeira, L., Xambre, A. R., Figueiredo, J., & Alvelos, H. (2016). Analysis and Design of a Project Management
  • 4. Information System: Practical Case in a Consulting Company. Procedia Computer Science, 100, 171-178. doi:10.1016/j.procs.2016.09.137 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <getopt.h> #include "a2.h" #include "a3.h" #include "a4.h" #define DEFAULT_PORT 12345 typedef struct cfg { long port; char *iface; char *server; char *mcast; FILE *fstream; int use_udp; int use_rudp; } cfg_t; /* * If we are a server, launch the appropriate methods to handle server * functionality based on the configuration arguments. */ void run_server(cfg_t *cfg) { fprintf(stderr, "Hello, I'm a server with no purpose...goodbyen");
  • 5. /* For example, if cfg->udp is true, then call the server UDP handler */ } /* * If we are a client, launch the appropriate methods to handle client * functionality based on the configuration arguments. */ void run_client(cfg_t *cfg) { fprintf(stderr, "Hello, I'm a client with no purpose...goodbyen"); /* For example, if cfg->udp is true, then call the client UDP handler */ } void usage(const char *argv0) { printf("Usage:n"); printf(" %s start a server and wait for connectionn", argv0); printf(" %s <host> connect to server at <host>n", argv0); printf("n"); printf("Options:n"); printf(" -p, --port=<port> listen on/connect to port <port>n"); printf(" -i, --iface=<dev> listen on interface <dev>n"); printf(" -f, --file=<filename> file to read/writen"); printf(" -u, --udp use UDP (default TCP)n"); printf(" -r, --rudp use RUDP (1=stopwait, 2=gobackN)n"); printf(" -m, --mcast=<addr> multicast addressn"); } int main(int argc, char **argv) { int c; char *fname = NULL;
  • 6. /* The configuration structure for netster */ cfg_t cfg = { .port = DEFAULT_PORT, /* which port to use */ .iface = NULL, /* which interface to use */ .server = NULL, /* the server to connect to */ .mcast = NULL, /* the multicast group to use */ .fstream = NULL, /* the open file stream if fname given */ .use_udp = 0, /* should we use UDP (default TCP) */ .use_rudp = 0, /* should we use RUDP (default TCP) */ }; static struct option long_options[] = { { .name = "port", .has_arg = 1, .val = 'p' }, { .name = "iface", .has_arg = 1, .val = 'i' }, { .name = "mcast", .has_arg = 1, .val = 'm' }, { .name = "file", .has_arg = 1, .val = 'f' }, { .name = "udp", .has_arg = 0, .val = 'u' }, { .name = "rudp", .has_arg = 1, .val = 'r' }, { 0 } }; while (1) { c = getopt_long(argc, argv, "p:i:m:f:r:u", long_options, NULL); if (c == -1) break; switch (c) { case 'p': cfg.port = strtol(optarg, NULL, 0); if (cfg.port < 0 || cfg.port > 65535) { usage(argv[0]); return 1; }
  • 7. break; case 'i': cfg.iface = strdup(optarg); break; case 'u': cfg.use_udp = 1; break; case 'r': cfg.use_rudp = atoi(optarg); break; case 'm': cfg.mcast = strdup(optarg); break; case 'f': fname = strdup(optarg); break; default: usage(argv[0]); return 1; break; } } if (optind == argc - 1) cfg.server = strdup(argv[optind]); /* open the file if specified */ if (fname) { const char *mode = (cfg.server) ? "r" : "w+"; cfg.fstream = fopen(fname, mode);
  • 8. if (!cfg.fstream) { perror("fopen: "); exit(1); } } /* Here we decide if we started as a server or client! */ if (cfg.server) run_client(&cfg); else run_server(&cfg); if (fname && cfg.fstream) { fclose(cfg.fstream); } return 0; } /* * Here is the starting point for your Assignment 03 definitions. Add the * appropriate comment header as defined in the code formatting guidelines */ /* Add function definitions */ 1 To: ADD name, titleComment by Sharon Rose: Use down arrow to expand all comments below. Remove all comments in paper before submitting to earn a better grade. One way to do this, right click on each comment,
  • 9. select ‘Delete Comment’. Enter your content where the Bullet marks are located. All Papers will be checked using SafeAssign. Please focus on keeping the SafeAssign percentage to approximately 20%. NOTE: There is no need for a cover page. Remove comments provide by instructor before submitting assignment. Enter a short paragraph stating objective of the status. From: ADD your nameDate: ADD date Subject: Status Report Week 9 Enter a short paragraph stating objective of the status.Project Task for this week: Comment by Sharon Rose: What did you expect to accomplish on the project this week? List To earn an ‘A’ in this section you must (From Grading Rubric): List expectations toward project completion for the week. Explain the plans to meet these expectation Provide insight as to how expectations were set week-to-week. Include when expectations listed would be met. · Task 1 · Task 2Project Task accomplished this week Comment by Sharon Rose: What did you actually accomplish on the project this week? List To earn an ‘A’ in this section you must (From Grading Rubric): List accomplishments for the week Describe what was not accomplished for the week List accomplishments for the week Explain why things were not accomplished · Task 1 · Task 2Project Issues Comment by Sharon Rose: What
  • 10. issues have arisen, and what help would you like with them? List To earn an ‘A’ in this section you must (From Grading Rubric): Describe issues that arose during the week Determine what kind of help is needed to resolve outstanding issues Describe issues that arose and include how they were resolved. Present issues in order of priority, with ideas about how to solve each. · Issue 1 · Issue 2 Project tasks planned for next week Comment by Sharon Rose: What do you expect to accomplish on the project next week? List To earn an ‘A’ in this section you must (From Grading Rubric): List expectations toward project completion for next week Described how outstanding issues would be resolved by the following week Prioritize list of expectations for next week Propose strategy for prioritizing and resolving outstanding issues · Task 1 · Task 2…..