1. 1.
    0
    1) What is a variable and what is meant by the value of a variable?
    2) What is the difference between a variable and a key word?
    3) What are the functions of const and volatile?
    4) What is initialization? Why is it important?
    5) Which of the following are valid and invalid constants and why?
    0.0001 5x1.5 9.9999 +100 55.45E-2 "15.59" -45.1 -1.55E+29 0.00000001
    ···
  2. 2.
    0
    4
    a) initialization is the process of locating and using the defined values for variable data that is used by a computer program.
    b) when the operating system or an application program is first loaded into memory, a part of the program performs initialization - that is, it looks in the initialization files, finds definite values to substitute for variable values, and acts accordingly
    ···
  3. 3.
    0
    oha beyler mod cevaplıyo mk. elektrik elektronik benim. cvplicaktım ama baktım mod iddalı verdim şukusunu
    ···
  4. 4.
    0
    varrya hepinize şuku veriyom beyler çok sağolun lan
    ···
  5. 5.
    0
    aha mod amk eksileyin
    ···
  6. 6.
    0
    sıkıldım amk. diğerlerini de başkası yapsın panpa.
    ···
  7. 7.
    0
    @16 artislik de yapıyo pezo
    ···
  8. 8.
    0
    6) 40 yapar
    ···
  9. 9.
    0
    şu 5 i de yapsın biri zütünü yiyem
    ···
  10. 10.
    0
    3)

    a member function declared with the const qualifier can be called for constant and nonconstant objects. a nonconstant member function can only be called for a nonconstant object. similarly, a member function declared with the volatile qualifier can be called for volatile and nonvolatile objects. a nonvolatile member function can only be called for a nonvolatile object.
    ···
  11. 11.
    0
    volatile program içerisinde değeri aniden değişebilen değişkenlerdir örneğin, bir parametre alan, aldığı integerin karesini hesaplayıp döndüren bi fonksiyonda, parametre volatile bi değişken ise, kare alma işleminde (örneğin parametre 5);

    5 * 5 işleminde çarpi işleminden hemen sonra dışardan bi program parametrenin değerini değiştirirse, örneğin 9 yaparsa,

    5 * 9 = 45 yapar,

    yani 25 döndürmesini beklediğin fonksiyon 45 döndürür.

    yani volatile program içerisinde aniden değeri değişebilen değişkenlerdir.

    bu kıyağımı da unutma amk.
    ···
  12. 12.
    0
    Yukardaki soruları bi cevaplasanız zütünüzü yicem amk.. ilk derslerden yarra yemiş bulunmaktayım.
    ···
  13. 13.
    0
    hepsi kolay bitek volatile zor ödevini yap onu bulamazsan söylerim.
    ···
  14. 14.
    0
    hangi ders lan bu introduction to logic mi yoksa
    ···
  15. 15.
    0
    3-bunlar program içinde değeri degiştirilemeyen sabitlerdir. public ve private tipinde sabitler tanımlanabiliilir. public sabitlere tüm modüller içinden ulaşılabilir. private türündeki sabitler ise sadece tanımlandıkları modül içersinde geçerlidirler.
    ···
  16. 16.
    0
    dıbına koyim senin türkçeye çevirememiş binç
    ···
  17. 17.
    0
    1
    a) variable: a symbolic name associated with a value and whose associated value may be changed
    b) in computing, a variable may be employed in a repetitive process: assigned a value in one place, then used elsewhere, then reassigned a new value and used again in the same way

    2 birazdan..
    ···
  18. 18.
    0
    initialization is important because eşşeğin gibinden dolayı
    ···
  19. 19.
    0
    2)

    a keyword is a reserved word, used by the programming language to establish actions or commands. for example, in the line:

    while (value < 100) {
    //block of code
    }

    "while" is a keyword, used to indicate iteration (loop) of what's inside the block of code.

    variables are user-defined words that are able to hold values. in the previous case, "value" can be thought as a variable.
    ···
  20. 20.
    0
    yardımsever mod mu olur amk
    ···