Important topic from 014 ~Software development and analysis ...
Few important topics011~ C and problem solving1. Fibonacci series using recursion2. Flow chart of a loop program3. String lower n upper case4. Matrices calculations5. Stored class in c6. While, do while, for loop 7. Switch and If-else ladd ...
Architecture MCQ focuses on “Basic Operational Concept of The Processor”.1. The decoded instruction is stored in ______ .a) IRb) PCc) Registersd) MDRView AnswerAnswer:aExplanation: The instruction after obtained from the PC, is decoded and operands are fetched and stored in the IR.2. The instruction -> Add LOCA,R0 does,a) Adds the value of LOCA to R0 and stores in the temp registerb) Adds the value of R0 to the address of LOCAc) Adds the values of both LOCA and R0 and ...
https://avserver.ignou.ac.in/HallTicket/Hall_0615/Hall0615.asp ...
viva & exam questions for C2. What does static variable mean?There are 3 main uses for the static.1. If you declare within a function: It retains the value between function calls2. If it is declared for a function name: By default function is extern..so it will be visible from other files if the function declaration is as static..it is invisible for the outer files3. Static for global variables: By default we can use the global variables from outside files If it is static global..that ...
Assignment based viva for Descret mathematics MCS013 held on Sunday.Lab inchargeDescrete Mathematics - 22 Nov 2015timing between Lab session. 8am to 2pmViva MCS013, MCSL016, MCSL017All will be on Sunday between lab sessionbhari se bhari sankhya me aakar Ignou ko dhanya karen.cheersAksh ...
1 (a). Write a C program to find the factorial value of a number. Also write the algorithm and draw flowchart.Ans./*c program to find out factorial value of a number*/#include<stdio.h>#include<conio.h>int main(){ int n,i,fact=1; printf("Enter any number : "); scanf("%d", &n); for(i=1; i<=n; i++) fact = fact * i; printf("Factorial ...