Skip to main content

Posts

ENGLISH MAIN POINTS

IMPORTANT NOTICE I AM ENLISTING THE KEY POINTS BELOW WHICH YOU ALL MUST KEEP IN MIND WHILE ATTEMPTING THE ENGLISH PAPER. Write the N ame of the Story/Poem/Essay and Author/Poet. {Marks-2} Underline the main words/keywords in your answer. {Marks-2} And in the make sentences section, write only the one you know the best.  Never Over attempt any question in optional section. And if You know more than this which could be useful for all of us then plz comment here or email me at bcahubsd@gmail.com

IMPORTANT QUESTIONS(CS)

IMPORTANT QUESTIONS In this post, I have listed the  important questions for the Computer Science exam(2nd Semester). There are total 62 questions which covers all the chapters i.e  C-BASICS Operators&Expressions Decision making and branching Loop Control Functions Arrays Structures and Unions File Handling  .                         

HISTORY AND CULTURE OF PUNJAB ( BCA 1st SEMESTER )

HISTORY AND CULTURE OF PUNJAB FROM THE EARLIEST TIMES TO 1849 UNIT I  1. Harappan Civilization: extent and town planning; socio-economic life.   2. Vedic    Age: socio-economic life; development of caste; position of women.   3. Religion: Vedic religion; impact of Buddhism and Jainism on the region.    UNIT II 4. Society and Culture c. 1000 A.D.: Socio-economic life; religious life; education 5. Cultural Reorientation: main features of Bhakti; origin and development of    Sufism  6.Society and Culture c. 1500A.D: socio-economic life under the Lodhis; religious  beliefs and practices- Vaisnavism, Shaivism, Shaktism, Islam.    UNIT III  7. Sikhism: New ideology of Guru Nanak; evolution of Sikh community guruship,manji,Masand; new institutions-gurdwara, Sangat-Pangat. 8. Transformation of Sikhism: martyrdom of Guru Arjan; martyrdom of Guru Tegh Bahadur; impact.  9. Institution ...

BUBBLESORT

Q1 :  Write a C program for BubbleSort ? #include<conio.h>                                         #include<stdio.h>                                          void main()                                                     {                                                                      int i,j,n,tmp,a[20];                                          ...

MATRIX

Q1 :  Write a C program to print a " Matrix" as an output by using arrays? #include<conio.h>                                                   #include<stdio.h>                                                    void main()                                                               {                                                                               int a...

FIBONACCI SEQUENCE

Q1 :  Write a C program to print " Fibonacci Sequence " as an output? #include<conio.h>     #include<stdio.h>      void main()                 {                                  //fibonacci series        int a=0,b=1,i,c=0;       clrscr();                       for(i=1;i<=10;i++)       {                                 printf("%d\t",c);          a=b;                           b=c;                           c=a+b;                 ...

SWAPPING OF VALUES C CODE

Q1 : Write a C program to " interchange" values without using third                     variable?  #include<conio.h>                       #include<stdio.h>                        void main()                                  {                                                   clrscr();                                        //interchange number                  int a=4;                   ...

BIGGER NUMBER

 Q1 :  Write a C program to print "Bigger number"  out of the three?   Using nested if:  #include<conio.h>                       #include<stdio.h>                        void main()                                   {                                                   //bigger number                           int a=20,b=405,c=78;                  clrscr();                                       ...