Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Forum kuralları
Forum kurallarını okuyup, uyunuz!
Forum kurallarını okuyup, uyunuz!
Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Computing II
Sample test
1. Which of those terms is not true?
• Edit1.Text := FloatToStr(5);
• Edit1.Text := StrToInt(5);
• Edit1.Text := IntToStr(5);
2 Which of these types is for integer data?
• Real
• Integer
• String
• Boolean
3. What is the result of next operation: (7 mod 2)?
.......................................................................................................................................
4. Address to the i-element of array named book is made by:
• book
• book(i)
• book
5. Proper declaration of variable named letter as type character is:
• char := letter;
• type letter = char;
• letter : char;
6. Identifiers may include:
• Capital and small alphabetic
• Numbers and capital and small alphabetic
• random characters from the keyboard
7. Proper declaration of variable money is:
• real = money;
• money : real;
• integer : money;
8. How to record the following operations: removal from the variable loop 10, then assigning the result of variable sum
• sum := loop - 10;
• loop = sum - 10;
• sum = 10 - loop;
9. How to record the following operations: sum of two whole numbers digit and value then assigning the result of variable total
• new integer total := digit + value;
• value := digit + total;
• digit := total - value;
• total := digit + value;
10. Which of the following operators for comparison is valid:
• = =
• ><
• !=
• >
11. What made the procedure ShowMessage?
• displays a dialog box with a message and button;
• displays a dialog box with a message and button OK;
• displays a dialog box with a message without buttons;
• нито едно от изброените.
12. Какво прави стандартната функция FloatToStr?
• convert string to real number
• convert string to integer
• convert real number to string
• none of those
13. Как става зареждането на текстов файл в memo?
• memo1.Load (filename: string);
• memo1.file (filename: string);
• memo1.lines.loadformfile(filename: string);
• текстов файл не може да бъде зареден в memo
14. Is it true? The name of the module and project in Delphi may be the same.
• Yes
• No
15. Define variable array named numbers with 20 elements of type integer
• var numbers = ARRAY[1..20] of int;
• var numbers = ARRAY[1..20] of integer;
• var numbers : ARRAY[1..20] of integer;
• var numbers := ARRAY[0..19] of int;
16. Each command is completed by:
• new line
• semicolon (;)
• point
• comma
17. Define integer number named sum
• sum : integer;
• integer sum;
• integer : sum;
• sum integer;
18. Which of the components has possibilities to print more than one line?
• Label
• Edit
• Memo
• All of them
19. Как се добавя нов ред информация в Memo?
• memo1.Lines (const s:string);
• memo1.Items.Add (const s:string);
• memo1.Lines.Add (const s:string);
20. How to open a standard dialog – OpenDialog?
• OpenDialog1.Execute;
• OpenDialog1.Show;
• OpenDialog1.Open;
• OpenDialog1;
21. What is the type:
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
• Union
• Integer
• Array
• Class
22. Which of this event is caused when you press a key on the keyboard?
• OnKeyDown;
• OnKeyPress;
• OnKeyUp;
• None of these.
Sample test
1. Which of those terms is not true?
• Edit1.Text := FloatToStr(5);
• Edit1.Text := StrToInt(5);
• Edit1.Text := IntToStr(5);
2 Which of these types is for integer data?
• Real
• Integer
• String
• Boolean
3. What is the result of next operation: (7 mod 2)?
.......................................................................................................................................
4. Address to the i-element of array named book is made by:
• book
• book(i)
• book
5. Proper declaration of variable named letter as type character is:
• char := letter;
• type letter = char;
• letter : char;
6. Identifiers may include:
• Capital and small alphabetic
• Numbers and capital and small alphabetic
• random characters from the keyboard
7. Proper declaration of variable money is:
• real = money;
• money : real;
• integer : money;
8. How to record the following operations: removal from the variable loop 10, then assigning the result of variable sum
• sum := loop - 10;
• loop = sum - 10;
• sum = 10 - loop;
9. How to record the following operations: sum of two whole numbers digit and value then assigning the result of variable total
• new integer total := digit + value;
• value := digit + total;
• digit := total - value;
• total := digit + value;
10. Which of the following operators for comparison is valid:
• = =
• ><
• !=
• >
11. What made the procedure ShowMessage?
• displays a dialog box with a message and button;
• displays a dialog box with a message and button OK;
• displays a dialog box with a message without buttons;
• нито едно от изброените.
12. Какво прави стандартната функция FloatToStr?
• convert string to real number
• convert string to integer
• convert real number to string
• none of those
13. Как става зареждането на текстов файл в memo?
• memo1.Load (filename: string);
• memo1.file (filename: string);
• memo1.lines.loadformfile(filename: string);
• текстов файл не може да бъде зареден в memo
14. Is it true? The name of the module and project in Delphi may be the same.
• Yes
• No
15. Define variable array named numbers with 20 elements of type integer
• var numbers = ARRAY[1..20] of int;
• var numbers = ARRAY[1..20] of integer;
• var numbers : ARRAY[1..20] of integer;
• var numbers := ARRAY[0..19] of int;
16. Each command is completed by:
• new line
• semicolon (;)
• point
• comma
17. Define integer number named sum
• sum : integer;
• integer sum;
• integer : sum;
• sum integer;
18. Which of the components has possibilities to print more than one line?
• Label
• Edit
• Memo
• All of them
19. Как се добавя нов ред информация в Memo?
• memo1.Lines (const s:string);
• memo1.Items.Add (const s:string);
• memo1.Lines.Add (const s:string);
20. How to open a standard dialog – OpenDialog?
• OpenDialog1.Execute;
• OpenDialog1.Show;
• OpenDialog1.Open;
• OpenDialog1;
21. What is the type:
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
• Union
• Integer
• Array
• Class
22. Which of this event is caused when you press a key on the keyboard?
• OnKeyDown;
• OnKeyPress;
• OnKeyUp;
• None of these.
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
kolay sorular ama delphi ye yeni başladık cevaplarsanız memnun olurum 

Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
1 - Edit1.Text := StrToInt(5);
2 - Integer
3 - 1
4 - book
5 - letter : char;
6 - Numbers and capital and small alphabetic
7 - money : real;
8 - sum := loop - 10;
9 - total := digit + value;
10 - >
11 - displays a dialog box with a message and button OK;
12 - convert real number to string
13 - memo1.lines.loadformfile(filename: string);
14 - Yes
15 - var numbers : ARRAY[1..20] of integer;
16 - semicolon (;)
17 - sum : integer;
18 - Memo
19 - memo1.Lines.Add (const s:string);
20 - OpenDialog1.Execute;
21 - Class
22 -OnKeyPress;
2 - Integer
3 - 1
4 - book
5 - letter : char;
6 - Numbers and capital and small alphabetic
7 - money : real;
8 - sum := loop - 10;
9 - total := digit + value;
10 - >
11 - displays a dialog box with a message and button OK;
12 - convert real number to string
13 - memo1.lines.loadformfile(filename: string);
14 - Yes
15 - var numbers : ARRAY[1..20] of integer;
16 - semicolon (;)
17 - sum : integer;
18 - Memo
19 - memo1.Lines.Add (const s:string);
20 - OpenDialog1.Execute;
21 - Class
22 -OnKeyPress;
Volkan KAMADAN
www.polisoft.com.tr
www.polisoft.com.tr
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Merhaba @MErNur,
Hangi okulda okuduğunuzu ve kaçıncı sınıfta olduğunuzu öğrenebilir miyim acaba?
Hangi okulda okuduğunuzu ve kaçıncı sınıfta olduğunuzu öğrenebilir miyim acaba?
Batuhan TAŞDÖVEN
'Yükseldikçe küçülen bir uçurtma..'
'Yükseldikçe küçülen bir uçurtma..'
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Sofya teknik üniversitesi 1. sınıf 
Neden hocam
// Bu arda çok teşekkür ederim.

Neden hocam
// Bu arda çok teşekkür ederim.
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
lise son sınıf öğrencisiyim, bilgisayar mühendisliği düşünüyorum.. Acaba okuyanlar memnunmudur diye soruyorum hep kendime.. Belki sizde okuyorsunuzdur diye düşündüm.. Sağolun yinede 

Batuhan TAŞDÖVEN
'Yükseldikçe küçülen bir uçurtma..'
'Yükseldikçe küçülen bir uçurtma..'
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
kendini geliştirirsen boş kalmazsın ama şimdiden yoğunlaş belli dillere
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Şuan delphi ve Flash konusunda bilgim var.
+Flash ile yaptığım bir kaç basit program,
+Delphi ile:
-Ezcane Otomasyon Programı
-Dershane Etüt Programı
-Matematiksel Fonksiyonların Grafiksel Gösterimi
-Windows'umu kişiselleştiren arkaplanda çalışan bir kaç basit program
-Vista ile gelen masaüstü saatine benzeyen bir program
-İyi bir webbrowser
-Matriksel işlemler ile kriptografi programı
-Şuan ise MATLAB benzeri fakat çok daha basit bir program üzerinde çalışıyorum..
Kısacası ben mutluyum bu yolda..
Hedefim olan ODTÜ Bilgisayar Müh. kazanabilirsem şuan bildiklerimin bana fazlasıyla + olacağına eminim. 25 gün kaldı bakalım ne olacak:)
İlginiz için sağolun..
+Flash ile yaptığım bir kaç basit program,
+Delphi ile:
-Ezcane Otomasyon Programı
-Dershane Etüt Programı
-Matematiksel Fonksiyonların Grafiksel Gösterimi
-Windows'umu kişiselleştiren arkaplanda çalışan bir kaç basit program
-Vista ile gelen masaüstü saatine benzeyen bir program
-İyi bir webbrowser
-Matriksel işlemler ile kriptografi programı
-Şuan ise MATLAB benzeri fakat çok daha basit bir program üzerinde çalışıyorum..
Kısacası ben mutluyum bu yolda..

İlginiz için sağolun..
Batuhan TAŞDÖVEN
'Yükseldikçe küçülen bir uçurtma..'
'Yükseldikçe küçülen bir uçurtma..'
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
qamyoncu umarım istediğin yeri kazanırsın
procedure TForm1.FormCreate(Sender: TObject);
begin
halt;
end;
begin
halt;
end;
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
umarım.. iyi dilekleriniz için teşekkürler..
malûm; üniversite ismi fazla önemli bu sıralar. Tabi herşey en başta kişisel gelişimde.. 


Batuhan TAŞDÖVEN
'Yükseldikçe küçülen bir uçurtma..'
'Yükseldikçe küçülen bir uçurtma..'
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
İş hayatında bi laf vardır ..
"Diplomanla Ağırlanır Bilginle Uğurlanırsın"
Not : Her zaman geçerli olmayabliyor :d:D
"Diplomanla Ağırlanır Bilginle Uğurlanırsın"
Not : Her zaman geçerli olmayabliyor :d:D
amatör küme programcı 

Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Uzun zaman önce açılmış bir konu.. Şans eseri girdim baktım, yazdığım yanıtları görünce şaşırdım:)
Şuan ODTÜ Bilgisayar Mühendisliği Hazırlık öğrencisiyim. Yazmışım yukarıya burayı istiyorum diye. İlginç bir durum:) Daha bölüme geçemedim ama uğraşlarım beni mutlu ediyor şuan. Yaz okulunda C Programming dersini vermeyi düşünüyorum hatta. Soruların yunanca olanları haricini yaptım:) Mutluyum, umarım bu bölümü isteyen herkes mutlu olur. Ve güzel bir söz gerçekten @barutali, teşekkürler
Şuan ODTÜ Bilgisayar Mühendisliği Hazırlık öğrencisiyim. Yazmışım yukarıya burayı istiyorum diye. İlginç bir durum:) Daha bölüme geçemedim ama uğraşlarım beni mutlu ediyor şuan. Yaz okulunda C Programming dersini vermeyi düşünüyorum hatta. Soruların yunanca olanları haricini yaptım:) Mutluyum, umarım bu bölümü isteyen herkes mutlu olur. Ve güzel bir söz gerçekten @barutali, teşekkürler

Batuhan TAŞDÖVEN
'Yükseldikçe küçülen bir uçurtma..'
'Yükseldikçe küçülen bir uçurtma..'
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
olumlu yönde anlaman gerçekten beni mutlu etti
Ben lise mezunuyum ama yanımda çok fazla bilgisayar mühendisi staj yaptı ve içlerinden sadece 1 tanesi gerçekten işi öğrenmeye çalışmış benim gördüğüm oydu ve sadece o bahsi geçen arkadaşa çalışması için teklif yapıldı..
diğerleri kendini geliştirmediği sürece iş yerlerinde Diplomaları ile ağırlancaklar bir süre sonra bilgileriyle uğurlancaklar .. Bizim orda olduğu gibi ..

diğerleri kendini geliştirmediği sürece iş yerlerinde Diplomaları ile ağırlancaklar bir süre sonra bilgileriyle uğurlancaklar .. Bizim orda olduğu gibi ..
Re: Sınav Sorularım 22 Tane Kolay Test Şeklinde 2 dknızı Almaz..
Bedi-üz zaman said nursi efendi hazretlerine ayit bir söz.
biz insani kiyafeti ile agirlar, fikri ile ugurlariz...
tabii is hayatinda kendilerine göre uyarlamislar.
bilginize...
biz insani kiyafeti ile agirlar, fikri ile ugurlariz...
tabii is hayatinda kendilerine göre uyarlamislar.
bilginize...
kıdemsiz üye