SlideShare a Scribd company logo
Solve problems with Java code Algorithms with Java
Sum 1..N – Example Calculate and print the sum of the first N positive numbers Scanner input = new Scanner(System.in); System.out.print(&quot;n = &quot;); int n = input.nextInt(); int num = 1; int sum = 1; System.out.print(&quot;The sum 1&quot;); while (num < n) { num++; sum += num; System.out.printf(&quot;+%d&quot;, num); } System.out.printf(&quot; = %d%n&quot;, sum);
Calculating Sum 1..N Live Demo
Prime Number – Example Checking if a number is prime or not Scanner input = new Scanner(System.in); System.out.print(&quot;Enter a positive integer: &quot;); int num = input.nextInt(); int divider = 2; int maxDivider = (int) Math.sqrt(num); boolean prime = true; while (prime && (divider <= maxDivider)) { if (num % divider == 0) { prime = false; } divider++; } System.out.println(&quot;Prime? &quot; + prime);
Checking If a Number Is Prime Live Demo
Using  break  Operator break  operator exits the inner-most loop Scanner input = new Scanner(System.in); int n = input.nextInt(); // &quot;long&quot; is the biggest integer type long factorial = 1; // Perform an infinite loop while (true) { if (n == 1) { break; } factorial *= n; n--; } System.out.println(&quot;n! = &quot; + factorial);
Calculating Factorial Live Demo
Factorial – Example Calculating N factorial Scanner input = new Scanner(System.in); System.out.print(&quot;n = &quot;); int n = input.nextInt(); long factorial = 1; do { factorial *= n; n--; } while (n > 0); System.out.println(&quot;n! = &quot; + factorial);
Factorial (do ... while) Live Demo
Recursion Calling a Method by Itself
What is Recursion? Recursion is calling a method by itself Very powerful technique for implementing combinatorial algorithms Recursion should have Direct or indirect recursive calls The method calls itself directly or through other methods Exit criteria (bottom) Prevent infinite recursion
Factorial – Example N! (N Factorial) N! = N * (N – 1)! for N >= 0 and 0! = 1 5! = 5 * 4! or 5 * 4 * 3 * 2 * 1 * 1 = 120 4! = 4 * 3! or 4 * 3 * 2 * 1 * 1 = 24 3! = 3 * 2! or 3 * 2 * 1 * 1 = 6 2! = 2 * 1! or 2 * 1 * 1 = 2 1! = 1 * 0! or 1 * 1 = 1 0! = 1
Factorial – Example Calculating factorial: 0! = 1 n! = n* (n-1)!, n>0 Don't do this at home! Use iteration instead Recursive call: the method calls itself The bottom of the recursion public  static int  f actorial(int n)   {   if (n == 0)  return 1;    else return n *  f actorial(n - 1);  }
Product[N..M] – Example Calculating the product of all numbers in the interval [n..m]: int n = input.nextInt(); int m = input.nextInt(); int num = n; long product = 1; do { product *= num; num++; }  while(num <= m); System.out.println(&quot;product[n..m] = &quot; + product);
Product of the Numbers in the Interval [n..m] Live Demo
N^M – Example Calculating n^m Scanner input = new Scanner(System.in); int n = input.nextInt(); int m = input.nextInt(); long result = 1; for (int i = 0; i < m; i++) { result *= n; } System.out.println(&quot;n^m = &quot; + result);
Calculating N^M Live Demo
Using  continue  Operator continue  operator ends iteration of the inner-most loop Example: Sum odd numbers p in [1, n] that are not divisors of 7: int n = input.nextInt(); int sum = 0; for (int i = 1; i <= n; i += 2) { if (i % 7 == 0) continue; sum += i; } System.out.println(&quot;sum = &quot; + sum);
Using  continue  Operator Live Demo
Nested Loops Using Loop Inside a Loop
What Is Nested Loop? A composition of loops is called a nested loop Example: for (initialization; test; update) { for (initialization; test; update) { statements; } … }
Nested Loops Examples
Triangle – Example Print the following triangle on the console: 1 1 2 … 1 2 3 ... n int n = input.nextInt(); for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { System.out.print(j + &quot; &quot;); } System.out.println(); }
Triangle Live Demo
Primes[N, M] – Example Print all prime numbers in [n, m] int n = input.nextInt(); int m = input.nextInt(); for (int num = n; num <= m; num++) { boolean prime = true; int divider = 2; int maxDivider = (int) Math.sqrt(num); while (divider <= maxDivider) { if (num % divider == 0) { prime = false; break; } divider++; } if (prime) { System.out.printf(&quot;%d &quot;, num); } }
Primes in Range [n, m] Live Demo
Loops – More Examples
Nested Loops – Examples Print all four digit numbers ABCD such that A+B = C+D (happy numbers) for (int a = 1; a <= 9; a++) { for (int b = 0; b <= 9; b++) { for (int c = 0; c <= 9; c++) { for (int d = 0; d <= 9; d++) { if ((a + b) == (c + d)) { System.out.printf(&quot;%d,%d,%d,%d&quot;,  a, b, c, d);   } } } } } Can you improve this algorithm to use only 3 loops?
Happy Numbers Live Demo
TOTO 6/49 – Examples Print all combinations from TOTO 6/49 for (int i1 = 1; i1 <= 44; i1++) for (int i2 = i1 + 1; i2 <= 45; i2++) for (int i3 = i2 + 1; i3 <= 46; i3++) for (int i4 = i3 + 1; i4 <= 47; i4++) for (int i5 = i4 + 1; i5 <= 48; i5++) for (int i6 = i5 + 1; i6 <= 49; i6++) System.out.printf( &quot;%d %d %d %d %d %d%n&quot;, i1, i2, i3, i4, i5, i6); How long will it take to finish this?
TOTO 6/49 Live Demo
Summary Loops could solve different problems Recursion could be handy as well We can use nested loops to implement more complex logic We can use  continue  and  break  operators to control the loop execution More to come with arrays' manipulation
Exercises  Write a program that prints all the numbers from 1 to N. Write a program that prints all the numbers from 1 to N, that are not divisible by 3 and 7. Write a program that reads from the console a sequence of N integer numbers and returns the minimal and maximal of them. Write a program that calculates N!/K! for given N and K (1<N<K).
Exercises (3)  Write a program that reads a number N and calculates the sum of the first N members of the sequence of Fibonacci:  0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, … In the combinatorial mathematics, the Catalan numbers are calculated by the following formula: Write a program to calculate the Catalan number by given N.
Exercises (4) Write a program that reads from the console a positive integer number N (N < 20) and outputs a matrix like the following: N = 3 N = 4 1 2 3 4 2 3 4 5 3 4 5 6 4 5 6 7 1 2 3 2 3 4 3 4 5
Exercises (5) Write a program that calculates for given N how many trailing zeros present at the end of the number N!. Examples: N = 10    N! = 36288 00     2 N = 20    N! = 243290200817664 0000     4 Does your program work for N = 50 000? Hint: The trailing zeros in N! are equal to the number of its prime divisors 5. Think why!

More Related Content

What's hot (20)

PDF
Algorithms lecture 3
Mimi Haque
 
PDF
Linear Convolution using Matlab Code
Bharti Airtel Ltd.
 
PPTX
Introduction to code optimization by dipankar
Dipankar Nalui
 
PDF
The Inner Secrets of Compilers
IT MegaMeet
 
DOC
Digital Signal Processing Lab Manual ECE students
UR11EC098
 
PDF
Dsp manual completed2
bilawalali74
 
DOCX
Esg111 midterm review
mickeynickey1
 
PDF
Digital signal Processing all matlab code with Lab report
Alamgir Hossain
 
PPTX
Unit 1
Abha Damani
 
PPTX
12. Exception Handling
Intro C# Book
 
PDF
Cs2251 daa
Srinivasan Lakshmanan
 
PPT
Introduction To Algorithm [2]
ecko_disasterz
 
PPTX
Matlab ppt
Dhammpal Ramtake
 
PDF
openMP loop parallelization
Albert DeFusco
 
PPTX
Mbd2
Mahmoud Hussein
 
PPTX
Recurrence Relation
NilaNila16
 
PPTX
Compiler Optimization Presentation
19magnet
 
PDF
Cse115 lecture08repetitionstructures part02
Md. Ashikur Rahman
 
Algorithms lecture 3
Mimi Haque
 
Linear Convolution using Matlab Code
Bharti Airtel Ltd.
 
Introduction to code optimization by dipankar
Dipankar Nalui
 
The Inner Secrets of Compilers
IT MegaMeet
 
Digital Signal Processing Lab Manual ECE students
UR11EC098
 
Dsp manual completed2
bilawalali74
 
Esg111 midterm review
mickeynickey1
 
Digital signal Processing all matlab code with Lab report
Alamgir Hossain
 
Unit 1
Abha Damani
 
12. Exception Handling
Intro C# Book
 
Introduction To Algorithm [2]
ecko_disasterz
 
Matlab ppt
Dhammpal Ramtake
 
openMP loop parallelization
Albert DeFusco
 
Recurrence Relation
NilaNila16
 
Compiler Optimization Presentation
19magnet
 
Cse115 lecture08repetitionstructures part02
Md. Ashikur Rahman
 

Similar to Algorithms with-java-1.0 (20)

PPTX
for loop in java
Majid Ali
 
PPTX
06.Loops
Intro C# Book
 
PPT
Java căn bản - Chapter6
Vince Vo
 
PPT
ch05-program-logic-indefinite-loops.ppt
Mahyuddin8
 
DOC
Find the output of the following code (Java for ICSE)
Mokshya Priyadarshee
 
PPT
Ch5(loops)
Uğurcan Uzer
 
PDF
COneShotPart3.pdf1111111111111111111111111
komitag811
 
PPTX
Programs.pptx
kegeshaddy
 
PPT
Simple Java Programs
AravindSankaran
 
PPT
Simple Java Programs
AravindSankaran
 
PPT
06 Loops
maznabili
 
PPTX
Presentation1 computer shaan
walia Shaan
 
PDF
Oot practical
Vipin Rawat @ daya
 
PDF
Java Programming Assignment
Vijayananda Mohire
 
PPT
Cs 1114 - lecture-8
Zeeshan Sabir
 
PDF
Simple Java Program for beginner with easy method.pdf
ashwinibhosale27
 
DOCX
Programs of java
shafiq sangi
 
PDF
81818088 isc-class-xii-computer-science-project-java-programs
Abhishek Jena
 
PDF
Exercise1 java
NguynMinh294
 
for loop in java
Majid Ali
 
06.Loops
Intro C# Book
 
Java căn bản - Chapter6
Vince Vo
 
ch05-program-logic-indefinite-loops.ppt
Mahyuddin8
 
Find the output of the following code (Java for ICSE)
Mokshya Priyadarshee
 
Ch5(loops)
Uğurcan Uzer
 
COneShotPart3.pdf1111111111111111111111111
komitag811
 
Programs.pptx
kegeshaddy
 
Simple Java Programs
AravindSankaran
 
Simple Java Programs
AravindSankaran
 
06 Loops
maznabili
 
Presentation1 computer shaan
walia Shaan
 
Oot practical
Vipin Rawat @ daya
 
Java Programming Assignment
Vijayananda Mohire
 
Cs 1114 - lecture-8
Zeeshan Sabir
 
Simple Java Program for beginner with easy method.pdf
ashwinibhosale27
 
Programs of java
shafiq sangi
 
81818088 isc-class-xii-computer-science-project-java-programs
Abhishek Jena
 
Exercise1 java
NguynMinh294
 
Ad

More from BG Java EE Course (20)

PPT
Rich faces
BG Java EE Course
 
PPT
JSP Custom Tags
BG Java EE Course
 
PPT
Java Server Faces (JSF) - advanced
BG Java EE Course
 
PPT
Java Server Faces (JSF) - Basics
BG Java EE Course
 
PPT
Unified Expression Language
BG Java EE Course
 
PPT
Java Server Pages
BG Java EE Course
 
PPT
Web Applications and Deployment
BG Java EE Course
 
PPT
Java Servlets
BG Java EE Course
 
PPTX
HTML: Tables and Forms
BG Java EE Course
 
PPTX
HTML Fundamentals
BG Java EE Course
 
PPTX
WWW and HTTP
BG Java EE Course
 
ODP
JavaScript and jQuery Fundamentals
BG Java EE Course
 
ODP
Creating Web Sites with HTML and CSS
BG Java EE Course
 
PPT
Processing XML with Java
BG Java EE Course
 
PPT
Introduction to XML
BG Java EE Course
 
PPT
Data Access with JDBC
BG Java EE Course
 
PPT
Introduction to-sql
BG Java EE Course
 
PPT
Introduction to-RDBMS-systems
BG Java EE Course
 
Rich faces
BG Java EE Course
 
JSP Custom Tags
BG Java EE Course
 
Java Server Faces (JSF) - advanced
BG Java EE Course
 
Java Server Faces (JSF) - Basics
BG Java EE Course
 
Unified Expression Language
BG Java EE Course
 
Java Server Pages
BG Java EE Course
 
Web Applications and Deployment
BG Java EE Course
 
Java Servlets
BG Java EE Course
 
HTML: Tables and Forms
BG Java EE Course
 
HTML Fundamentals
BG Java EE Course
 
WWW and HTTP
BG Java EE Course
 
JavaScript and jQuery Fundamentals
BG Java EE Course
 
Creating Web Sites with HTML and CSS
BG Java EE Course
 
Processing XML with Java
BG Java EE Course
 
Introduction to XML
BG Java EE Course
 
Data Access with JDBC
BG Java EE Course
 
Introduction to-sql
BG Java EE Course
 
Introduction to-RDBMS-systems
BG Java EE Course
 
Ad

Recently uploaded (20)

PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
July Patch Tuesday
Ivanti
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Biography of Daniel Podor.pdf
Daniel Podor
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 

Algorithms with-java-1.0

  • 1. Solve problems with Java code Algorithms with Java
  • 2. Sum 1..N – Example Calculate and print the sum of the first N positive numbers Scanner input = new Scanner(System.in); System.out.print(&quot;n = &quot;); int n = input.nextInt(); int num = 1; int sum = 1; System.out.print(&quot;The sum 1&quot;); while (num < n) { num++; sum += num; System.out.printf(&quot;+%d&quot;, num); } System.out.printf(&quot; = %d%n&quot;, sum);
  • 4. Prime Number – Example Checking if a number is prime or not Scanner input = new Scanner(System.in); System.out.print(&quot;Enter a positive integer: &quot;); int num = input.nextInt(); int divider = 2; int maxDivider = (int) Math.sqrt(num); boolean prime = true; while (prime && (divider <= maxDivider)) { if (num % divider == 0) { prime = false; } divider++; } System.out.println(&quot;Prime? &quot; + prime);
  • 5. Checking If a Number Is Prime Live Demo
  • 6. Using break Operator break operator exits the inner-most loop Scanner input = new Scanner(System.in); int n = input.nextInt(); // &quot;long&quot; is the biggest integer type long factorial = 1; // Perform an infinite loop while (true) { if (n == 1) { break; } factorial *= n; n--; } System.out.println(&quot;n! = &quot; + factorial);
  • 8. Factorial – Example Calculating N factorial Scanner input = new Scanner(System.in); System.out.print(&quot;n = &quot;); int n = input.nextInt(); long factorial = 1; do { factorial *= n; n--; } while (n > 0); System.out.println(&quot;n! = &quot; + factorial);
  • 9. Factorial (do ... while) Live Demo
  • 10. Recursion Calling a Method by Itself
  • 11. What is Recursion? Recursion is calling a method by itself Very powerful technique for implementing combinatorial algorithms Recursion should have Direct or indirect recursive calls The method calls itself directly or through other methods Exit criteria (bottom) Prevent infinite recursion
  • 12. Factorial – Example N! (N Factorial) N! = N * (N – 1)! for N >= 0 and 0! = 1 5! = 5 * 4! or 5 * 4 * 3 * 2 * 1 * 1 = 120 4! = 4 * 3! or 4 * 3 * 2 * 1 * 1 = 24 3! = 3 * 2! or 3 * 2 * 1 * 1 = 6 2! = 2 * 1! or 2 * 1 * 1 = 2 1! = 1 * 0! or 1 * 1 = 1 0! = 1
  • 13. Factorial – Example Calculating factorial: 0! = 1 n! = n* (n-1)!, n>0 Don't do this at home! Use iteration instead Recursive call: the method calls itself The bottom of the recursion public static int f actorial(int n) { if (n == 0) return 1; else return n * f actorial(n - 1); }
  • 14. Product[N..M] – Example Calculating the product of all numbers in the interval [n..m]: int n = input.nextInt(); int m = input.nextInt(); int num = n; long product = 1; do { product *= num; num++; } while(num <= m); System.out.println(&quot;product[n..m] = &quot; + product);
  • 15. Product of the Numbers in the Interval [n..m] Live Demo
  • 16. N^M – Example Calculating n^m Scanner input = new Scanner(System.in); int n = input.nextInt(); int m = input.nextInt(); long result = 1; for (int i = 0; i < m; i++) { result *= n; } System.out.println(&quot;n^m = &quot; + result);
  • 18. Using continue Operator continue operator ends iteration of the inner-most loop Example: Sum odd numbers p in [1, n] that are not divisors of 7: int n = input.nextInt(); int sum = 0; for (int i = 1; i <= n; i += 2) { if (i % 7 == 0) continue; sum += i; } System.out.println(&quot;sum = &quot; + sum);
  • 19. Using continue Operator Live Demo
  • 20. Nested Loops Using Loop Inside a Loop
  • 21. What Is Nested Loop? A composition of loops is called a nested loop Example: for (initialization; test; update) { for (initialization; test; update) { statements; } … }
  • 23. Triangle – Example Print the following triangle on the console: 1 1 2 … 1 2 3 ... n int n = input.nextInt(); for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { System.out.print(j + &quot; &quot;); } System.out.println(); }
  • 25. Primes[N, M] – Example Print all prime numbers in [n, m] int n = input.nextInt(); int m = input.nextInt(); for (int num = n; num <= m; num++) { boolean prime = true; int divider = 2; int maxDivider = (int) Math.sqrt(num); while (divider <= maxDivider) { if (num % divider == 0) { prime = false; break; } divider++; } if (prime) { System.out.printf(&quot;%d &quot;, num); } }
  • 26. Primes in Range [n, m] Live Demo
  • 27. Loops – More Examples
  • 28. Nested Loops – Examples Print all four digit numbers ABCD such that A+B = C+D (happy numbers) for (int a = 1; a <= 9; a++) { for (int b = 0; b <= 9; b++) { for (int c = 0; c <= 9; c++) { for (int d = 0; d <= 9; d++) { if ((a + b) == (c + d)) { System.out.printf(&quot;%d,%d,%d,%d&quot;, a, b, c, d); } } } } } Can you improve this algorithm to use only 3 loops?
  • 30. TOTO 6/49 – Examples Print all combinations from TOTO 6/49 for (int i1 = 1; i1 <= 44; i1++) for (int i2 = i1 + 1; i2 <= 45; i2++) for (int i3 = i2 + 1; i3 <= 46; i3++) for (int i4 = i3 + 1; i4 <= 47; i4++) for (int i5 = i4 + 1; i5 <= 48; i5++) for (int i6 = i5 + 1; i6 <= 49; i6++) System.out.printf( &quot;%d %d %d %d %d %d%n&quot;, i1, i2, i3, i4, i5, i6); How long will it take to finish this?
  • 32. Summary Loops could solve different problems Recursion could be handy as well We can use nested loops to implement more complex logic We can use continue and break operators to control the loop execution More to come with arrays' manipulation
  • 33. Exercises Write a program that prints all the numbers from 1 to N. Write a program that prints all the numbers from 1 to N, that are not divisible by 3 and 7. Write a program that reads from the console a sequence of N integer numbers and returns the minimal and maximal of them. Write a program that calculates N!/K! for given N and K (1<N<K).
  • 34. Exercises (3) Write a program that reads a number N and calculates the sum of the first N members of the sequence of Fibonacci: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, … In the combinatorial mathematics, the Catalan numbers are calculated by the following formula: Write a program to calculate the Catalan number by given N.
  • 35. Exercises (4) Write a program that reads from the console a positive integer number N (N < 20) and outputs a matrix like the following: N = 3 N = 4 1 2 3 4 2 3 4 5 3 4 5 6 4 5 6 7 1 2 3 2 3 4 3 4 5
  • 36. Exercises (5) Write a program that calculates for given N how many trailing zeros present at the end of the number N!. Examples: N = 10  N! = 36288 00  2 N = 20  N! = 243290200817664 0000  4 Does your program work for N = 50 000? Hint: The trailing zeros in N! are equal to the number of its prime divisors 5. Think why!

Editor's Notes

  • #2: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #3: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #4: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #5: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #6: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #7: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #8: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #9: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #10: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #11: * 10/16/10 07/16/96 (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  • #14: * 10/16/10 07/16/96 (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  • #15: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #16: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #17: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #18: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #19: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #20: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #21: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #22: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #23: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #24: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #25: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #26: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #27: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #28: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #29: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #30: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #31: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #32: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #33: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #34: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #35: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #36: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.
  • #37: (c) 2005 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.