Vignan_First_Year_Practice_Part_5_2023

Dear First Year students of Vignan,The Practice link Five (I_Can_do_Coding_part_5) will be conducted on 13th Jan 2023 to 16rd Jan 2023.You are given...

netaji gandi Friday, January 13, 2023
Vignan_First_Year_Practice_Part_4_2023

Dear First Year students of Vignan,The Practice link Four (I_Can_do_Coding_part_4) will be conducted on 10th Jan 2023 to 13rd Jan 2023.You are given...

netaji gandi Tuesday, January 10, 2023
Vignan_First_Year_Practice_Part_2

Dear First Year students of Vignan,The Practice link TWO (I_Can_do_Coding_part_2) will be conducted on 4th Jan 2023 to 8rd Jan 2023.You are given 10...

netaji gandi Wednesday, January 4, 2023
PPSC EXERCISE-16

 EXERCISE-161. Write a program in C to append multiple lines at the end of a text file.SOURCE CODE:#include<stdio.h>int main() { FILE *fp;...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-15

 EXERCISE-151. Write a program in C to check whether a number is a prime number or not using the function.SOURCE CODE:#include<stdio.h>void...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-14

 EXERCISE-141. Write a C program to find sum of n elements entered by user. To perform this program, allocate memory dynamically using calloc( )...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-13

 EXERCISE-131. Write a program in C to show how a function returning pointer.SOURCE CODE:#include<stdio.h>int* findLarger(int*, int*);int...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-12

 EXERCISE-121. Write a program in C to swap elements using call by reference.SOURCE CODE:#include<stdio.h>int main() { int num1, num2; printf("Enter...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-11

 EXERCISE-111. Write a program in C to add numbers using call by reference.SOURCE CODE:#include<stdio.h>#include<stdlib.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-10

 EXERCISE-101. Write a program in C to demonstrate the use of & (address of) and *(value at address) operator.SOURCE CODE:#include<stdio.h>int...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-9

 EXERCISE-91. Write a C Program to Store Information Using Structures with Dynamically Memory AllocationSOURCE CODE:#include<stdio.h>#include<stdlib.h>struct...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-8

 EXERCISE-81. Write a program in C to compare two strings without using string library functions.SOURCE CODE:#include<stdio.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-7

 EXERCISE-71. Write a program in C to search an element in a row wise and column wise sorted matrix.SOURCE CODE:#include<stdio.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-6

 EXERCISE-61. Write a program in C for multiplication of two square Matrices.SOURCE CODE:#include<stdio.h>int main(){    int mtrx1[20][20],mtrx2[20][20],mulmtrx[40][40],n1,n2,i,j,k; ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-5

 EXERCISE-51. Write a program in C to print all unique elements in an array.SOURCE CODE:#include<stdio.h>int main(){    int a[20],n,i,j,k; ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-4

 EXERCISE-41. Write a program in C to display the n terms of even natural number and their sum.SOURCE CODE:#include<stdio.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-3

 EXERCISE-31. Write a C program to convert a string to a long integer.SOURCE CODE:#include<stdio.h>#include<stdlib.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-2

 EXERCISE-21. Write a C program to calculate the distance between the two points.SOURCE CODE:#include<stdio.h>#include<math.h>int main(){ ...

netaji gandi Monday, January 2, 2023
PPSC EXERCISE-1

 EXERCISE-11. Write a C program to print a block F using hash (#), where the F has a height of six characters and width of five and four characters.SOURCE...

netaji gandi Monday, January 2, 2023
Pages 261234 Next

DATA WAREHOUSING AND MINING (MCA2104)

  UNIT I Introduction to Data mining ,  types of Data ,  Data Quality ,   Data Processing ,   Measures of Similarity   and  Dissimilarity , ...