Sunday, 28 February 2016

Importance of Training

What is traning? Training focuses on specific job knowledge and skill that is to be applied in the short run.  Development focuses on broad knowledge and insights that may be required for adaptation to environmental demands in the future. IMPORTANCE OF TRAINING..... Respond to technology...

DDA LINE ALGORITHM

DDA Line ( X1, Y1, XN, YN): Description: Here X1 and Y1 denote the starting x – coordinate and y – coordinate of the line and XN and YN denote the ending x – coordinate and y – coordinate. 1. Set M = (YN – Y1) / (XN – X1) [Calculate slope of line] 2. Repeat For I = X1 to XN 3. If (M <= 1) Then 4....

Thursday, 25 February 2016

Wednesday, 24 February 2016

Eye In Sky Weather

Eye In Sky Weather Eye In Sky Weather is for those who like their weather clean, simple and beautiful. The app includes 14 of the best weather icon sets available, with the ability to add your...

Monday, 22 February 2016

AccuWeather

AccuWeather This free app features the new AccuWeather MinuteCast®, the leading minute-by-minute precipitation forecast, hyper-localized to your exact street address. AccuWeather offers the same...

Swap Internal storage with the SD card in Android

First: You need to rooted phone for this process, if your phone is not rooted then first of all root your phone. . Second:Install WSM Tools and XInternalSD apps on your phone, then open the WSM Tools.you will get a popup tab from Su app for giving root permission to WSM Tools app, now tap on the...

BRESENHAM’S LINE ALGORITHM

BRESENHAM’S LINE ALGORITHM Bresenham Line ( X1, Y1, XN, YN): Description: Here X1 and Y1 denote the starting x – coordinate and y – coordinate of the line and XN and YN denote the ending x – coordinate and y – coordinate. 1. Set DX = XN – X1 and DY = YN – Y1 2. Set Di = 2DY - DX 3. Set DS = 2DY and...

Sunday, 21 February 2016

Frames in Coumper Networking

Frames Are The Small data Units Created By Data Link Layer And The Process Of Creating Frames By The Data Link Layer Is Known As Framing.                   Framing Method Implemented By Data Link Layer Are:- Character Count.  Starting & Ending...

BRESENHAM’S CIRCLE ALGORITHM

BRESENHAM’S CIRCLE ALGORITHM Bresenham Circle ( Xc, Yc, R): Description: Here Xc and Yc denote the x – coordinate and y – coordinate of the center of the circle. R is the radius. 1. Set X = 0 and Y = R 2. Set D = 3 – 2R 3. Repeat While (X < Y) 4. Call Draw Circle(Xc, Yc, X, Y) 5. Set X = X + 1 6....