1. Write an algorithm to find the largest of a set of numbers. You do not know the number of numbers.
2. Write an algorithm in pseudocode that finds the average of (n) numbers. For cxample numbers are
[4,5,14,20,3,6]
لو عندي روبوت اتحكم فيه عن بعد يحث الناس على التباعد الاجتماعي بسبب فيروس كورونا والكميرات تحصي عدد الافراد وتطلق صوت للابتعاد كيف ارسم له use case و sequence diagram
وactive diagram??
أرسم الرسمتين Use case and sequence diagrams للسيناريو التالي:
نظام صرافة بنك ATM يقوم من خلالها المستخدم بالإطلاع على رصيده وسحب وإيداع مبلغ وتحويل أموال داخليا وخارجيا
إذا واجه النظام أي خلل يقوم الفني بعمل صيانة وإصلاح لمشاكل النظام بينما يستطيع البنك نفسه إدارة ومتابعة كامل عمليات المستخدمين والموظفين
Write a php code that creates an associative array where the key indexes are the persons' names and the values are their height
Heights
And display these values (echo)
Using a llop
Loop
نطلب من اليوز يدخل قيمتين قيمة x و y وينقر على زر، البيانات هذي form ترسل بطريقة Get المفروض لما ينقر على زر containing قارن رح تخرج له رساله إما تقوله x اصغر من y او x اكبر من y او x مساويه لy
Write a php code that creates an associative array where the key indexes are the persons' names and the values are their height
Heights -
(And display these values (echo -
Using a llop -
Loop -
Use the following program with Pascal like syntax for the questions below that ask about parameter passing mechanisms.
program myprogram;
var
W : integer;
Z : array [0..2] of integer;
procedure Swap(M : integer; N : integer);
begin
temp : integer;
temp := M;
M := N;
N := temp;
end;
begin {main}
W := 1;
Z[0] := 3;
Z[1] := 2;
Z[2] := 1;
Swap(W, z[W]);
writeln(W);
writeln(z[0]);
writeln(z[1]);
writeln(z[2]);
Swap(W, z[W]);
writeln(z[0]);
writeln(z[1]);
writeln(z[2]);
end.
By value By reference By name
هذي 👇الاجابه بالنسبه للreference
وهذا الاجابه للvalue