November 2015 ~ Kumaun University Nainital

13th Convocation of Kumaun University

Prof. H.S. Dhami and Governor of Uttrakhand Dr. K.K. Pal During 13th Convocation of Kumaun University on 21th of October 2016

19th International Conference of Physical Sciences

19th international conference of physical sciences and Symposium on fixed point theory and dynamical systems in DSB Campus Nainital

Arts Department of DSB Campus

Established in 1973, Kumaun University consists of three campuses at Almora , Nainital and Bhimtal. 35 affiliated government colleges spread across the Kumaun region.

View From top of the peak

Magnificent views can be obtain of the vast plain to the south, or of the mass of tangled ridges lying north, bounded by the great snowy range which forms the central axis of the Himalayas.

Saturday 21 November 2015

Kumaun University Nainital


Kumaun University and its Campus

Kumaun University Nainital hermitage

The Kumaun University was established in 1973, with UP Govt. KU has 3 campuses, D.S.B. Campus in Nainital, S.S.J Campus in Almora and M.S.J. Campus, the third and the newly made campus is in Bhimtal. These are three campuses so far in Kumaun University. 

DSB campus  kumaun university nainital
D.S.B. Campus Nainital
 
SSJ campus Almora Kumaun University
S.S.J. Campus Almora

There are about 27 affiliated colleges under it, the Kumaun University has a total control over the universities in entire Kumaun region. The total area covered by the university so far is about 200 acres. The beautifully designed colleges blend in perfectly with the surrounding architecture and complete the breath taking scenery. In order to cater for the technical, professional and vocational education special emphasis is placed on Kumaun to uphold the motto of excellent teaching and high quality research.

In the residential and affiliated campuses, both teaching and research activities are equally important factors that support the curriculum and contribute to the student’s learning habits. The location of the university in Uttrakhand offers excellent research and teaching due to its landscape which is on undulating high ground. There are many herbs and plants that can be studied as well as rocks, minerals and Eco-systems. The university is known for its research and teachings in Environmental Geology, Establishment of Particle Physics and Environmental Economics as well as boasting several centers that offer interesting research. Furthermore it continues to raise awareness regarding a variety of topics including economic resources, medicinal plants, environment, development of tribes, human rights and symmetries and conservation. Academic programme have been divided in Campuses to ensure equal regional representation and development.

Departments
 
•    Arts
•    Commerce
•    Science
•    Law
•    Education
•    Engineering
•    Technical studies


Facilities Available in Kumaun University

Computer Departments and Labs
- At SSJ Campus a well-equipped computer lab has been established. At DSB campus also the Computer Science Department has a well-equipped computer laboratory. The aim is to devise and undertake short term courses on computer literacy program for postgraduate students of the Department. These programs include teaching of Computer Fundamentals, Programming Languages, Computer Architecture and mathematical software like MATLAB and MATHEMATICA, and handling of scientific word processor like LATEX.

IPSDR - Institute Of Professional Studies And Development Research is an autonomous unit of Kumaun University, Nainital. It is located at the Hermitage in Lower Sleepy Hollow, away from the hubbub's of main campus and the town. A different professional environment has been provided to the students of the Institute, here. The prime objective of IPSDR is to take care of un-employability in higher education, develop the human capital, and contribute its bit to the greater cause of development. IPSDR, therefore, proposes to offer specifically designed courses at all the levels in higher education, i.e., add on certificate courses ,advanced PG diploma programs and post graduate degree programs. Moving in the same direction, the Microsoft IT Academy at the Hermitage has also become a unit of IPSDR. It is surely going to widen the horizons both ways. Along with other degrees now courses on Microsoft certified technologies shall also be offered.

Centre for Journalism & Media Studies - The Center for Journalism & Media Studies was launched in 2006-07 with quite modest infrastructural resources. The aim here is to act dynamically to redefine the contemporary culture and society by grappling with issues that concern us most, and not merely problematize some half-real, half-imaginary theoretical entertainers of the intellect as happens with most academic pursuits. It also nurtures a distinct breed of young Indians who are passionate about their country, culture, society and vocation.

Central Library - It is situated in an expanded building near the administrative building. The library has high quality reference books related to curriculum, research and national, international level research and magazines.

Placement - Considering the previous positions of placements, it can safely be inferred that the students of IPSDR are in high demand in the market ,with previous batches placed with ICICI bank, Priya gold, IndusInd Bank, GlenMark Pharmaceuticals, Jagsonpal Pharmaceuticals, CPM Card, Air Expo Cargo, Jyoti lab ,Bajaj Allianz etc, to name a few. Some students of the current batch have got placements in some of the renowned companies like HUL, Wipro, HCL and ICICI and also in some institutes even before the completion of the course.


Kumaun University

City  : Nainital, Uttarakhand

Phone  : +91-05942-235563, 235562
Email  : registrar@kuntl.in, registrarnainital@gmail.com

Monday 2 November 2015

Kumaun University B.Sc. III year Computer Science 'JAVA' question paper 2010

Kumaun University, Nainital
Previous year paper of computer science Java in kumaun university
 
B.Sc. III Examinations, 2010
Computer Science
Paper  - Third
(Programming Language - Java)


 

Section – A
 

1. The java compiler translates java programs to intermediate level language called :
a)    Machine language
b)    Bytecode
c)    System Language
d)    Object language

2. Which of the following property allows objects to have different internal structures to share the same external interface ?
a)    Abstraction
b)    Polymorphism
c)    Encapsulation
d)    Inheritance

3. The ……………..  is a collection of programs to help the developers compile, run and debug the source program of java.
a)    JVM
b)    IDE
c)    JDK
d)    Java software

4. Which of the following return type does a constructor have ?
a)    Void
b)    int
c)    Boolen
d)    No data type


5. What is the result of S and a, ager evaluating the expression :

int a=5;
int S =++a + a++;


6. Will program compile successfully if the main method is declared as private?

7. Write the range of acceptable values of int and char in Java.

8. Name the character set of Java that includes the characters from all possible human languages.




Section – B

9. What is overriding and overloading ? Explain with example. Use Java code for explanation

10. State the significance of public, private, protected, default modifiers both singly and in combination and state the effect of package relationships on declared items qualified by these modifiers.


11. [a] What is the difference between a constructor and a method ?


[b] What is the difference between an Abstract class and Interface ? And can you explain when you are using an Abstract classes ?




 

Section – C

12. [a] Write Java code to implement a class Point. It should have a function name display that will display the information in which quadrant the pint lies in ?


[b] What is the Java Virtual Machine? Explain working of JVM.


 

13. What do you mean by inheritance? Name the types of inheritance in Java and explain any two of them in detail.

14. Explain garbage collection ? How you can force the garbage collection in Java?

15. [a]Assuming the following code is written inside main().
   

What is the output of following :
String s1=new String(“Amit”);
System.out.println(s1.replace(‘m’, ‘r’));
System.out.println(s1);
String s3=”Arit”;
String s4=”Arit”;
String s2=s1.replace(‘m’ , ’r’);
System.out.println(s2==s3);
Sytem.out.println(s3==s4)
(i)  Arit
     Amit
     false
     true

(ii) Arit
     Arit
     False
     True


(iii) Amit
      Amit
      False
      True


(iv) Arit
      Amit
      True
      True


[b] Write short note, in context of Java, on Constructor overloading.





To Download Previous Year Paper of B.Sc. Computer Science Click this link




You can like our Facebook Page :
http://www.facebook.com/KumaunUniversityNtl

Kumaun University B.Sc. III year Computer Science 'Networking' question paper 2010

Kumaun University, Nainital 
Previous year paper of computer science computer Networks in kumaun university
 
B.Sc. III Examination, 2010
Computer Science
Paper  - Second
(Computer Networks)

Section - A

i.    Which processes does TCP, but not UDP, use?

a)     Windowing
b)     Acknowledgements
c)     Source Port
d)     Destination Port


ii.    Internet is :

a)    A local computer network
b)    A world wide network of computers
c)    An interconnected network of computers
d)    A world wide interconnected network of computers which use a common protocol to communicate with one another.


iii.    Select Internet uses :

a)    Packet switching
b)    Circuit switching
c)    Telephone switching
d)    Telex switching


iv.    By an interanet we mean:

a)    A LAN of an organization
b)    A Wide Area Network connecting all branches of an organization
c)    A corporate computer network
d)    A network connecting all computers of an organization and using the internet protocol


v.    Which of the following protocols is used in the internet :

a)    X.25
b)    IBM
c)    TCP/IP
d)    UUCP


vi.    Need to retrieve a file from the file server for your word processing application, which layer of the OSI model is responsible for this function ?

a)    Presentation layer
b)    Session layer
c)    Transport layer
d)    Datalink layer


vii.    IP addresses are converted to :

a)    A binary string
b)    Alphanumeric string
c)    A hierarchy of domain names
d)    A hexadecimal string



Section - B

1.    What are the important topologies for networks?

2.    Explain various layers and their functions in OSI/ISO reference model.

3.    What is a computer network? explain its uses.

4.    Write a note on IEEE 802.3 standard.




Section – C

1.    Write short notes on TCP/IP, X.25 Protocol.

2.    Explain different types of errors and any two schemes used for error detection and correction. Also explain how error rate is measured.

3.    What is IP address? Explain.

4.    Explain the concept of switching in Data Transmission.




To Download Previous Year Paper of B.Sc. Computer Science Click this link

You can like our Facebook Page :
http://www.facebook.com/KumaunUniversityNtl