Posts

Showing posts from April, 2021

IGNOU MCS-011 Assignment Solution for 2020-21 | IGNOU Solved Assignment

IGNOU MCS-011 Assignment Solution for 2020-21 | IGNOU Solved Assignment  Q1                                                                                                         (10 Marks) Write an algorithm, draw a corresponding flowchart and write an interactive program to convert a decimal number to its hexadecimal equivalent.   Source Code: #include<stdio.h> #include<conio.h> void main()  {   long int dec,r;   int i=0,l;   char hex[50];   printf("Enter Decimal number\n");   scanf("%ld",&dec);   while(dec!=0)    {     r=dec%16;     if(r<10)      hex[i++]=48+r;     else      hex[i++]=55+r;     dec=dec/16;    }   for(l=i-1;l>=0;l--)    printf("%c",hex[l]);   getch();  } Q2.                                                                                                    (10 Marks) Write an interactive C program to find the MINIMUM and MAXIMUM (value) array elements in a given 3X3 matrix.   Source Code: #include<stdio.h> #in

mcse 004 solved question paper | mcse 004 ignou | ignou mcse 004 question paper june 2020

mcse 004 solved question paper | mcse 004 ignou | mcse 004 question paper june 2020 NUMERICAL AND STATISTICAL COMPUTING TEE June 2020 Questions MCSE: NUMERICAL AND STATISTICAL COMPUTING ABSOLUTE RELATIVE ERRORS Q1a Evaluate the sum             S=sqrt 3 + sqrt 5 +sqrt 7    to four significant digits and determine absolute and relative errors   MCSE-004 Q1a NUMERICAL AND STATISTICAL COMPUTING TEE June 2020 Q1b Solved NEWTON RAPHSON METHOD Q1b Use Newton-Raphson Method to determine the root of the equation x2 -2x - 5 = 0 Perform two iterations MCSE-004 Q1b   Lagrange's Interpolation Formula Q1c Use Lagrange's Interpolation Formula to find the value of sin(pi/6), given y=sinx x y=sinx 0 0 pi/4 0.70711 pi/2 1.0 MCSE-004 Q1c TRAPEZOIDAL RULE  Q1d Evaluate the integral : I=Integration of limit 0 to 1 dx/1+x by using the Trapezoidal Rule with n=2 and n=4  MCSE-004 Q1d