جدول الإختبارات المُتفق عليه :-
أندرويد :- السبت 28 أكتوبر
تطوير ويب :- الثلاثاء 31 اكتوبر
تحليل وتصميم نظم :- السبت 4 نوفمبر
أمنية معلومات :- الثلاثاء 7 نوفمبر
محاسبة :- السبت 11 نوفمبر
طرق بحث :- الثلاثاء 14 نوفمبر
بإنتظار تأكيد الجدول من الكنترول
أندرويد :- السبت 28 أكتوبر
تطوير ويب :- الثلاثاء 31 اكتوبر
تحليل وتصميم نظم :- السبت 4 نوفمبر
أمنية معلومات :- الثلاثاء 7 نوفمبر
محاسبة :- السبت 11 نوفمبر
طرق بحث :- الثلاثاء 14 نوفمبر
بإنتظار تأكيد الجدول من الكنترول
👍1
6_Symmetric Ciphers.pptx
2 MB
كلام الدكتور عبدالرحمن الصبري بخصوص التكاليف :-
كل واحد يطبق خوارزمية من خوارزميات التشفير اللي اخذناهن اليوم من سلايدة 22 وما بعدها
كل واحد يطبق خوارزمية من خوارزميات التشفير اللي اخذناهن اليوم من سلايدة 22 وما بعدها
IS4 PM_2025
منقول من الأستاذة فردوس الحرازي هذي الادوات اللي بياخذها يرسل للمناديب اليوم ويحدد الجزئية اللي بيشرحها ضروري اليوم
كلام الاستاذة فردوس الحرازي :-
ضروري اليوم إرسالها للمناديب مع تحديد الأداة وموضوع الشرح
ضروري اليوم إرسالها للمناديب مع تحديد الأداة وموضوع الشرح
منقول من الأستاذ باسم الصوملي:-
المحاضرة القادمة كويز في قواعد البيانات + php forms
وأيضاً المناقشة النهائية للي مشاريعهم مكتملة
الاسبوع 12 المناقشة النهائية
المحاضرة القادمة كويز في قواعد البيانات + php forms
وأيضاً المناقشة النهائية للي مشاريعهم مكتملة
الاسبوع 12 المناقشة النهائية
IS4 PM_2025
Photo
إجابات أسئلة الإختبار :-
What does PHP stand for?
i) Personal Home Page
ii) Hypertext Preprocessor
iii) Pretext Hypertext Processor
iv) Preprocessor Home Page
A. Both (i) and (ii)
B. Both (ii) and (iv)
C. Only (ii)
D. Only (iii)
الإجابة A
Which of the looping statements is/are supported by PHP?
i) for loop
ii) while loop
iii) do-while loop
iv) foreach loop
A. (i) and (ii)
B. (i), (ii) and (iii)
C. All of the mentioned
D. None of the mentioned
الإجابة C
Which of the following php statement/statements will store 111 in variable num?
i) int $num = 111;
ii) int mum = 111;
iii) $num = 111;
iv) 111 = $num;
الإجابة iii
What will be the output of the following PHP code?
< ?php
$a = "clue";
$a .= "get";
echo "$a";
?>
a. get
b. true
c. false
d. clueget
الإجابة d
What will be the output of the following php code
< ?php
$num = 1;
$num1 = 2;
print $num . "+". $num1 ;
?>
a. 3
b. 1+2
c. 1.+.2
d. Error
الإجابة b
What will be the output of the following code?
< ?php
function track() {
static $count = 0;
$count++;
echo $count ; }
track();
track();
track(); ?>
a. 123
b. 111
c. 000
d. 012
الإجابة a
Which one of the following databases has PHP supported almost since the beginning?
a. Oracle Database
b. SQL
c. SQL+
d. MySQL
e. None
الإجابة d
< ?php
$hello = "Hello World";
$bye = "Bye";
echo $hello;"$bye"; ?>
a. Hello World
b. Bye
c. Hello worldBye
d. Error
الإجابة a
PHP files have a default file extension of.
B. .xml
A. .html
C. .php
D. .ph
الإجابة C
Which of the following must be installed on your computer so as to run PHP noscript?
i) Adobe Dreamweaver
ii) PHP
iii) Apache
iv) IIS
الإجابة PHP&Apache&IIS
We can use ___ to comment a single line?
i) /?
ii) //
iii) #
iv) /* */
الإجابة // & # & /* */
If $a = 12 what will be returned when
($a == 12) ? 5 : 1
is executed?
a. 12
b. 1
c. Error
d. 5
الإجابة d
What will be the output of the following PHP code ?
< ?php
int $one = 1;
echo "$one"; ?>
a. 0
b. 1
c. $one
d. Error
الإجابة d
What will be the output of the following PHP code?
< ?php
$team = "arsenal";
switch ($team) {
case "manu":
echo "I love man u";
case "arsenal":
echo "I love arsenal";
case "manc":
echo "I love manc"; }
?>
a. I love arsenal
b. Error
c. I love arsenalI love manc d. I love arsenalI love mancI love manu
الإجابة c
Which one of the following functions will convert a string to all uppercase?
a. strtoupper()
b. uppercase()
c. str_uppercase()
الإجابة a
What will be the output of the following PHP code?
< ?php
$num = 10;
echo 'What is her age? \n She is $num years
old'; ?>
1.What is her age? \n She is $num years old
2.What is her age? She is $num years old
3.What is her age? She is 10 years old
4.What is her age? She is 10 years old
الإجابة 1
Which of the following is/are a PHP code editor?
1. Notepad
2. Notepad++
3. Adobe Dreamweaver
4. PDT
A. Only 4
B. All of the mentioned
C. 1, 2 and 3
D. Only 3
الإجابة B
What does PHP stand for?
i) Personal Home Page
ii) Hypertext Preprocessor
iii) Pretext Hypertext Processor
iv) Preprocessor Home Page
A. Both (i) and (ii)
B. Both (ii) and (iv)
C. Only (ii)
D. Only (iii)
الإجابة A
Which of the looping statements is/are supported by PHP?
i) for loop
ii) while loop
iii) do-while loop
iv) foreach loop
A. (i) and (ii)
B. (i), (ii) and (iii)
C. All of the mentioned
D. None of the mentioned
الإجابة C
Which of the following php statement/statements will store 111 in variable num?
i) int $num = 111;
ii) int mum = 111;
iii) $num = 111;
iv) 111 = $num;
الإجابة iii
What will be the output of the following PHP code?
< ?php
$a = "clue";
$a .= "get";
echo "$a";
?>
a. get
b. true
c. false
d. clueget
الإجابة d
What will be the output of the following php code
< ?php
$num = 1;
$num1 = 2;
print $num . "+". $num1 ;
?>
a. 3
b. 1+2
c. 1.+.2
d. Error
الإجابة b
What will be the output of the following code?
< ?php
function track() {
static $count = 0;
$count++;
echo $count ; }
track();
track();
track(); ?>
a. 123
b. 111
c. 000
d. 012
الإجابة a
Which one of the following databases has PHP supported almost since the beginning?
a. Oracle Database
b. SQL
c. SQL+
d. MySQL
e. None
الإجابة d
< ?php
$hello = "Hello World";
$bye = "Bye";
echo $hello;"$bye"; ?>
a. Hello World
b. Bye
c. Hello worldBye
d. Error
الإجابة a
PHP files have a default file extension of.
B. .xml
A. .html
C. .php
D. .ph
الإجابة C
Which of the following must be installed on your computer so as to run PHP noscript?
i) Adobe Dreamweaver
ii) PHP
iii) Apache
iv) IIS
الإجابة PHP&Apache&IIS
We can use ___ to comment a single line?
i) /?
ii) //
iii) #
iv) /* */
الإجابة // & # & /* */
If $a = 12 what will be returned when
($a == 12) ? 5 : 1
is executed?
a. 12
b. 1
c. Error
d. 5
الإجابة d
What will be the output of the following PHP code ?
< ?php
int $one = 1;
echo "$one"; ?>
a. 0
b. 1
c. $one
d. Error
الإجابة d
What will be the output of the following PHP code?
< ?php
$team = "arsenal";
switch ($team) {
case "manu":
echo "I love man u";
case "arsenal":
echo "I love arsenal";
case "manc":
echo "I love manc"; }
?>
a. I love arsenal
b. Error
c. I love arsenalI love manc d. I love arsenalI love mancI love manu
الإجابة c
Which one of the following functions will convert a string to all uppercase?
a. strtoupper()
b. uppercase()
c. str_uppercase()
الإجابة a
What will be the output of the following PHP code?
< ?php
$num = 10;
echo 'What is her age? \n She is $num years
old'; ?>
1.What is her age? \n She is $num years old
2.What is her age? She is $num years old
3.What is her age? She is 10 years old
4.What is her age? She is 10 years old
الإجابة 1
Which of the following is/are a PHP code editor?
1. Notepad
2. Notepad++
3. Adobe Dreamweaver
4. PDT
A. Only 4
B. All of the mentioned
C. 1, 2 and 3
D. Only 3
الإجابة B
❤4👍1
IS4 PM_2025
الدكتور منصور القباطي حدد لكل طالب سؤال واحد بحسب رقم الطلاب في الكشف :- من رقم ١ إلى ١٠ اسئلة شابتر 1 من رقم ١١ إلى ٢٠ اسئلة شابتر 2 من رقم ٢١ إلى ٣٠ اسئلة شابتر 3 من رقم ٣١ إلى ٤٠ اسئلة شابتر 4 من رقم ٤١ إلى ٥٠ اسئلة شابتر 5 من رقم ٥١ إلى ٦٠ اسئلة…
حلول الأسئلة:-
https://quizlet.com/410442259/cis330-ch1-review-flash-cards/
https://issuu.com/salinasoren/docs/systems-analysis-and-design-11th-ed_99c9e7a9d0bea9
https://quizlet.com/322346862/chapter-3-the-keys-flash-cards/
https://quizlet.com/335046157/ch-4-systems-analysis-flash-cards/
https://quizlet.com/334877778/chapter-5-flash-cards/
https://quizlet.com/410442259/cis330-ch1-review-flash-cards/
https://issuu.com/salinasoren/docs/systems-analysis-and-design-11th-ed_99c9e7a9d0bea9
https://quizlet.com/322346862/chapter-3-the-keys-flash-cards/
https://quizlet.com/335046157/ch-4-systems-analysis-flash-cards/
https://quizlet.com/334877778/chapter-5-flash-cards/
❤3👍1
مقترح مناديب الملتقى للدفع
مستوى ثالث:
# الجدول المقترح للإختبارت ...#
مستوى ثالث
IS.3 (1طلاب):
1- اندرويد
2- تطوير وتصميم الويب
3- تحليل وتصميم النظم
4- امنية معلومات
5- محاسبة
6- طرق بحث
مستوى ثالث
IS.3 ( الطالبات ):
1- تطوير التطبيقات (اندرويد )
2- تحليل وتصميم النظم
3- تطوير الويب
4- امنية معلومات
5- طرق بحث
6- محاسبة
*المقترح النهائي بحسب الأصوات*
IS.3
1- تطوير تطبيقات (اندرويد) : اول اختبار بحسب التصويت
2- تصميم وتطوير الويب : ثاني اختبار بحسب التصويت
3- تحليل وتصميم النظم : ثالث اختبار بحسب التصويت
4- امنية معلومات : رابع اختبار بحسب التصويت
5- محاسبة : خامس اختبار بحسب التصويت
6- طرق بحث : سادس اختبار بحسب التصويت
🔰 ملتقى الطالب الجامعي 🔰
مستوى ثالث:
# الجدول المقترح للإختبارت ...#
مستوى ثالث
IS.3 (1طلاب):
1- اندرويد
2- تطوير وتصميم الويب
3- تحليل وتصميم النظم
4- امنية معلومات
5- محاسبة
6- طرق بحث
مستوى ثالث
IS.3 ( الطالبات ):
1- تطوير التطبيقات (اندرويد )
2- تحليل وتصميم النظم
3- تطوير الويب
4- امنية معلومات
5- طرق بحث
6- محاسبة
*المقترح النهائي بحسب الأصوات*
IS.3
1- تطوير تطبيقات (اندرويد) : اول اختبار بحسب التصويت
2- تصميم وتطوير الويب : ثاني اختبار بحسب التصويت
3- تحليل وتصميم النظم : ثالث اختبار بحسب التصويت
4- امنية معلومات : رابع اختبار بحسب التصويت
5- محاسبة : خامس اختبار بحسب التصويت
6- طرق بحث : سادس اختبار بحسب التصويت
🔰 ملتقى الطالب الجامعي 🔰
👍2🔥1
IS4 PM_2025
Photo
إجابة Bard AI
Sessions in PHP work by creating a unique ID (UID) for each visitor and storing variables based on this UID. This data is stored on the server, and the session ID is sent to the client's browser in a cookie. Each time the visitor makes a request to the server, the session ID is sent back in the cookie. The server then uses the session ID to retrieve the visitor's session data.
Cookies can also be used to store unique IDs for each visitor, but they are not typically used in this way. Cookies are typically used to store small amounts of data that are specific to the visitor, such as their preferences or login status.
Here is an example of how to create a unique session ID and store variables in a session in PHP:
Once the visitor has a unique session ID, you can use it to store any type of data in the session. This data will be available to you on subsequent requests from the same visitor.
For example, you could use the session ID to store the visitor's shopping cart items, their login status, or their preferences.
To retrieve the session data for a particular visitor, you can use the following code:
The session data will be returned as an array. You can then access the individual values in the array by their key.
For example, to get the visitor's unique ID, you would use the following code:
php
session_start(); // Start the session
// Get the session ID
$session_id = $_COOKIE['session_id'];
// Retrieve the session data
$session_data = $_SESSION[$session_id];
// Get the visitor's unique ID
$uid = $session_data['uid'];
Sessions in PHP work by creating a unique ID (UID) for each visitor and storing variables based on this UID. This data is stored on the server, and the session ID is sent to the client's browser in a cookie. Each time the visitor makes a request to the server, the session ID is sent back in the cookie. The server then uses the session ID to retrieve the visitor's session data.
Cookies can also be used to store unique IDs for each visitor, but they are not typically used in this way. Cookies are typically used to store small amounts of data that are specific to the visitor, such as their preferences or login status.
Here is an example of how to create a unique session ID and store variables in a session in PHP:
php
session_start(); // Start the session
// Generate a unique session ID
$session_id = session_id();
// Store a variable in the session
$_SESSION['uid'] = $session_id;
// Retrieve the variable from the session
$uid = $_SESSION['uid'];
Once the visitor has a unique session ID, you can use it to store any type of data in the session. This data will be available to you on subsequent requests from the same visitor.
For example, you could use the session ID to store the visitor's shopping cart items, their login status, or their preferences.
To retrieve the session data for a particular visitor, you can use the following code:
php
session_start(); // Start the session
// Get the session ID
$session_id = $_COOKIE['session_id'];
// Retrieve the session data
$session_data = $_SESSION[$session_id];
The session data will be returned as an array. You can then access the individual values in the array by their key.
For example, to get the visitor's unique ID, you would use the following code:
php
session_start(); // Start the session
// Get the session ID
$session_id = $_COOKIE['session_id'];
// Retrieve the session data
$session_data = $_SESSION[$session_id];
// Get the visitor's unique ID
$uid = $session_data['uid'];
👍1💔1
قوالب التوصيف.docx
33.3 KB
الذي تم شرحه مع الأستاذة امتياز في اخر محاضرة
معايير_التكاليف_لدكتور_محمد_فيصل_هبه_الجدادي.pdf
166 KB
المعايير اللي تكلم عليها الدكتور محمد فيصل
لكن لا أعتقد انها مقررة علينا كون التكاليف يدوية
لكن لا أعتقد انها مقررة علينا كون التكاليف يدوية
IS4 PM_2025
مستند Microsoft Word جديد.docx
التوصيف هذا قديم من عام 2021