Posts

One Year B.ed Syllabus Course No. : Ed. 412 (Philosophical and Sociological Foundations of Education )

Course title: Philosophical and Sociological Foundations of Education Course No. : Ed. 412 Full marks: 100 Nature of course: Theory Pass marks: 35 Level: B. Ed. Four Year Periods per week: 6 Year: First Total periods: 150 Time per period: 55 minutes 1. Course Description This is a core course of B. Ed. It intends to acquaint the students with the fundamental knowledge of education, innovations in teaching, school and society, education and social policy and education and philosophy. Moreover, it provides information regarding development of education in Nepal, the major recommendations of the education commissions and contributions of programmes to shape the education system in Nepal. 2. General Objectives The general objectives of this course are as follows: · To provide the students with deeper and broader understanding of fundamentals of education and teaching. · To provide the students with in-depth knowledge on different schools of philosophy. · To devel

Syllabus of Nepal Airlines( NEW)

Senior IT Technician Nepal Airlines Corporation Syllabus of Senior Information Technology (IT) Technician (Grade– V) Open Competition A. Stages and Procedure of Examination System B. Material Contents 1.Computer Concept 30 Marks 1.1 Computer:- Definition, History, Generation, Characteristics, Types & Applications. 1.2 Overview of a computer system:- 1.2.1 Data and Data processing 1.2.2 Hardware 1.2.2.1 Introduction to Hardware 1.2.2.2 Input Device:- Keyboard, Mouse, Scanner, etc 1.2.2.3 CPU:- Arithmetic Logic Unit (ALU), Control Unit (CU), Memory Unit (MU) 1.2.2.4 Output Device:- Monitor, Printer, etc 1.2.2.5 Storage devices:- Primary & Auxiliary Memory (Floppy Disk, Hard Disk, Compact Disk, DVD, Flash Disk etc.) 1.2.2.6 Network card, Modem, Sound card, etc. 1.2.3 Software 1.2.3.1 Definition & Types of Software 1.2.3.2 Programming Language 1.2.4 Live ware 1.2.5 Firmware and Cache Memory 1.3 Setting & Protection of Computer Room and Computer 1.

9 class related QBASIC programs with solutions

d) Program to print 5 Number in Ascending Order                                 Dim n(5)                 for i = 1 to 5                 input "Enter any five number"; n(i)                 next i                 for i = 1 to 5                 for j = 1 to 5-1                 if n(J)>n(j+1) then swap n(j),n(j+1)                 next j                 next i                 print "the number in ascending order"                 for i = 1 to 5                 print n(i);                 next i                 end E)To find the factorial of given number . CLS INPUT "Enter any number"; n f = 1 FOR i = 1 TO n     f = f * i NEXT i PRINT "The factorial of input number is"; f END F ) WAP to enter any three numbers and display the greatest one.                                                 CLS                 INPUT “ENTER ANY THREE NUMBERS”; A, B, C                 IF A > B AND A > C THEN