Posts

Showing posts from December, 2013

THENAMOSTORE.COM AN ONLINE STORE TO SELL VARIETY OF MERCHANDISE

Image
A new online store www.thenamostore.com launch at 26 December,2013 in Ahmadabad. this store is now selling merchandise inspired by Narendra Modi . one can buy a different products like paper weight , pendrive , notebooks , T-shirts , etc.   One important thing about this store is the price of all products are kept low from regular price.  look of website is as per above shown snapshot. and ya one more thing claims that "the store is collaborative effort of a group of volunteers ". Let's wait for the new product update on the namo store and enjoy discount offer by the store to user.more snapshots of the website and products are shown below.

MAT LAB PROGRAM TO FIND OUT PROBABILITY OF HEAD AND TAILS COMES IN COIN TOSS

Image
To find out probability of head and tails come in MAT LAB. write down code written below to your m-file and save it and run. ------------------------------------------------------------------------------------------------------------ %MAT LAB program to find out probability of head and tails comes in coin toss %for simplicity let head=1 and tails=0 clc; clear all; n=input(' how many times you want to repeat the experiment : ') a=rand(1,n);   % give the 1 ×n matrix of random entries of 0 to 1 value b=round(a);   %rounding up the value generated by rand() function probh=(length(find(b==1)))/n;  % formula to find out probability probt=(length(find(b==0)))/n; p=[probh probt]; x=[1 0]; bar(x,p) ------------------------------------------------------------------------------------------------------------ after run this program you will see the output as shown in below figure :

MATLAB PROGRAM TO FIND THE PROBABLITY OF NUMBER 1 TO 6 COMES IN DICE

Image
Here is a MAT LAB program to calculate a probability of a dice for how many times 1 to 6 numbers come.write down this program in m-file of MAT LAB. ------------------------------------------------------------------------------------------------------------  %MAT LAB PROGRAM TO FIND THE PROBABILITY OF NUMBER 1 TO 6 COMES IN DICE clc; clear all; close all; n=input(' how many times you want to do experiment :  ') x={1,2,3,4,5,6}; min=1; max=length(x); b=round(min+(rand(1,n)*(max-min)); for i=1:max      p(i)=(length(find(b==i))); end bar(x,p) ------------------------------------------------------------------------------------------------------------ AFTER WRITING THIS CODE SAVE  AND RUN IT.YOU WILL SEE THE BAR CHART AS OUTPUT SHOWS  BELOW :

CANDY CRUSH SAGA UNLIMITED LIFE TRICK

Image
In a  few days candy crush saga game becomes too much popular. it was top apple iPhone app download in 2013.I started to play this game since last week.I spend lots of time behind this game but when lives over. This game tells us to stay calm for 15-29 min. for one life. Seriously i don't like this. So i started to think on it and found one trick to get unlimited life.Just follow simple step and is done.