September 17, 2014

what is protocol ?

Protocols are rules that govern how devices communicate and share 
information across a network. Examples of protocols include: 
• IP – Internet Protocol 
• HTTP - Hyper Text Transfer Protocol 
• SMTP – Simple Mail Transfer Protocol 


Multiple protocols often work together to facilitate end-to-end network 
communication, forming protocol suites or stacks. 

 

September 16, 2014

What Is Network ?

What Is Network ?

A network is simply defined as something that connects things together for
a specific purpose. The term network is used in a variety of contexts,
including telephone, television, computer, or even people networks.
A computer network connects two or more devices together to share a
nearly limitless range of information and services, including:
• Documents
• Email and messaging
• Websites
• Databases
• Music
• Printers and faxes
• Telephony and videoconferencing





September 12, 2014

.NET vs JAVA

Java table



JAVA:

“Java” refers to a set of programs and standards originally created by Sun Microsystems, and now owned by Oracle

.NET

The Microsoft .NET Framework is a software framework for developing and executing applications on Windows client and server operating systems. It provides features and functionality that are designed specifically for creating and running applications on the Windows platform, but also supports connectivity with non-Windows systems.



Which is better for future? 

No one can predict the future in the technology domain; because things change here every single minute. As a software engineer / developer - you should *not* stick to any specific language; yet master one that you are currently working on. Let me make it very clear  - You need to be master of at least one and jack of several!  If you have concept of basic progrmmaing language; you should be able to get comfortable with any programming language, tool or framework within short time.

Start with any - and learn it with all the interest and try to be excellent. If you pick up .NET; don't hate Java and vice-versa. If your current job demands C# and ASP; learn it. If you are just starting out with a big IT company that has not told you which profile they will assign to you; it just doesn't matter.Company seeks engineers who are smart learner and can switch to any technology any time.

September 10, 2014

Need of Website


  1. Websites Are Not Just Local, They Are Global.
  2. Websites Never Sleep.  
  3. Your small business will gain credibility.
  4. It will enable you to keep your customer informed.
  5. Websites Help Establish More Customers. 
  6. Websites Improve Customer Confidence & Corporate Image.
  7. It improves customer service.
  8. A website saves your time.
  9. A website makes it possible to target a wider market.
  10. A website saves your money.

September 9, 2014

Difference between C and C++

1. C follows the procedural programming paradigm while C++ is a multi-paradigm language(procedural as well as object oriented)

2. C is a low-level language while C++ is a middle-level language (Relatively, Please see the discussion at the end of the post)

3. In case of C, the data is not secured while the data is secured(hidden) in C++

4. C++ allows the use of reference variables while C does not

5. The standard input & output functions differ in the two languages

6. We can use functions inside structures in C++ but not in C.

7. The NAMESPACE feature in C++ is absent in case of C

8. C++ supports function overloading while C does not

9. C is function-driven while C++ is object-driven

10. C uses the top-down approach while C++ uses the bottom-up approach