Posts

Showing posts from May, 2020

Featured post

-Write C program to find even and odd number using macro

-Write C program to find even and odd number using macro #include<stdio.h> #define number(n)((n%2==0)?1:0) int main() { int num; printf("enter any number"); scanf("%d",&num); if(number(num)) printf("number is even"); else printf("number is odd"); return 0; } ***************************Output*********************** amr@amrj-virtual-machine:~$ gccevenodd.c amr@samr-virtual-machine:~$ ./a.out enter any number 2 number is evensmj@amr-virtual-machine:~$

OOSE(Object Oriented Software Engineering)OOSE(Object Oriented Software Engineering)

OOSE(Object Oriented Software Engineering OOSE(Object Oriented Software Engineering) All About MCQ of OSSE.      Object Oriented Software Engineering  1. A system is an orderly grouping of……………….linked together according to plan to achieve a specific goals. (a) Dependent components (b) Interdependent Components (c) Hybrid Components (d) both (a) and (b)  Ans: A Q2. Which of the Following Represent the Correct form of a function prototype? (a) float volume(int x,float y) (b) float volume (int x , y) (c) volume (int x,int t) (d) Float volume (int flaot) Q3. The Outcome of software Engineering is an efficient and reliable…………………. (a) System software (b) application software (c) Software Product (d) both(a) and (b) Q4. A……………….is an abstract view of the system. (a) object (b) class (c) Polymorphism (d) Model Q5. A collection of similar types of objects is Considered as…………… (...