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 ...
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'; ...
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 ...
MCSL-016 13-01-2016 - HTMLMCSL-017 15-01-2016 - C & AssemblyClick here for 20 ...
Design a flow chart and write an interactive program for the problem given below:
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 ...
#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 ...
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 ...