Friday 18 November 2016

Hut Using HTML

Hut Using HTML

HTML 5 supports graphics by Canvas and SVG.

Canvas

Canvas is a rectangular area specified by height and width where you can make drying using line,circle and many more . Following example create a hut using HTML canvas and line.

Hut Using HTML


<html>
<head>
<title>Graphics HTML : Girfa </title>

</head>

Monday 14 November 2016

Input Output Question Practice C Language

Q 1. Print a character with ASCII code using printf function?
Q 2. Try to string input with space using %s?
Q 3. Write down short notes with example on following function
Fclose
Puts
Gets
Fprintf
Scanf

Saturday 12 November 2016

For Loop in Python

for letter in 'Girfa':     # First Example

While loop in Python

count=1
while count <= 5:
    print count

While loop in Python

count=1
while count <= 5:
    print count

Switch Case in Python

Python does not support switch case direct but you can implement it by using else-if as in following manner

print "Enter day of the week  number>> "
a=int(raw_input())

if(a==1):
    print("Mon")
elif(a==2):
    print("Tue")
elif(a==3):
    print("Wed")
elif(a==4):
    print("Thu")
elif(a==5):

Switch Case in Python

Python does not support switch case direct but you can implement it by using else-if as in following manner

print "Enter day of the week  number>> "
a=int(raw_input())

if(a==1):
    print("Mon")
elif(a==2):
    print("Tue")
elif(a==3):
    print("Wed")
elif(a==4):
    print("Thu")
elif(a==5):

Nested If Statement in Python

print "Enter first number>> "
a=int(raw_input())
print "Enter Second number>> "
b=int(raw_input())
print "Enter Third number>> "
c=int(raw_input())
if(a>b):
    if(a>c):
            print "First number is Greatest "
    else:
            print "Third number is Greatest "

Nested If Statement in Python

print "Enter first number>> "
a=int(raw_input())
print "Enter Second number>> "
b=int(raw_input())
print "Enter Third number>> "
c=int(raw_input())
if(a>b):
    if(a>c):
            print "First number is Greatest "
    else:
            print "Third number is Greatest "

If Statement in Python

print("Enter your age")
age=int(raw_input())
if age>18:
    print("\nEligible for vote")

Logical or operator Python

print("Enter a character")
ch=raw_input()
if ch=="a" or ch=="e" or ch=="i" or ch=="o" or ch=="u" or ch=="A" or ch=="E" or ch=="I" or ch=="O" or ch=="U" :
    print("\n\tVowel")

Logical or operator Python

print("Enter a character")
ch=raw_input()
if ch=="a" or ch=="e" or ch=="i" or ch=="o" or ch=="u" or ch=="A" or ch=="E" or ch=="I" or ch=="O" or ch=="U" :
    print("\n\tVowel")

Logical and operator Python

print "Eligibility Check Program"
print("Enter your age>> ")
age=int(raw_input())
print "Enter Hieght"
h=int(raw_input())
print "Enter Percentage"
p=float(raw_input())
if(age>18 and h>5 and p>55.55):

Logical and operator Python

print "Eligibility Check Program"
print("Enter your age>> ")
age=int(raw_input())
print "Enter Hieght"
h=int(raw_input())
print "Enter Percentage"
p=float(raw_input())
if(age>18 and h>5 and p>55.55):

Input Output Python

# Store input numbers
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')

# Add two numbers
sum = float(num1) + float(num2)

Thursday 10 November 2016

Assignment : DATA COMMUNICATION AND NETWORK TECHNOLOGIES

Assignment 1.


What is the load on simple ALOHA system in packet/sec, with a data rate of 9600 bps,
packet size of 804 bits and G=0.75

{Where G is total rate of data presented to network for transmission or simply offered load}

Assignment : DATA COMMUNICATION AND NETWORK TECHNOLOGIES

Assignment 1.


What is the load on simple ALOHA system in packet/sec, with a data rate of 9600 bps,
packet size of 804 bits and G=0.75

{Where G is total rate of data presented to network for transmission or simply offered load}

Passing Array to Java Script Function

You can an array to JavaScript function as an argument. In side of function you can handle this argument in any other programming language. Take a look on following example : 

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Array to Java Script Function : Girfa</title>
<script language="javascript">
     function ardemo(ar)
     {
          
           for(i=0;i<ar.length;i++)
                document.write("[" +ar[i] + "] ");
          
          
     }
</script>
</head>

Wednesday 9 November 2016

Syllabus Data Communication and Network Technologies

Outline of Course


Sr No.
Topic
Minimum No. of Hour
1
Data Communications
06
2
Communication Network Fundamentals
08
3
Media Access Control
06
4
Networking Components
06
5
Link Control and MAC Protocols
05
6
Local Area Networks (LAN)
05
7
Wide Area Networks (WAN)
08
8
Application Protocols
08
9
Wireless Networks
03
10
Security and Management
05
Lectures
60
Practical/tutorials
60
Total
120

A9-R4: DATA COMMUNICATION AND NETWORK TECHNOLOGIES


Objective of the Course

This course will allow students to develop background knowledge as well as core expertise in data communication and networking (DCN) technologies, which is one of the fastest growing industries in today’s world. It forms an integral part of the modern Information and Communications Technology (ICT) in any organizations. Starting from intranet/extranet in small offices to the World Wide Web, principles of DCN play an important role in designing any modern telecom infrastructure.

A major ramification of the fantastic growth of telecommunications and networking is a dramatic increase in the number of professions, where an understanding of DCN is essential for success. Today, students wanting to understand the concepts and mechanisms underlying DCN infrastructures come from a variety of academic and professional backgrounds. Hence, to be useful, a course on DCN infrastructures must be accessible to students without technical backgrounds while still providing technical material comprehensive enough to challenge more experienced readers. This course is designed with this new mix of students in mind.