What can SQL do?
• SQL can execute queries against a database
• SQL can retrieve data from a database
• SQL can insert records in a database
• SQL can update records in a database
• SQL can delete records from a database
• SQL can create new databases
• SQL can create new tables in a database
• SQL can create stored procedures in a database
• SQL can create views in a database
• SQL can set permissions on tables, procedures, and views
follow @Coder_baba
  • SQL can execute queries against a database
• SQL can retrieve data from a database
• SQL can insert records in a database
• SQL can update records in a database
• SQL can delete records from a database
• SQL can create new databases
• SQL can create new tables in a database
• SQL can create stored procedures in a database
• SQL can create views in a database
• SQL can set permissions on tables, procedures, and views
follow @Coder_baba
Request - Project details.docx
    19.7 KB
  Project Requirement Details for Final year Project Demo document for your information
  C program to check odd or even using modulus operator
#include<stdio.h>
 
main()
{
int n;
 
printf("Enter an integer\n");
scanf("%d",&n);
 
if ( n%2 == 0 )
printf("Even\n");
else
printf("Odd\n");
 
return 0;
}
  #include<stdio.h>
main()
{
int n;
printf("Enter an integer\n");
scanf("%d",&n);
if ( n%2 == 0 )
printf("Even\n");
else
printf("Odd\n");
return 0;
}
C program to check odd or even using bitwise operator
#include<stdio.h>
 
main()
{
int n;
 
printf("Enter an integer\n");
scanf("%d",&n);
 
if ( n & 1 == 1 )
printf("Odd\n");
else
printf("Even\n");
 
return 0;
}
  #include<stdio.h>
main()
{
int n;
printf("Enter an integer\n");
scanf("%d",&n);
if ( n & 1 == 1 )
printf("Odd\n");
else
printf("Even\n");
return 0;
}
C program to check odd or even without using bitwise or modulus operator
#include<stdio.h>
 
main()
{
int n;
 
printf("Enter an integer\n");
scanf("%d",&n);
 
if ( (n/2)*2 == n )
printf("Even\n");
else
printf("Odd\n");
 
return 0;
}
  #include<stdio.h>
main()
{
int n;
printf("Enter an integer\n");
scanf("%d",&n);
if ( (n/2)*2 == n )
printf("Even\n");
else
printf("Odd\n");
return 0;
}
