# Assignment Workshop 01
# Arman Aziz
#Date: 14-Aug-2020
#
#1. Calculations
#a)
(5*4)^(4*5)-56
## [1] 1.048576e+26
#b)
23-1*(8-12)
## [1] 27
#c)
56/8*(3+4)
## [1] 49
#d)
45-5*8+(8+9)
## [1] 22
#
#2. Creation of Vectors
#a)
a<-c(2,5,6,7)
#b)
b<-c(1,0,9,8)
#c)
c<-c(6,5,8,3)
# 
##End of Assignment##