What Is Repeater?

Posted by Unknown
 Repeater:-

  repeater is an electronicdevice that receives a signal and Rtransmit it at a higher level or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances.


Read More

what is Bridge?

Posted by Unknown
Bridge:-

A bridge is used to join two network segments together; it allows computers on either segment to access resources on the other. They can also be used to divide large networks into smaller segments. Bridges have all the features of repeaters, but can have more nodes, and since the network is divided, there is fewer computers competing for resources on each segment thus improving network performance.

              

Read More

What is Router?

Posted by Unknown
 Router:-

      A router is a device that forwards data packetsbetween computer networks, creating an overlay internet work. A router is connected to two or more data lines from different networks.



Read More

what is Gateway?

Posted by Unknown
GATEWAY: 

n   computer networking, a gateway is a node (a router) on a TCP/IP network that serves as an access point to another network. A default gateway is the node on the computer network that the network software uses when an IP address does not match any other routes in the routing table.


Ø   

Read More

What is Delegates?

Posted by Unknown

Delegate is a type Safe Object that can point to another  method(or possibly multiple method) in the application , Which can be invoked at later time.



  Delegate act as an intermediary between an event source and an event  destination.
  A delegate in C# is similar to a function pointer in c or c++.

  There are Two Type of  delegate.


  1. Single cast Delegate
  2. Multi cast Delegate                                   
  A Single Cast Delegate Can call only one function.

  A Multi Cast Delegate Can call more than  one function.

  Delegate are used to pass method as-argument to other methods that are invoked through delegates.

  “Once a delegate is assigned a method , it behave exactly like that method. The delegate method can be used like any .Other  method , which parameter and a return value.”

  Delegate type maintains Three important Information.

  The name of the method on which it make calls.

  Any argument(if any)of this method.

  The Return value(if any)of this method.

  Function pointer using Delegate.

  Delegate wrap a method.calling delegate result in calling the method.

  Delegate is a type of object very similar to classes.

  Delegate gives a name to a method signature.

  Declaration Of delegate


public delegate intSumPtr(intx,int y);

       Method of delegate.

int  Add(intx,int y)
          {
returnx+y;
                }
use a delegate to call this method.
SumPtrsPtr= new Sumptr(Add);
Console.WriteLine(sPtr(34,6));


  Example Of Delegate

Using System;
Namespace Akadia.BasicDelegate
{
public delegate void simpledelegate();   //Declaration
classTestDelegate
    {
                public static void MyFunc()
        {
                Console.WriteLine(“I was called by delegate”);
}
Public static void main()
{
                SimpleDelegateSimpleDelegate=new  SimpleDelegate(MyFunc);   //Instantiation
                SimpleDelegate();     //Invocation
}


Read More

How To Start Successful Bussiness

Posted by Unknown

10 Tips for a Start New Strong Bussiness


.
  1. 1. Offer what people want to buy, not just what you want to sell.
  2. 2. Get cash flowing ASAP.
  3. 3. Always find new ways to keep costs low.
  4. 4. When planning, always overestimate expenses and underestimate revenues.
  5. 5. Focus on sales and marketing manically.
  6. 6. Find ways to exponentially increase profits.
  7. 7. Test and measure everything. .
  8. 8. Accept that learning more equals earning more.
  9. 9. Don't discount, add value.
  10. 10. Get a coach. 
Read More