World's most popular travel blog for travel bloggers.
0

Skills of system analyst

posted on , by Akshay Mishra

Important topic from 014 ~Software development and analysis ...

0

Skills of system analyst

posted on , by Akshay Mishra

Important topic from 014 ~Software development and analysis ...

0

Are you ready for your exams?

posted on , by Akshay Mishra

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 ...

0

Are you ready for your exams?

posted on , by Akshay Mishra

Few important topics 011~ C and problem solving 1. Fibonacci series using recursion 2. Flow chart of a loop program 3. String lower n upper case 4. Matrices calculations 5. Stored class in c 6. While, do while, for loop 7. Switch and If-else ladd ...

0

Basic Operational Concept of The Processor

posted on , by Akshay Mishra

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 ...

0

Basic Operational Concept of The Processor

posted on , by Akshay Mishra

Architecture MCQ focuses on “Basic Operational Concept of The Processor”. 1. The decoded instruction is stored in ______ . a) IR b) PC c) Registers d) MDR View Answer Answer:a Explanation: 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 register b) Adds the value of R0 to the address of LOCA c) Adds the values of both LOCA ...

0

Exam Hall tickets are online available

posted on , by Akshay Mishra

https://avserver.ignou.ac.in/HallTicket/Hall_0615/Hall0615.asp ...

0

Exam Hall tickets are online available

posted on , by Akshay Mishra

https://avserver.ignou.ac.in/HallTicket/Hall_0615/Hall0615.asp ...

0

viva & exam questions for C

posted on , by Akshay Mishra

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 ...

0

viva & exam questions for C

posted on , by Unknown

viva & exam questions for C 2.  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 ...

0

Important topics in MCA

posted on , by Akshay Mishra

Important topi ...

0

Important topics in MCA

posted on , by Unknown

Important topics ...

0

Viva MCS013, MCSL016, MCSL017

posted on , by Akshay Mishra

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 ...

0

Viva MCS013, MCSL016, MCSL017

posted on , by Akshay Mishra

Assignment based viva for Descret mathematics MCS013 held on Sunday. Lab incharge Descrete Mathematics - 22 Nov 2015 timing between Lab session. 8am to 2pm Viva MCS013, MCSL016, MCSL017 All will be on Sunday between lab session bhari se bhari sankhya me aakar Ignou ko dhanya karen. cheers Aksh ...

0

IGNOU MCS-011 Solved Paper June 2014

posted on , by Akshay Mishra

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 ...