Showing posts with label notes. Show all posts
Showing posts with label notes. Show all posts

Mid - semester 2 materials

Hi all,

Sorry for late post but came with good materials to refer for remaining two exams (specially for Semester 2)

Download UNIX MCQ's and Q&A's

Download Java MCQ's and Q&A's

Yesterday, my exam experience was very bad, i think exam was very tough... :(

How about yours???

See Similar Posts:



 

2nd Semester...

Hi friends, Second semester has started, so i wish you all the best...
Some students said Second semester is difficult than the first one and if you see the subjects of 2nd semester, you may or may not think like that(express your thinking through comments).

Second Semester syllabus
  • System Programming
  • Advanced Programming Techniques
  • Computer Organization & Architecture   
  • Data Structure & Algorithms
We will discuss one by one.

1) System Programming :
         It includes "UNIX commands and Shell scripting". UNIX commands are very simple. As like command prompt commands in Windows, there are some commands used in UNIX to perform some tasks.
But Shell scripting is some what difficult. For programmers it is interesting topic, because it includes programs that will be executed in UNIX platform and using this, you can create a "Shell" for UNIX (but have to work hard).

2) Advanced Programming :
       It includes advanced concepts of JAVA. For java people it will be very easy.

3) Computer Organization & Architecture :
     It includes topics like :- Computer architecture - CPU, Memory, I/O, CPU Scheduling, etc...
It will be very difficult if you miss the first lectures.

4) Data Structure & Algorithms :
     Algorithms are very very easy if you think in manner of solving a problem. It also includes topic Data Structure :- Stack, Queue, Linked List, Tree, Graphs, etc...
You should know the basic concept about data structure, once you got - Data structures will be like A B C D's...

All the best for the semester.

See Similar Posts:



Handwritten Notes for Discrete Mathematics and Digital Electronics - WASE Open Exam

Handwritten Notes for Discrete Mathematics and Digital Electronics specially for WASE Open Book exams.


Download:

DS Written Notes

Microprocessor Handwritten Programs


Download --> Print ---> Take ---> Copy it in exam... :D


See Similar Posts:



 

Maths - Linear Programming Problems Notes


Download  Linear Programming Problems Habd Written Notes.

Download





WASE - Microprocessor Programs


Microprocessor Programs
like :
Addition,
Subtraction,
Display Messaging,
Multiplication,
Division,
Square,
etc...

Click to Download

Click here for 8086 Assembly Language Programming


See Similar Posts:
-->

Wase I Semester Open Book Exam Model Papers

Here is the Model Question papers for the I Semester Open Book Exam.

Download









See Similar Posts:

 

Digital Electronics MCQ's


Digital Electronics MCQ's

Download Digital-Electronics-Microprocessors Objectives Questions.

Download File1
Download File2
Download File3

Mathematics 1 - MCQs


Mathematics 1 - MCQ's

MCQ's Mathematics 1 - Objective Questions

Download MCQ's file1
Download MCQ's file2




C Programming Language - MCQ's

MCQ's
C Programming Language - MCQ's

Download C Programming Language Objective Question :

C Programming MCQ's - 1
C Programming MCQ's - 2
C Programming MCQ's - 3
C Programming MCQ's - 4
C Programming QUIZ

Advanced Engineering Mathematics - Textbook


Advanced-Engineering-Mathematics Erwin Kreyszig


Advanced Engineering Mathematics textbook by Erwin Kreyszig (Tenth Edition)

Download

9th Edition 











-->

Problem Solving and Program Design in C - Text Book


problem solving and program design in c



Download Problem Solving and Program Design in C Text book


Download C TextBook











Computer Programming MCQ's

Objective Questions Computer Programming

1)What is the mean of type casting?                    Ch-7
a. Conversion of the Data item
b. Conversion of variables
c. fixed the value of Data item
d. none
Ans :a

2) A nibble corresponds to                             Ch-2
a. 4 bits
b. 8 bits
c. 16 bits
d. 32 bits
Ans : a

3) Which one is not logical operator?                  Ch-2
a. &   
b. &&
c. ||   
d. !
Ans : a

4) Which one Keyword used to calling function back again and again? Ch-4
a. switch
b. goto
c. go back
d. return
Ans: d

5) What will be the output of the following statement ?    Ch-2

printf("%X%x%ci%x",11,10,'s',12);
a) error
b) basc
c) Bas94c
d) none of these
Ans :b

6)What will be the output of printf("\\n");                Ch-2
a. \n
b. \\n
c. error
d. none
Ans : a

7)What is the result of 16>>2?                             Ch-7
a. 4
b. 8
c. 3
d. 0
Ans : a

8)What will be the output of following program          Ch-2
#include<stdio.h>
void main()
{
char letter =`Z`;
printf("\n%c",letter);
}

a. Z
b. 90
c. Error
d. Garbage Value
Ans :a

9) What will be the result of the following code?       Ch-5
#define TRUE 0
while(TRUE)
{
    printf(“Wipro-BITS”);
}
printf(“BITS PILANI”);
a.Wipro-BITS
b.Nothing will be printed
c.BITS
d.BITS PILANI
Ans : d
10) What will be the output of following program        Ch-2
main()
{
    int x=5;
    printf(“%d,%d,%d\n”,x,x< <2,x>>2);
}
a. 5,19,1
b. 5,20,1
c. 5,21,1
d. 5,20,1
Ans : b

11). What will be the output of the following arithmetic expression ? Ch-2

5+3*2%10-8*6

a) -37
b) -42
c) -32
d) -28
Ans : a

12). What will be the output of the following statement ?   Ch-2

int a=10; printf("%d &i",a,10);

a) error
b) 10
c) 10 10
d) none of these
Ans : d

13) What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?                 Ch-8
a. The element will be set to 0
b. The compiler would report an error
c. The program may crash if some important data gets overwritten
d. The array size would appropriately grow
Ans :c

14). What will be the output of the following statements ?         Ch-8

int x[4] = {1,2,3}; printf("%d %d %D",x[3],x[2],x[1]);

a) 03%D
b) 000
c) 032
d) 321
Ans : c

15) output ?
int testarray[3][2][2] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
What value does testarray[2][1][0] in the sample code above contain? Ch-8

a) 11
b) 7
c) 5
d) 9
Ans : a

16) What is the output of this program?                            Ch-2
main()
{int a=-3;a=-a-a+a;printf("%d",a);
}
a. error
b. compilation failed
c. 3
d. none
Ans : c

17) How many time while loop will executed?                       Ch-6
int main()
{
    int j=1;
    while(j <= 255)
    {
        printf("%c %d\n", j, j);
        j++;
    }
    return 0;
}

a. error   
b. 255 times
c. 200 times
d. 250 times
Ans : b

18)output ?
  int z,x=5,y=-10,a=4,b=2;                                       Ch-2
  z=x++  - --y*b;
a.5
b.6
c.10
d.11
Ans: c

19)output ?                                                       Ch-2
   int a=10,b;
   b=a++ + ++a;
   printf(“%d,%d,%d,%d”,b,a++,a,++a);
a.12,10,11,13
b.22,10,11,13
c.22,11,11,11
d.22,13,13,13
Ans : d

20) What will be output when you will execute following c code?    Ch-4
#include<stdio.h>
void main(){
    int a=5,b=10,c=1;
    if(a&&b>c){
         printf("cquestionbank");
    }
    else{
         break;
    }
}

a. cquestionbank
b. It will print nothing
c. Run time error
d. Compilation error
Ans : d

21)What is the output?                                             Ch-4

void main()
{
   int a=10,b=20;
   char x=1,y=0;
   if(a,b,x,y)
   {
      printf("EXAM");
   }
}

a. XAM is printed
b.  exam is printed
c. Compiler Error
d. Nothing is printed
Ans : d

22)What will be the output                                  Ch-8,9
#include<stdio.h>
int main()
{
char arr[7]=”Network”;
printf(“%s”,arr);
return 0;
}
a.Network
b.N
c.Garbage value
d.Compilation error
Ans : c

23)What will be output of the following program             Ch-2
#include<stdio.h>
main()
{
int i=5,j;
j=++i+++i+++I;
printf(“%d %d”,I,j);
return 0;
}
a.7 21
b.8 21
c.7 24
d.8 24
Ans : d

24)What will be output of following c program               Ch-2,7
#include<stdio.h>
main()
{
int class = 150;
int public =25;
int private=30;
class = class>>private-public;
printf(“%d”,class);
}
a)1
b)2
c)4
d)Compilation error
Ans : c

25)What will be  output of c code                            Ch-2,5
#include<stdio.h>
int main()
{
int i=2,j=2;
while(i+1?—i:j++)
printf(“%d”,i)
return 0;
}
a)1
b)2
c)3
d)4
Ans : a

26) What will be output when you will execute following c code?  Ch-4
#include<stdio.h>
void main(){
    int a=100;
    if(a>10)
         printf("M.S. Dhoni");
    else if(a>20)
         printf("M.E.K Hussey");
    else if(a>30)
           printf("A.B. de villiers");
}

a.M.S. Dhoni
b.A. B. de Villiers
c.M.S. Dhoni M.E.K Hussey A.B. de Villiers
d.Compilation Error
Ans : a


27) What will be output when you will execute following c code?  Ch-4
#include<stdio.h>
void main(){
    int a=5,b=10;
    if(++a||++b)
         printf("%d  %d",a,b);
    else
         printf("John Terry");
}

a.5 10
b.6 11
c.6 10
d.5 11
Ans : c

28) What will be output when you will execute following c code? Ch-4
#include<stdio.h>
void main(){
    int a=5,b=10;
    if(++a||++b)
         printf("%d  %d",a,b);
    else
         printf("John Terry");
}

a.It will print Memento at one time
b.It will print Memento at three times
c. It will print Memento at ten times
d.It will print Memento at infinite times
Ans : d

29) what will be output when you will execute following c code? Ch-4
#include<stdio.h>
void main(){
     int const X=0;
     switch(5/4/3){
        case X:  printf("Clinton");
                  break;
        case X+1:printf("Gandhi");
                  break;
        case X+2:printf("Gates");
                  break;
        default: printf("run time error");
     } 
}

a.Clinton
b.Gandhi
c.Gates
d.Compilation error
Ans : d

30) What will be output when you will execute following c code? Ch-4
#include<stdio.h>
void main(){
    switch(5||2|1){
        case 3&2:printf("Anatomy of a Murder");
              break;
        case -~11:printf("Planet of Apes");
               break;
        case 6-3<<2:printf("The conversation");
               break;
    case 5>=5:printf("Shaun of the Dead");
     } 
}

a.Anatomy of Murder
b.Planet of Apes
c.The conversation
d.Compilation error
Ans: d

Introduction to Computers - Semester I

What is a Computer?
1.       Computer
a.       Device capable of performing computations and making logical decisions
b.      Computers process data under the control of sets of instructions called computer programs
2.       Hardware
a.       Various devices comprising a computer
b.      Keyboard, screen, mouse, disks, memory, CD-ROM, and processing units
3.       Software
a.       Programs that run on a computer

Six logical units in every computer:
1.       Input unit
a.       Obtains information from input devices (keyboard, mouse)
2.       Output unit 
a.       Outputs information (to screen, to printer, to control other devices)
3.       Memory unit
a.       Rapid access, low capacity, stores input information
4.       Arithmetic and logic unit (ALU)
a.       Performs arithmetic calculations and logic decisions
5.       Central processing unit (CPU) 
a.       Supervises and coordinates the other sections of the computer
6.       Secondary storage unit 
a.       Cheap, long-term, high-capacity storage
b.      Stores inactive programs
Functional Units of a Computer:
Functional Units of a Computer



WASE open book exams - June 2013

Hey waseians, All the best for exams... ☺ Exams time table Useful posts for open book exam Semester 3 materials Get ready...