what is Bridge?
Posted by Unknown in: Networking clubBridge:-
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.
what is Gateway?
Posted by Unknown in: Networking clubGATEWAY:
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.
Ø
What is Delegates?
Posted by Unknown in: Networking clubDelegate 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.
- Single cast Delegate
- 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
}
How To Start Successful Bussiness
Posted by Unknown in: Tech Tips10 Tips for a Start New Strong Bussiness
.
- 1. Offer what people want to buy, not just what you want to sell.
- 2. Get cash flowing ASAP.
- 3. Always find new ways to keep costs low.
- 4. When planning, always overestimate expenses and underestimate revenues.
- 5. Focus on sales and marketing manically.
- 6. Find ways to exponentially increase profits.
- 7. Test and measure everything. .
- 8. Accept that learning more equals earning more.
- 9. Don't discount, add value.
- 10. Get a coach.



