Sunday, 6 January 2019

THE BASE OF LOGIC DESIGN

  • Boolean algebra is a form of algebra that deals with single digit binary
values and variables.
  • Values and variables can indicate some of the following binary pairs of
values:
• ON / OFF
• TRUE / FALSE
• HIGH / LOW
• CLOSED / OPEN
• 1 / 0
  • There are three fundamental operators in Boolean algebra :
• NOT: unary operator that complements represented as A’
• AND: binary operator which performs logical multiplication
• example: A ANDed with B would be represented as A.B or AB
• OR: binary operator which performs logical addition
• example: A ORed with B would be represented as A+B
 Image
Image
Image
  • Boolean expressions must be evaluated with the following order of operator precedence
• parentheses
• NOT
• AND
• OR
FUNCTION MANIPULATION 
  • Example: Simplify the following expression
F =BC +BC’ + BA
• Simplification
F = B(C + C’) +BA
F = B.1 + BA
F = (1 + A)
F= B
SUM OF PRODUCT (SOP) & PRODUCT OF SUM (POS)
  •  Boolean expressions can be manipulated into many forms.
• Some standardized forms are required for Boolean expressions to simplify
communication of the expressions.
  • SOP
  1. Combination of input value that produce 1 s is convert into equivalent variables, ANDed together then ORed with other combination variables with same output.
  2. SOP is easier to derive from truth table.
-EXAMPLE.
F = A’B’ + ABC’D
  • The truth table :
Image
 PRODUCT TERM :  A’B’C’D’
A’B’C’D
A’B’CD’
A’B’CD
SOP EXPRESSION :
F = (A’B’C’D’) + (A’B’C’D) + (A’B’ CD’) + (A’B’C’D) + (ABC’D)
  • Note that the method is reversible. You can find the SOP expression from the truth table or build the truth table from the expression.
  • POS
  1. Input combinations that produce 0 in sum terms (ORed variables) are ANDed together.
  2. Convert input values that produce 0s into equivalent variables, ORed the variables, then ANDed with other ORed forms.
  3. Usually use if more 1s produce in output function.
EXAMPLE :
F = (A+B+C)(A+B+C’)(A+B’+C)(A’+B+C’)
  • The truth table :
Image
PRODUCT TERM : A + B + C
                             A + B + C’
                            A + B’ + C
                            A’ + B + C’
POS EXPRESSION:
F = (A + B + C)(A + B + C’)(A + B’+C)(A’ + B + C’)
Prepared by  :

BOOLEAN EQUATION FORM

Hello everyone ðŸ™‚ ,my name is RkUsman
let me explain to all of you about Arihmetics for Addition,
  1. BINARY ADDITION
       Rules of Binary Addition
  • 0 + 0 = 0
  • 0 + 1 = 1
  • 1 + 0 = 1
  • 1 + 1 = 0, and carry 1 to the next more significant bit
For Example,
  00011010 + 00001100 = 00100110        1  1carries
  0  0  0  1  1  0  1  0   =26(base 10)
+ 0  0  0  0  1  1  0  0   =12(base 10)
  0  0  1  0  0  1  1  0   =38(base 10)

   2. DECIMAL ADDITION
To add two multiple-digit decimal numbers:
  • you first need to know how to add two single-digit decimal numbers.
  •  This requires the memorization of 100 facts, or 55 facts if you exclude the commutative or “turnaround” facts.
  •  Also, because of carries, you need to know ten additional facts: 10 + 0 = 10, 10 + 1 = 11,…, 10 + 9 = 19.
  • The latter apply when there’s a carry (always 1) and the “top” digit is 9.
For Example,
  • let’s add 19.7 and 12.8 ,
Image
3.HEXADECIMAL ADDITION
Just think of it like this:
A = 10
B = 11
C = 12
D = 13
E = 14
F = 15
So, you can either wrap your head around the math in a straight way, and realize that a carry only happens when the addtion results in a single column equaling 16 or greater:
AE9
+ F
——
AF8
Or you can do the conversion to base 10 then back:
A = 10
E = 14
Next you multiply each of those by 16 raised to the place minues 1. Since A is in the third place, it’s raised by 2. Since E is in the second place, it’s raised by 1. 8 is in the first place, so it’s raised by 0.
10*16^2 = 2560
14*16^1 = 224
9*16^0 = 9
Now add those together:
AE9 = 2560 + 224 + 9 = 2793
Now, you can add the other number:
F = 15
2793 + 15 = 2808
Now you convert back by dividing the number by the base 16 powers and saving the remainders:
Third Place:
16^2 = 256
2808 / 256 = 10 (remainder 248) = A
Seconed Place:
16^1 = 16
247 / 16 = 15 (remainder 8) = F
Ones Place:
16^0 = 1
8 / 1 = 8
Answer:
AF8
I perfer just getting used to the idea of adding in base 16 since it takes less time. 
thanks for reading ðŸ™‚ i'm  RkUsman
Subtraction is generally simpler than addition since only two numbers are involved and the upper value representation is greater than the lower value representation. The problem of “borrow” is similar in binary subtraction to that in decimal. We can contruct a subtraction table that has two parts – the three cases of subtracting without borrow, and the one case of the involvement of a borrow digit, no matter how far to the left is the next available binary digit.
Next, there are four rules we should follow in binary subtraction as in table 1.1
BINARY RULESSUMBORROW
 0 – 0 = 0 0 0
 0 – 1 = 1 1 10
 1 – 0 = 1 1 0
 1 – 1 = 1 0 1
Table 1.1
The first three are the same as in decimal. The fourth fact is the only new one; it is the borrow case. It applies when the “top” digit in a column is 0 and the “bottom” digit is 1. (Remember: in binary, 10 are pronounced “one-zero” or “two.”)
Now let’s subtract 1011.11 from 10101.101, following the same algorithm I used for decimal numbers:
Image
  • Step 1: 1 – 0 = 1.
  • Step 2: Borrow to make 10 – 1 = 1.
  • Step 3: Borrow to make 10 – 1 = 1.
  • Step 4: Cascaded borrow to make 10 – 1 = 1.
  • Step 5: 1 – 1 = 0.
  • Step 6: 0 – 0 = 0.
  • Step 7: Borrow to make 10 – 1 = 1.
Since there are lots of 0s in binary numbers, there can be lots of borrows — and lots of messy looking cross-outs.
There is another example for subtraction:
• 1011011 − 10010 = 1001001:
1011011
10010
1001001
created by  RkUsman
  • Binary multiplication is much easier because each digit we multiply by is either zero or one.F
  • Multiplication is achieved by adding a list of shifted multiplicands according to the digits of the multiplier.
  • There are four rules we should follow in binary multiplication as in table below:
Image
  • When performing binary multiplication, remember the following rules:
  1. Copy the multiplicand when the multiplier digit is 1. Otherwise, write a row of zeros.
  1. Shift your results one column to the left as you move to a new multiplier digit.
  1. Add the results together using binary addition to find the product.
  • Example 1 .
Image
  • Example 2 .
Image

Created By RkUsman

65 Play Store Alternatives for Android & iOS | alternative app store


Play Store Alternatives: Are you searching for Play Store Alternative for Android & iOS? Then you are in the perfect place. Today I am going to share with you 60+ best Sites/Apps Play Store Alternative for Android & iOS.


Most of the site/apps [around 90%] I have listed below provides FREE apps and games. All sites/apps will provide you with 100% safe and secure downloads. You don't have to

Saturday, 5 January 2019

Top 20 Premium Looking Blogger Templates

Hello wonderful people, Today I am going to list down Top 20 Premium Looking Blogger Templates which is completely free and you can make your blog look more attractive by using those templates. So without wasting time let's jump into our list.



Top 20 Free Premium Looking Blogger Templates 

1...Travelty 
... Travelty is one of the best blogger template with very clean looking and eye catching colors. This template is seo optimized and seo friendly, so it can help you to get more traffic on your blog.

Download & Live Preview 


2...Luminescence Lite
... Another beautiful template, this template is responsive template and have left sidebar where you can see your widget like popular posts, blog-archive, tags, link-list etc.... and you can arrange them as per your wish. 

Download & Live Preview (if you are seeing live preview in your mobile then switch to desktop site for better and correct view) 


3...Adventur
... Responsive and seo-friendly blogger template. This template is more like Travelty template and with very good looking desktop view. 

Download & Live Preview 







4...Antsasia
... Very clean and simple looking blogger template with white-dark colour and awesome fonts. Also a responsive template and have nice looking social media link-list widget. 

Download & Live Preview


5...Elise
... Seo-ready template with colorful design, awasome looking fonts. It comes with Very attractive design of icons and widgets. I can say this is one of good template for your blog. 

Download & Live Preview 


6...eSpecial
... If you are a fan of black or dark color then this template is best for you. Free blogger template with left sidebar same as luminascenes lite template. 

Download & Live Preview  
(use desktop mode for better view) 


7...CreativePro
... Another black designed blogger template with transparent look. It's a two column type blogger template with right hand sidebar. 

Download & Live Preview 



8...Angel

... Angel template is very clean and sharp looking with simple white color designed. It's a minimal type template and makes you feel smooth while viewing your blog.

Download & Live Preview



9...Crusade
... This is portfolio cum photography style blogger template. Very good looking homepage design and with round corner drop down menu style. It's a responsive template as well which will fit to any screen size whether it's pc or mobile. Also useful for travel and fashion blogs. 

Download & Live Preview










10...Popcorn

... If your blog is about movies and TV-shows, then this template is best for your. Very good looking album or poster view and nice animation while clicking on poster.



11...SportsMag
... Another colorful template with well designed widget and icons. Nice layout with good and responsive images. Attractive view on mobile as well on desktop. 

Download & Live Preview


12... Vebtube Video
... If your blog is about video like song video, movie trailer, TV-shows trailer etc... Then this simple looking blogger template is just for you. 

Download & Live Preview


13...Florence
... Free minimilistic type blogger template. It comes with very clean design and fast loading  Useful for fashion, travel, photography, food blogs etc...

Download & Live Preview


14...MagPlus
...It is a magazine type minimal blogger template. Best part of this template is having round corner image preview. With No doubt this is the best template for fashion and travel blogger.
... It comes in paid as well as in free version. Paid version will cost you around 20 dollars without any encrypted script. 

Download & Live Preview


15...Sora One
... It is one of the most popular template by soratemplates. This template is elegant and very well crafted and designed. You will get best experience in mobile as well as on pc. 

Download & Live Preview










16...Robin
... Very nice looking widgets and social icons, this template just stole my heart. 



17...Shine
... Another good theme for photography blog and fashion blog. Shine theme is single column type theme having no sidebar widgets. 

Download & Live Preview


18...Sora Jobs
... If your blog is about job updates or study related, then this theme is best suitable for you. It's very simple and well organized theme. 

Download & Live Preview


19...Insomnia
... Responsive and seo-optimized free blogger theme.

Download & Live Preview


20...Jasmine minimal
... Seo - friendly minimal template with cool fonts and layout.

Download & Live Preview







That's it for now... 
I hope you like this...