0

Enjoy the day...

posted on , by Akshay Mishra

...

0

Happy New Year

posted on , by Akshay Mishra

Hi Friends,I hope you are enjoying the day.Feeling blessed for 2015, now I have a list of friends. I hope this new year bring too much smiles n success.Thank y ...

0

HTML - MCSL-016 - Practical Help

posted on , by Akshay Mishra

var Ymax=8; //MAX # OF PIXEL STEPS IN THE "X" DIRECTION var Xmax=8; //MAX # OF PIXEL STEPS IN THE "Y" DIRECTION var Tmax=10000; //MAX # OF MILLISECONDS BETWEEN PARAMETER CHANGES //FLOATING IMAGE URLS FOR EACH IMAGE. ADD OR DELETE ENTRIES. KEEP ELEMENT NUMERICAL ORDER STARTING WITH "0" !! var floatimages=new Array(); floatimages[0]='http://file1.hpage.com/001617/02/bilder/butterfly2.gif'; floatimages[1]='http://file1.hpage.com/001617/02/bilder/butterfly2.gif'; ...

0

Practical scheduled at UPTEC

posted on , by Akshay Mishra

Dear Student, Term End practical examination Dec 2015 for MCA programme is scheduled at IGNOU Study Centre, UPTEC Computer Consultancy, Rana Pratap Marg, Lucknow from 10th January 2016. It is advised to contact examination supdt one day prior to the practical examination to know about your session and batch. Course wise list is also uploaded in RC Lucknow website. Regional Director, IGNOU RC Luckno ...

0

DATE SHEET OF MCA TERM-END PRACTICAL EXAMINATION, December, 2015

posted on , by Akshay Mishra

MCSL-016 13-01-2016 - HTMLMCSL-017 15-01-2016  - C & AssemblyClick here for 20 ...

0

Design a flow chart and write an interactive program for the problem given below:

posted on , by Akshay Mishra

Design a flow chart and write an interactive program for the problem given below: Assume that the United States of America uses the following income tax code formula for their annual income:First US$ 5000 of income: 0% taxNext US$ 10,000 of income: 10% taxNext US$ 20,000 of income: 15% taxAn amount above US$ 35,000: 20% tax.For example, somebody earning US$ 38,000 annuallywould owe US$ 5000 X 0.00+ 10,000 X 0.10 + 20,000 X 0.15 + 3,000 X 0.20,which comes to US$ 4600. Write a program that uses a ...

0

Important program in C

posted on , by Akshay Mishra

#include<stdio.h>#include<conio.h>#include<string.h>struct emp{ char name[10]; int age;};File handling conceptvoid NameAndAgeStoring(){ struct emp e; FILE *p, *q; p= fopen("list.txt","a"); q= fopen("list.txt","r"); printf("enter the name and age"); scanf("%s %d",e.name,e.age); fprintf(p,"%s %d",e.name,e.age); fclose(p); do{ fscanf(q,"%s %d",e.name,e.age); printf("%s %d",e.name,e.age); } while(!feof(q)); getch();}File handling concept - Create and store valuevoid file(){ FILE ...

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

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

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

Important topics in MCA

posted on , by Akshay Mishra

Important topi ...

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

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