Coder Baba
2.42K subscribers
1.01K photos
23 videos
722 files
723 links
Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note
Download Telegram
SQL Basics Handwritten.pdf
5.1 MB
SQL Database Hand written notes👆👆📒
csharp_quick_guide.pdf
323.3 KB
C# - QUICK GUIDE Notes By 👉📒👆👆TutorialsPoint
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
👆👆
follow @coder_baba
SQL Server + ASP.NET = Powerful Web Applications
ADO .NET
what is Web Services
Assignment No 1.pdf
416 KB
Folder Structure for Software Testing👆👆
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;
}
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;
}