Linux Ubuntu Commands, Lecture notes of Operating Systems

Notes for all linux Command (Ubuntu)

Typology: Lecture notes

2018/2019

Uploaded on 12/04/2019

usama-javed-1
usama-javed-1 🇵🇰

1 document

1 / 6

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Information
Systems
Assignment #1
BS IT 5th Semester
Muhammad Usama javed17-NTU-1234
Submitted To: Sir Asif Suryani
pf3
pf4
pf5

Partial preview of the text

Download Linux Ubuntu Commands and more Lecture notes Operating Systems in PDF only on Docsity!

Information

Systems

Assignment

BS IT 5th Semester

Muhammad Usama javed17-NTU-

Submitted To: Sir Asif Suryani

Question No (1)

Write a 250- 300-word essay describing the type of information

discussed in the article.

1) After reading the article I observe the information in the article is about how to

win Sports. Basically, the Information in the article is information is about the key of success in different sports in this article writer talking about the different rules, tricks and knowledge of the area, He is talking about the, how to get the data and how to use that data. For example: Dallas Mavericks coach Rick Carlisle, announcing that its analytics department had been expanded with new recruits, recently said: “We’re going to be a better team this year – we know that by the analytics.” This shows that basically the analysis of the data is very important thing to became a great team when you are the best in coordination ,synchronization and also with talented and good players then you will be able to win and these things will happen when you have a set of data and the latest technology and high ratted analysts. In the UK, Premier League soccer team Arsenal has recently invested millions in developing its own analytics team to make better use of the data it is now collecting. One important data stream comes from 8 cameras installed around its stadium to track every player and their interactions. The system by sports analytics provider Prozone tracks 10 data points per second for every player, or 1.4 million data points per game. The system is also used to monitor 12,000 soccer matches around the world, which are all analyzed using automated algorithms as well as manual coding of every interaction with the ball to increase the accuracy and value of the analysis. Above paragraph shows that how to increase the performance of the team there is a lot of efforts behind the collecting and management of the data because both process are important and now every team use stats and data of the opponents and its very important to change the information system with respect to time.

2) Characteristics:

 Weak points of the players  Favorite zone or strong points of the players

Pro_id int not null Primary key, Pro_Name varchar(30) not null, Pro_Price int not null); create table Purchase( Pur_id int not null Primary key, Pro_id int not null, C_id int not null , constraint Customer_FK foreign key(C_id) references Customer(C_id), constraint Product_FK foreign key(Pro_id) references Product(Pro_id) ); insert into Product values( '1', 'Blue Cell Phone Cover', '24'); insert into Product values( '2', 'Red Tablet Case', '45'); insert into Product values( '3', 'Cell Phone Car Adapter', '35'); insert into Product values( '4', 'Black Leather Notebook Case', '45'); insert into Purchase values( '1', '1', '1'); Result of the Quires: Customer Table:

Figure 2. Product table: Figure 2. Purchase table: