Monday, 15 July 2019
Thursday, 11 July 2019
Lecture - 11 Data Modelling - ER Diagrams, Mapping
Irawen July 11, 2019 Engineering, Software No comments
lecture - 9 Process Modelling - DFD , Function Decomp
Irawen July 11, 2019 Engineering, Software No comments
Lecture - 10 Process Modelling - DFD, Function Decomp
Irawen July 11, 2019 Engineering, Software No comments
Lecture -5 Requirements Engineering / Specification
Irawen July 11, 2019 Engineering, Software No comments
Wednesday, 10 July 2019
Wednesday, 3 July 2019
Tuesday, 2 July 2019
Monday, 1 July 2019
Sunday, 30 June 2019
Tuesday, 25 June 2019
To check whether a number is divisible by 6 and 4
Irawen June 25, 2019 No comments
To check whether a number is divisible by 6 and 4
Input :
Output :
Code :
#include <stdio.h>
int main()
{
int c;
printf("Enter a number :\n");
scanf("%d",&c);
{ if ((c%6==0) && (c%4==0))
printf("The number is divisible by 6 and 4\n");
else
printf("The number is not divisible by 6 and 4\n");
}
return 0;
}
Input :
Output :
Code :
#include <stdio.h>
int main()
{
int c;
printf("Enter a number :\n");
scanf("%d",&c);
{ if ((c%6==0) && (c%4==0))
printf("The number is divisible by 6 and 4\n");
else
printf("The number is not divisible by 6 and 4\n");
}
return 0;
}
Monday, 24 June 2019
To Check whether a number is prime or not
Irawen June 24, 2019 No comments
To Check whether a number is prime or not
Input:-

Output:-
1)

2)

Code:-
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,i,ans;
printf("Enter a number : \n");
scanf("%d",&a);
for(i=2; i<=a/2;i++ )
ans=a%i;
{
if ( ans==0)
printf("The number is not prime ");
else
printf("The number is prime ");
}
return 0;
}
Input:-
Output:-
1)
2)
Code:-
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,i,ans;
printf("Enter a number : \n");
scanf("%d",&a);
for(i=2; i<=a/2;i++ )
ans=a%i;
{
if ( ans==0)
printf("The number is not prime ");
else
printf("The number is prime ");
}
return 0;
}
Popular Posts
-
Deep Learning Methods of Mathematical Physics: Volume I – A Comprehensive Guide to AI for Direct and Inverse Problems Introduction Artific...
-
In the fast-paced world of software development , mastering version control is essential. Git and GitHub have become industry standards, ...
-
Introduction In the world of data science and analytics, having strong tools and a solid workflow can be far more important than revisitin...
-
7 Python Libraries That Made Me Fall in Love With Coding Again When I first started coding in Python, I was amazed at how simple it felt....
-
Modern Artificial Intelligence and Machine Learning are built upon a deep mathematical foundation. While many practitioners learn to use f...
-
Introduction Programming becomes meaningful when you build something — not just read about syntax, but write programs that do things. This...
-
Guide to NumPy: 2nd Edition – The Complete Reference for Scientific Computing and High-Performance Array Programming in Python Introductio...
-
The fundamental mathematical tools needed to understand machine learning include linear algebra, analytic geometry, matrix decompositions,...
-
Introduction In today’s digital world, many jobs require repetitive, time-consuming computer tasks: renaming files, updating spreadsheets,...
-
Explanation: ๐น 1. Creating a Tuple (1, 2, 3) ✅ Explanation Python creates a tuple containing three elements. A tuple is ordered and immut...
Categories
100 Python Programs for Beginner
(119)
AI
(330)
Android
(25)
AngularJS
(1)
Api
(7)
Assembly Language
(2)
aws
(31)
Azure
(12)
BI
(10)
Books
(324)
Bootcamp
(14)
C
(78)
C#
(12)
C++
(83)
cloud
(1)
Course
(87)
Coursera
(302)
Cybersecurity
(34)
data
(10)
Data Analysis
(44)
Data Analytics
(31)
data management
(16)
Data Science
(415)
Data Strucures
(18)
Deep Learning
(213)
Django
(16)
Downloads
(3)
edx
(21)
Engineering
(15)
Euron
(30)
Events
(7)
Excel
(24)
Finance
(13)
flask
(4)
flutter
(1)
FPL
(17)
Generative AI
(77)
Git
(12)
Google
(54)
Hadoop
(3)
HTML Quiz
(1)
HTML&CSS
(48)
IBM
(43)
IoT
(3)
IS
(25)
Java
(99)
Leet Code
(4)
Machine Learning
(375)
Meta
(24)
MICHIGAN
(5)
microsoft
(13)
Nvidia
(8)
Pandas
(16)
PHP
(20)
Projects
(34)
Python
(1355)
Python Coding Challenge
(1210)
Python Mathematics
(8)
Python Mistakes
(51)
Python Quiz
(592)
Python Tips
(99)
Questions
(3)
R
(72)
React
(7)
Scripting
(3)
security
(4)
Selenium Webdriver
(4)
Software
(21)
SQL
(55)
Udemy
(18)
UX Research
(1)
web application
(11)
Web development
(9)
web scraping
(3)
















