Wednesday, 11 March 2015

DNG Walks Down The Aisle.. Here are The Wedding PHOTOS

Four months after proposing and paying dowry to the family of his beloved girlfriend Yvette Nungari, One FM’s Breakfast presenter DNG has finally crossed over to the marriage life after officially tying the knot this past Saturday. The wedding ceremony was a celebrity chromed affair that also saw most of the couples close relatives and friends show up to witness the beautifully organised marriage ceremony at Mount Kenya Safari Club.
Shimmering with all glitz and glamour, style and swag, here are some lovely photos of the unbreakable unison of the long time lovers. Meet Mr. and Mrs. DNG.
DNG, Yvette Nungari 1
DNG, Yvette Nungari 2
DNG, Yvette Nungari 3
DNG, Yvette Nungari 4
DNG, Yvette Nungari 5

Sunday, 28 December 2014

Bill Gates: People Don't Realize How Many Jobs Will Soon Be Replaced By Software Bots http://www.businessinsider.com/bill-gates-bots- are-taking-away-jobs-2014-3

Wednesday, 28 May 2014

C# is an object-oriented programming language. In Object-Oriented Programming methodology, a program consists of various objects that interact with each other by means of actions. The actions that an object may take are called methods. Objects of the same kind are said to have the same type or, more often, are said to be in the same class.
For example, let us consider a Rectangle object. It has attributes like length and width. Depending upon the design, it may need ways for accepting the values of these attributes, calculating area and display details.
Let us look at an implementation of a Rectangle class and discuss C# basic syntax, on the basis of our observations in it:
using System;
namespace RectangleApplication
{
    class Rectangle
    {
        // member variables
        double length;
        double width;
        public void Acceptdetails()
        {
            length = 4.5;    
            width = 3.5;
        }
        public double GetArea()
        {
            return length * width;
        }
        public void Display()
        {
            Console.WriteLine("Length: {0}", length);
            Console.WriteLine("Width: {0}", width);
            Console.WriteLine("Area: {0}", GetArea());
        }
    }
    
    class ExecuteRectangle
    {
        static void Main(string[] args)http://www.tutorialspoint.com/csharp/csharp_basic_syntax.htm
        {
            Rectangle r = new Rectangle();
            r.Acceptdetails();
            r.Display();
            Console.ReadLine();
        }
    }
}