Knowledge in codinganddecoding

Coding and Decoding

Coding and Decoding is the easiest section when it comes to scoring.it takes the minimum amount of time if you know some of the common types of questions and tricks. It can be of 5 types: i)alphabets ii)numeric iii)symbols                                                                                                                       Alphabets A       B      C     D     E     F     G      H     I      J      K      L      M       N      O      P      Q      R      S      T       U      V      W      X      Y      Z 1        2       3      4      5     6      7      8     9    10    11     12    13    14     15   16      17     18     19     20    21   22      23      24      25    26 * An important point to keep in mind 'Sum of Position of an alphabet and its reverse is always equal to 27'. For e.g. A+Z=1+26=27               C+X=3+24=27 *To remember the alphabets and its reverse, form a story like this AhraZ   is a BoY who is CompleX by nature and he loves to DraW pictures of EnVironment in his FaltU time. he GoT a painting from HarSh,(his friend) which was IrregulaR in shape and has a picture of Jacket-Quilt. Harsh wanted him to KeeP the painting. He also gifted him shoes of LottO and he looked like gentleMaN after wearing it.                                                                                                                                                                                                                                                Numeric Types: i)Based on the position of the alphabet. e.g.   If FLOW is coded as 6121523, then BAT=2120 ii)Based on reverse position of alphabet. e.g If Flow is coded as 2115124, then BAT=25267 iii)Based on the Sum of the position of alphabets. e.g.If Flow is 56,BAT=23                                                                                                                                          Symbols Some special characters will be representing the alphabets or numbers. Trick: I)identify the repeating letters and symbols in a word. II)Identify the repeating letters in different words. Remember, The letter sequence and symbol sequence need not be the same. e.g.if FOOD is written as '$*@*',DOOR =? Here,* is repeating so, O=*, D=$/@. Here comes the need for options. Go to Option and check if anyone Contains a strange symbol,$/@ and * Good Luck!

Huffman Code in electronics

Here is the theory of Huffman Coding scheme used for decoding and encoding of data.

Programming With C

Complete notes on C language with easily understandable writing technique

Computer Graphics-Bresenham’s Line Algorithm

Here we learn about some of the concepts of Computer Graphics : Bresenham’s Line Algorithm A highly efficient incremental method for scan converting lines. Using only incremental integer calculation. DDA works with floating point arithmetic Rounding to integers necessary Bresenham’s algorithm uses integer arithmetic Constants need to be computed only once

Finite Automata In Theory Of Computation

This PDF contains Knowledge about Finite Automata and Type of Finite Automata . Also It define everything about finite automata use in theory of computation .

Classification Of Grammars In Theory Of Computation

This pdf tells about the type of grammars used in theory of computations. Also what is grammar and how it is used in computations.

Context Free Grammar in TOC

This PDF is all about the Context Free Grammar used in Theory Of Computations . This PDF explains everything about the Context Free Grammar with Solved Example .

Pushdown Automata In TOC

This PDF contains evrything about the Push Down Automata . PushDown Automata is a TEchnique used in Theory Of Computation.

Deciability in Theory Of Computation

This PDF contains some extra topics used in Theory Of Computation. These Extra topics like Deciability , and other algorithms used in Theory Of Computations.

Java: array lists

this file will give you the basic way of using arrays in java. it includes how to declare it , how to use it, how to access it, and all the basics you need to know about array lists to use in java. do refer to this and enjoy learning

Dictionary In Python Notes

This PDF is about Dictionary in Python.Dictionary is used to store data in python. This is for beginner who want to learn Python from Scratch.

Operators and Function python

This PDF is about operators in Python.Operators used for data comparison. This is for beginner who want to learn Python from Scratch.