Posts

Algoritma

Image
  ALGORİTMA NEDİR? Bir problemin çözümünde izlenecek yol anlamına gelir.Problemin çözümünün adımlar halinde yazılmasıyla oluşturulur.Genellikle matematikte ve programlamada bir işi yapmak için tanımlanan,belli bir başlangıcı ve sonu olan,açıkça belirlenmiş basamaklardır. ALGORİTMA NE İŞE YARAR?   Genellikle programlamada kullanılır.Tüm programlama dillerinin temeli algoritmaya dayanır. ALGORİTMANIN ÖZELLİKLERİ NELERDİR? Algoritmanın,görsel olarak simge ya da sembollerle ifade edilmiş şekline”akış şemaları”veya FLOWCHART adı verilir.Akış şemalarının algoritmadan farkı,adımların simgeler şeklinde kutular içine yazılmış olması ve adımlar arasındaki ilişkilerin ve yönünün oklar ile gösterilmesidir. ALGORİTMA NERELERDE KULLANILIR? Algoritmayı günlük yaşantımızda çoğu zaman kullanırız .Polisler bir olayı çözümlemekte,deniz,hava,kara düzenlemesinde,bilgisayar yazılımlarında,fabrikalardaki makinalarda,inşaat ekipmanlarında,elektrik tesisatlarında,iş planlamasında,ele...

javafx

links  table view  javafx https://www.tutorialspoint.com/javafx/index.htm  - tutorialspoint javafx with scene https://www.javatpoint.com/javafx-labe l - javafx working with scene  java 8  https://www.geeksforgeeks.org/java-8-features/?ref=lbp java  https://www.geeksforgeeks.org/java/?ref=lbp

c++-beginner

begin of code: #include <iostream>  using namespace std; int main(){ input int a, b; cin>>a>>b; output cout<<a<<b; newline when print cout << a <<endl; Conditional == equal != not equal <= >= < > int points=101; if(points>70){ cout << "hoy yah"; } else if(points==70){ cout<<"konoriki"; } else{ cout << "moko"; } int choice=2 switch(choice){ case 1: cout<< "bud"; break; case 2: cout<<"choco"; break; default: cout << "yoyo"; }

PHP MYSQL notes

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff TR: Create DB Collation Supported language: gözönünde bulundur Most common: UTF-general-cı Türkçe: ISO 8859-9 (latin5) windows 1254 utf-8 çok daha iyi ama dezavantaj daha çok byte Data Type Int - collation boş - size boş String - bu field her zaman  Char olmalı-çünkü =255...

PHP-Read Write File

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff   < Beginner PHP >< Array >< Loop >< Function >< Pre-Def variable >< Session > < Read Write File > < CRUD > < Advanced PHP >< PHP MySQL PHP MyAdmin >< PHP MySQL Notes > Working with Files & Writing to a file Function...

JS-Loop and If

   < Beginner JS >< Function >< Variable >< Loop-If >< OOP > if statement if(MemberAge<18){ document.write("teen"); } if..else if(MemberAge<18){ document.write("teen"); } else{ document.write("big"); } if...else  if...else if(MemberAge<18){ document.write("teen"); } else if(MemberAge>18){ document.write("adult"); } else{ document.write("just 18"); } Switch statement Ex1: switch(memcat){ case1: Fee=100; case2: Fee=150; case3: Fee=300;} Ex2: with break switch(memcat){ case1: Fee=100; break; case2: ...; } Ex3: no matching than default case switch(memcat){ case1: Fee=100; break; case2: ...; default: Fee:400; } Counting and Looping Executing a portion of code over and over again until an intermediaite condition accurs For statement Used as counter Syntax: for(start;condition;expression)statement Ex: var Number; for(Number=0;Number<=10;Number++) document.write("Num"+Number+...

JS-OOP

   < Beginner JS >< Function >< Variable > < Loop-If > < OOP > this member it represents the class itself it has direct access to all properties of its parent class function Hand(side,fingers,nails){ this.LeftOrRight =side; this.NbrOfFingers=fingers this.NailState=nails; } name of the class : Hand  properties :  (side,fingers,nails)  // properties of the function / of the class NailState  // property of the argument argument (value provided for each property) this.LeftOrRight =side; // argument of the function / of the class =nails;     // argument of the argument class: function Hand(side,fingers,nails){ this.LeftOrRight =side; this.NbrOfFingers=fingers this.NailState=nails; } This It has direct access to all properties of its parent class You must use it to create a class Before using a class you must declare it. var dogHand=newHand("Right",5,false,true); name of the object: dogHand name of the class: Hand argu...