IST 210, Org Data Problem Instructions Flix2You is looking for a company to help
ID: 3601733 • Letter: I
Question
IST 210, Org Data
Problem Instructions
Flix2You is looking for a company to help them design a solution that meets the requirements they have set forth. As a group and aided by course materials, course content, and quality external resources, you need to create a proposal to meet the requirements of Flix2You. Keep in mind; your organization is not
the only one being solicited for this contract.
Problem Introduction
Flix2You wants to expand its current operations. The goal of Flix2You is to make better use of their current data which would then allow them to apply analytics to better understand how they formulate a new strategy for their business. "We have collected data in our system for almost 9 years. So we know we are data ‘rich’ but as they also say….’information poor’, says Steve LaSalle, a corporate vice-president. Flix2You wants to be the most comprehensive video rental portal in the country.
The purpose of this problem is for your group to create a solution that meets the needs of Flix2You, a movie rental company. Flix2You already has a website but is wants to better understand who their customers are and how they can increase revenue. Flix2You is searching for an organization that will help them create a solution to manage the data and database that drives the Flix2You site and their corporation.
The goal of this problem is to assist Flix2You in their initiative to design a solution that will create a data repository for easier querying and applying analytics to better understand their data. More specifically, Flix2You needs an organization to create a database design, create a backup and recovery plan, conduct a user analysis for using the new database, analyze current data, create database reports, and identify any legal issues for the new repository that Flix2You needs to be aware of.
It is the responsibility of your group to demonstrate the nature of the solution by producing a problem document which is actually a plan to help Flix2You and solve their problem. Requirements for the document are detailed throughout this document.
One of your group's responsibilities is to ensure that each of your group members participate equally throughout the design and development of the products. It is highly recommended that, prior to starting the project, each member of your group chooses a role from which you will play throughout the project. Choose the participants that you feel will most strongly make your case to the Board of Directors.
1. Project Manager
need help :(
Explanation / Answer
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#define ERR (-1)
#define TRUE 1
#define FALSE 0
int main();
int main(argc, argv)
int argc;
char *argv[];
{
int isdevice = FALSE;
struct stat stat_buf;
if (argc != 2)
{
printf("Usage: %s filename ", argv[0]);
exit (1);
}
if ( stat( argv[1], &stat_buf) == ERR)
{
perror("stat");
exit (1);
}
printf(" File: %s status: ",argv[1]);
if ((stat_buf.st_mode & S_IFMT) == S_IFDIR)
printf("Directory ");
else if ((stat_buf.st_mode & S_IFMT) == S_IFBLK)
{
printf("Block special file ");
isdevice = TRUE;
}
else if ((stat_buf.st_mode & S_IFMT) == S_IFCHR)
{
printf("Character special file ");
isdevice = TRUE;
}
else if ((stat_buf.st_mode & S_IFMT) == S_IFREG)
printf("Ordinary file ");
else if ((stat_buf.st_mode & S_IFMT) == S_IFIFO)
printf("FIFO ")
if (isdevice)
printf("Device number:%d, %d ", (stat_buf.st_rdev > 8) & 0377,
stat_buf.st_rdev & 0377);
printf("Resides on device:%d, %d ", (stat_buf.st_dev > 8) & 0377,
stat_buf.st_dev & 0377);
printf("I-node: %d; Links: %d; Size: %ld ", stat_buf.st_ino,
stat_buf.st_nlink, stat_buf.st_size);
if ((stat_buf.st_mode & S_ISUID) == S_ISUID)
printf("Set-user-ID ");
if ((stat_buf.st_mode & S_ISGID) == S_ISGID)
printf("Set-group-ID ");
if ((stat_buf.st_mode & S_ISVTX) == S_ISVTX)
printf("Sticky-bit set -- save swapped text after use ");
printf("Permissions: %o ", stat_buf.st_mode & 0777);
exit (0);
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.