I am Zeeshan Ali, the purpose of my life is to have positive impact on others no matter how little.
I enjoy basketball, nunchucks, coding, gaming, sketching and discovering new music.
| Major Projects | Companies |
|---|---|
| Finacle | Infosys |
| AMEX | Infosys |
| Deutsche Bank | HCL |
I would really like to work on text mining,regular expression, natural language processing and some cool Visualizations
[Heyya !!!] ()
100*(1+0.05/12)^2
## [1] 100.8351
3333%%222
## [1] 3
ha<-c(1,10,100,1000,10000,100000,1000000,10000000)
for(n in ha[1:8]){
newval<-(1+1/n)^n
cat("n = ", n,"\t(1+1/n)^n = ",newval, "\n")
}
## n = 1 (1+1/n)^n = 2
## n = 10 (1+1/n)^n = 2.593742
## n = 100 (1+1/n)^n = 2.704814
## n = 1000 (1+1/n)^n = 2.716924
## n = 10000 (1+1/n)^n = 2.718146
## n = 1e+05 (1+1/n)^n = 2.718268
## n = 1e+06 (1+1/n)^n = 2.71828
## n = 1e+07 (1+1/n)^n = 2.718282
D<-1000
K<-5
h=.25
Q<-sqrt(2*D*K/h)
Q
## [1] 200
P<-100;r<-0.08;n<-12;t<-3;
F<-P*(1+r/n)^(n*t)
F
## [1] 127.0237