Theoretical Paper
Computer Organization
C Language
Data Structure
Digital Electronics
Object Oriented Programming
Discrete Mathematics
Graph Theory
Operating Systems
Software Engineering
Computer Graphics
Database Management System
Operation Research
Computer Networking
Image Processing
Internet Technologies
Micro Processor
Artificial Intelligence
Soft Computing
E-Commerce & ERP
Programming in Java
Data Mining Techniques
Cloud Computing
Big Data / Hadoop
Digital Image Processing
Practical Paper
Digital Electronics
C ++ Language
C Programming
C
Data Structure Using C, C ++
Sql & PL/Sql
Visual Basic
Unix and Shell programming
Java
J2EE
Oracle 9i
8085 Programming
Programming in Java
Internet Technologies
Artificial Intelligence
Computer Graphics
Data Mining
Cloud Computing
Big Data
Digital Image Processing
Data Structures
Computer Networks
Programming in R
Programming with Python
Machine Learning
Swift
Firebase
Android
iOS Development
Django
PHP
Arduino
Internet of Technology
IOT Projects
Artificial Intelligence Lab
- Write a prolog program to calculate the sum of two numbers
- Write a prolog program to find the maximum of two numbers
- Write a prolog program to calculate the factorial of a given number.
- Write a prolog program to calculate the nth Fibonacci number.
- Write a prolog program, insert_nth(item, n, into_list, result) that asserts that result is the list into_list with item inserted as the n‘th element into every list at all levels.
- Write a Prolog program to remove the Nth item from a list.
- Write a Prolog program, remove-nth(Before, After) that asserts the After list is the Before list with the removal of every n‘th item from every list at all levels.
- Write a Prolog program to implement append for two lists
- Write a Prolog program to implement palindrome (List).
- Write a Prolog program to implement max(X,Y,Max) so that Max is the greater of two numbers X and Y.
- Write a Prolog program to implement maxlist(List,Max) so that Max is the greatest number in the list of numbers List.
- Write a Prolog program to implement sumlist(List,Sum) so that Sum is the sum of a given list of numbers List.
- Write a Prolog program to implement two predicates evenlength(List) and oddlength(List) so that they are true if their argument is a list of even or odd length respectively.
- Write a Prolog program to implement reverse(List,ReversedList) that reverses lists.
- Write a Prolog program to implement maxlist(List,Max) so that Max is the greatest number in the list of numbers List using cut predicate.
- Write a Prolog program to implement GCD of two numbers.
- Write a Prolog program to implement GCD of two numbers.