Posts

Showing posts with the label Saurashtra University

BCA Semester 4 Networking Full Form Part 2

SAURASHTRA UNIVERSITY NETWORKING FULL FORM BCA SEMESTER-4 RTP :- Rowing Information  Protocol LSL  :- Link Support layer NETBIOS :- Network Basic Input / Output System L2CAP  :- Logical Link Control and Adaptation Layer Protocol RFCOMM :- Radio Frequency Communication RTP :- Rooting Information Protocol OSPF :- Open System Path First BGP:- Border Gateway Protocol IGRP :- Interior Gateway Routing Protocol EIGRP :- Enhanced Interior Gateway Protocol IS-IS :- Intermediate System  - Intermediate System CIDR  :- Class Inter Domain Routing ISP :- Internet Service Provider CIA :- Confidentiality  Integrity  Availability DOS:-  Domical of Services MMC:- Microsoft Management Console LOAP :- Lightweight Directory Access protocol IFTF :- Internet Engineering Task Force PSTN :-Public Switched Telephone Network ISDN :- Integrated Service Digital Network BRI :-  Basic Rate Interface PRI :- Primary Rate Interface VPN :- Virtual Private Network DMVPN :- Dynamic Mu

BCA Semester 4 Networking Full Form Part 1

SAURASHTRA UNIVERSITY NETWORKING FULL FORM BCA SEMESTER-4 LAN :-   Local Area Network MAN :- Metropolis Area Network WAN   :- Wide Area   Network MBPS :- Mega Bits   Per Second GBPS :- Giga bits Per second CSMA/CD:- Carrier Sense Multiple Access /Collision Detection CSMA/CA :-Carrier Sense Multiple Access/Collision Avoidance FDDI :- Fiber Distribute data Interface CDDI:- Copper Distribute Data   Interface STP :- Shielded Twisted Pair UTP:- Unshielded Twisted Pair OSI :- Open System Inter Face TP-PMD :- Twisted- Pair Physical Media Development TP-DDI :- Twisted- Distributed Data Interface MAV :- Multi Station Access Unite ISO:- International stander Organization MAC :- Media access Control LLC :- Logical Link Control TCP/IP :- Transmission Control   Internet Protocol DOD:- Department Of   Defiance IP :- Internet Protocol HTTP:- Hyper Text Transfer Protocol SSL:- Secure Sockets Layer SMTP:- Simple Mail Transfer Protocol MIME:- Multi Purpose   Internet

Sorting and Searching Programs in Python

SORTING Bubble Sort: def bubble_sort(nums):     # We set swapped to True so the loop looks runs at least once     swapped = True     while swapped:         swapped = False         for i in range(len(nums) - 1):             if nums[i] > nums[i + 1]:                 # Swap the elements                 nums[i], nums[i + 1] = nums[i + 1], nums[i]                 # Set the flag to True so we'll loop again                 swapped = True # Verify it works # nums = [5, 2, 1, 8, 4] nums = input('Enter the list of numbers: ').split() nums = [int(x) for x in nums] bubble_sort(nums) print("List Sorted using Bubble Sort") print(nums) Output: Enter the list of numbers: 5 23 3 65 74 55 List Sorted using Bubble Sort [3, 5, 23, 55, 65, 74] Selection Sort: def selection_sort(nums):     # This value of i corresponds to how many values were sorted     for i in range(len(nums)):         # We assume that the first item of th

Saurashtra University M Sc IT Semester 3 Paper of Programming with R 2017

Image
Saurashtra University  M Sc IT Semester 3  Programming with R 2017

Saurashtra University M Sc IT Semester 3 Paper of Hybrid Mobile Application 2017

Image
Saurashtra University  M Sc IT Semester 3  Hybrid Mobile Application 2017

Saurashtra University M Sc IT Semester 3 Paper of Django 2017

Image
Saurashtra University M Sc IT Semester 3  Django 2017

Python Programming Question Bank

Python Programming Question Bank 1.            Explain the Data Types available in Python. 2.            Explain Looping statements in Python. Give examples of while and for loop. 3.            Explain the use of Global and Non-Local variables with example. 4.            Explain Scoping for local variable in python. 5.            Differentiate List and Tuple. 6.            Explain Slicing of strings in python using examples. 7.            Explain List in Python. 8.            Explain Tuples in Python with example. 9.            Explain Dictionary in Python with example. 10.       What is the difference between = = and is operator in Python? 11.       Explain branching and iteration operation in python with example. 12.       What is Specifications? Explain docstring in python. 13.       What is function? Explain default argument using suitable example. 14.       What is module? Discuss various ways to use module in a python program. 15.       What is