- إنضم
- 14 أكتوبر 2014
- المشاركات
- 114
- مستوى التفاعل
- 0
- النقاط
- 0
حل واجبات الجامعة العربية المفتوحة
حل واجبات الجامعه العربية المفتوحه مع الشرح
لجميع فروع الجامعة ولجميع التخصصات ولجميع المواد
حلول نموذجية مضمونة وغير مكررة - قسم خاص للتربية
KSA-Kuwait - Bahrain -Oman - Jordon -Lebanon -Egypt-Sudan
الكويت البحرين عمان الأردن لبنان مصر البحرين حائل الرياض الدمام جدة المدينة المنورة الاحساء
(.turnitin./ ) فحص التشابه وفقا لنظام الجامعة عن طريق موقع كشف التشابه
اتصل : O544321455 - OO966544321455
واتس اب: 966544321455+
ايميل : a_al_shora@hot mail.com
سكايبي : a_al_shora
حل واجب 0.5.4.4.3.2.1.4.5.5 الجامعة العربية المفتوحة
حل واجبات الجامعة العربية المفتوحة O54.4.3.2.1.4.5.5 - OO96654.4.3.2.1.4.5.5
ايميل : a_al_shora @ h.o.t.m.ail.c.o.m
سكايبي: a_al_shora
واتس اب: OO96654.4.3.2.1.4.5.5
1
Course Code: M150A
Course Title: DATA, COMPUTING and INFORMATION - A
Question1: (20 marks)
1. List two benefits and two drawbacks of using Emails?
2. Using computers to solve problems requires four-way communication. Mention them.
3. A representation establishes a relationship between a form (symbol) and an associated meaning (or content). What are the two conditions that the representation must meet to be effective?
4. List the properties of representation.
5. List two consequences of using a complex representation?
Question 2: (20 marks)
1. Use truth table to check if the following two Boolean expressions equivalent or not:
Boolean expression 1: (A OR B) AND (NOT A OR NOT B)
Boolean expression 2: (A AND B) OR (NOT A AND NOT B)
2. For the given numbers find their equivalent in the specified base. Show your steps.
(1426)10 = ( ) 2
(1276)8 = ( ) 10
3. A movie requires 220 GB to be displayed in a computer. The size of each frame is 1.25 MB and the frames moves in a rate of 16 frames per second.
a. What is the number of frames in the movie?
b. Find the duration of the movie in seconds then in hours.
3
Question 3: (20 marks)
1. The following series “S1” represents the squares of the 10 integer numbers from 0 to 10.
S1: 0 1 4 9 16 25 36 49 64 81 100. Based on your programming knowledge in M150A, answer the following.
a. Create a JavaScript code that print out “S1”.
b. Specify the control instruction applied on “S1”.
c. Draw the flowchart diagram of your code.
2. Trace the following JavaScript code to show the exact output.
<HTML>
<HEAD>
<TITLE> Question3_Program_2
</TITLE>
<****** LANGUAGE="JavaScript]
var x, y;
y = 100;
x = 17 + 2 + 80;
********.write('First, x = ' + x + ' and y = ' + y);
********.write('<BR>');
x = y + 24;
x = x + 6;
x = 3 + x / 2;
********.write("Now, x = " + x + ' and y = ' + y + "");
x = y;
y = 11;
// y = y + 10;
********.write("Finally, x = " + x + " and y = " + y);
</******>
</HEAD>
<BODY>
</BODY>
</HTML>
4
3. Fibonacci series is defines as a series of numbers in which each number (Fibonacci number) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, etc. Write a JavaScript code that asks the user to enter a number and calculate the Fibonacci series for this number.
4. Write a JavaScript code that prints the following output?
100 90 80 70 60 50 40 30 20 10 90 80 70 60 50 40 30 20 10 80 70 60 50 40 30 20 10 70 60 50 40 30 20 10 60 50 40 30 20 10 50 40 30 20 10 40 30 20 10 30 20 10 20 10 10
5. Write a JavaScript program to read 10 positive values from the user, and then sum only the multiples of 3 and 5.
a. Run your program with print out a message about the sum.
b. Insert screenshot showing the program prompting the user for the number.
Faculty of Computer Studies
Course Code: M150A
Course Title: DATA, COMPUTING and INFORMATION - A
Tutor Marked Assignment
Cut-Off Date: Total Marks: 60
Contents
Question 1 ……………………..…………………………………..……… 2
Question 2 ……………………………..………………..………………… 2
Question 3 ………………………………..………………..……………… 3
Plagiarism Warning:
As per AOU rules and regulations, all students are required to submit their own TMA work and avoid plagiarism. The AOU has implemented sophisticated techniques for plagiarism detection. You must provide all references in case you use and quote another person's work in your TMA. You will be penalized for any act of plagiarism as per the AOU's rules and regulations.
Declaration of No Plagiarism by Student (to be signed and submitted by student with TMA work):
I hereby declare that this submitted TMA work is a result of my own efforts and I have not plagiarized any other person's work. I have provided all references of information that I have used and quoted in my TMA work.
Name of Student:
Signature:
Date:
2
Question1: (20 marks)
1. List two benefits and two drawbacks of using Emails?
2. Using computers to solve problems requires four-way communication. Mention them.
3. A representation establishes a relationship between a form (symbol) and an associated meaning (or content). What are the two conditions that the representation must meet to be effective?
4. List the properties of representation.
5. List two consequences of using a complex representation?
Question 2: (20 marks)
1. Use truth table to check if the following two Boolean expressions equivalent or not:
Boolean expression 1: (A OR B) AND (NOT A OR NOT B)
Boolean expression 2: (A AND B) OR (NOT A AND NOT B)
2. For the given numbers find their equivalent in the specified base. Show your steps.
(1426)10 = ( ) 2
(1276)8 = ( ) 10
3. A movie requires 220 GB to be displayed in a computer. The size of each frame is 1.25 MB and the frames moves in a rate of 16 frames per second.
a. What is the number of frames in the movie?
b. Find the duration of the movie in seconds then in hours.
3
Question 3: (20 marks)
1. The following series “S1” represents the squares of the 10 integer numbers from 0 to 10.
S1: 0 1 4 9 16 25 36 49 64 81 100. Based on your programming knowledge in M150A, answer the following.
a. Create a JavaScript code that print out “S1”.
b. Specify the control instruction applied on “S1”.
c. Draw the flowchart diagram of your code.
2. Trace the following JavaScript code to show the exact output.
<HTML>
<HEAD>
<TITLE> Question3_Program_2
</TITLE>
<****** LANGUAGE="JavaScript]
var x, y;
y = 100;
x = 17 + 2 + 80;
********.write('First, x = ' + x + ' and y = ' + y);
********.write('<BR>');
x = y + 24;
x = x + 6;
x = 3 + x / 2;
********.write("Now, x = " + x + ' and y = ' + y + "");
x = y;
y = 11;
// y = y + 10;
********.write("Finally, x = " + x + " and y = " + y);
</******>
</HEAD>
<BODY>
</BODY>
</HTML>
4
3. Fibonacci series is defines as a series of numbers in which each number (Fibonacci number) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, etc. Write a JavaScript code that asks the user to enter a number and calculate the Fibonacci series for this number.
4. Write a JavaScript code that prints the following output?
100 90 80 70 60 50 40 30 20 10 90 80 70 60 50 40 30 20 10 80 70 60 50 40 30 20 10 70 60 50 40 30 20 10 60 50 40 30 20 10 50 40 30 20 10 40 30 20 10 30 20 10 20 10 10
5. Write a JavaScript program to read 10 positive values from the user, and then sum only the multiples of 3 and 5.
a. Run your program with print out a message about the sum.
b. Insert screenshot showing the program prompting the user for the number.
حل واجبات الجامعة العربية المفتوحة
حل واجبات الجامعه العربية المفتوحه مع الشرح
لجميع فروع الجامعة ولجميع التخصصات ولجميع المواد
حلول نموذجية مضمونة وغير مكررة - قسم خاص للتربية
KSA-Kuwait - Bahrain -Oman - Jordon -Lebanon -Egypt-Sudan
الكويت البحرين عمان الأردن لبنان مصر البحرين حائل الرياض الدمام جدة المدينة المنورة الاحساء
(.turnitin./ ) فحص التشابه وفقا لنظام الجامعة عن طريق موقع كشف التشابه
اتصل : O544321455 - OO966544321455
واتس اب: 966544321455+
ايميل : a_al_shora@hot mail.com
سكايبي : a_al_shora
حل واجب 0.5.4.4.3.2.1.4.5.5 الجامعة العربية المفتوحة
حل واجبات الجامعة العربية المفتوحة O54.4.3.2.1.4.5.5 - OO96654.4.3.2.1.4.5.5
ايميل : a_al_shora @ h.o.t.m.ail.c.o.m
سكايبي: a_al_shora
واتس اب: OO96654.4.3.2.1.4.5.5
حل واجبات الجامعه العربية المفتوحه مع الشرح
لجميع فروع الجامعة ولجميع التخصصات ولجميع المواد
حلول نموذجية مضمونة وغير مكررة - قسم خاص للتربية
KSA-Kuwait - Bahrain -Oman - Jordon -Lebanon -Egypt-Sudan
الكويت البحرين عمان الأردن لبنان مصر البحرين حائل الرياض الدمام جدة المدينة المنورة الاحساء
(.turnitin./ ) فحص التشابه وفقا لنظام الجامعة عن طريق موقع كشف التشابه
اتصل : O544321455 - OO966544321455
واتس اب: 966544321455+
ايميل : a_al_shora@hot mail.com
سكايبي : a_al_shora
حل واجب 0.5.4.4.3.2.1.4.5.5 الجامعة العربية المفتوحة
حل واجبات الجامعة العربية المفتوحة O54.4.3.2.1.4.5.5 - OO96654.4.3.2.1.4.5.5
ايميل : a_al_shora @ h.o.t.m.ail.c.o.m
سكايبي: a_al_shora
واتس اب: OO96654.4.3.2.1.4.5.5
1
Course Code: M150A
Course Title: DATA, COMPUTING and INFORMATION - A
Question1: (20 marks)
1. List two benefits and two drawbacks of using Emails?
2. Using computers to solve problems requires four-way communication. Mention them.
3. A representation establishes a relationship between a form (symbol) and an associated meaning (or content). What are the two conditions that the representation must meet to be effective?
4. List the properties of representation.
5. List two consequences of using a complex representation?
Question 2: (20 marks)
1. Use truth table to check if the following two Boolean expressions equivalent or not:
Boolean expression 1: (A OR B) AND (NOT A OR NOT B)
Boolean expression 2: (A AND B) OR (NOT A AND NOT B)
2. For the given numbers find their equivalent in the specified base. Show your steps.
(1426)10 = ( ) 2
(1276)8 = ( ) 10
3. A movie requires 220 GB to be displayed in a computer. The size of each frame is 1.25 MB and the frames moves in a rate of 16 frames per second.
a. What is the number of frames in the movie?
b. Find the duration of the movie in seconds then in hours.
3
Question 3: (20 marks)
1. The following series “S1” represents the squares of the 10 integer numbers from 0 to 10.
S1: 0 1 4 9 16 25 36 49 64 81 100. Based on your programming knowledge in M150A, answer the following.
a. Create a JavaScript code that print out “S1”.
b. Specify the control instruction applied on “S1”.
c. Draw the flowchart diagram of your code.
2. Trace the following JavaScript code to show the exact output.
<HTML>
<HEAD>
<TITLE> Question3_Program_2
</TITLE>
<****** LANGUAGE="JavaScript]
var x, y;
y = 100;
x = 17 + 2 + 80;
********.write('First, x = ' + x + ' and y = ' + y);
********.write('<BR>');
x = y + 24;
x = x + 6;
x = 3 + x / 2;
********.write("Now, x = " + x + ' and y = ' + y + "");
x = y;
y = 11;
// y = y + 10;
********.write("Finally, x = " + x + " and y = " + y);
</******>
</HEAD>
<BODY>
</BODY>
</HTML>
4
3. Fibonacci series is defines as a series of numbers in which each number (Fibonacci number) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, etc. Write a JavaScript code that asks the user to enter a number and calculate the Fibonacci series for this number.
4. Write a JavaScript code that prints the following output?
100 90 80 70 60 50 40 30 20 10 90 80 70 60 50 40 30 20 10 80 70 60 50 40 30 20 10 70 60 50 40 30 20 10 60 50 40 30 20 10 50 40 30 20 10 40 30 20 10 30 20 10 20 10 10
5. Write a JavaScript program to read 10 positive values from the user, and then sum only the multiples of 3 and 5.
a. Run your program with print out a message about the sum.
b. Insert screenshot showing the program prompting the user for the number.
Faculty of Computer Studies
Course Code: M150A
Course Title: DATA, COMPUTING and INFORMATION - A
Tutor Marked Assignment
Cut-Off Date: Total Marks: 60
Contents
Question 1 ……………………..…………………………………..……… 2
Question 2 ……………………………..………………..………………… 2
Question 3 ………………………………..………………..……………… 3
Plagiarism Warning:
As per AOU rules and regulations, all students are required to submit their own TMA work and avoid plagiarism. The AOU has implemented sophisticated techniques for plagiarism detection. You must provide all references in case you use and quote another person's work in your TMA. You will be penalized for any act of plagiarism as per the AOU's rules and regulations.
Declaration of No Plagiarism by Student (to be signed and submitted by student with TMA work):
I hereby declare that this submitted TMA work is a result of my own efforts and I have not plagiarized any other person's work. I have provided all references of information that I have used and quoted in my TMA work.
Name of Student:
Signature:
Date:
2
Question1: (20 marks)
1. List two benefits and two drawbacks of using Emails?
2. Using computers to solve problems requires four-way communication. Mention them.
3. A representation establishes a relationship between a form (symbol) and an associated meaning (or content). What are the two conditions that the representation must meet to be effective?
4. List the properties of representation.
5. List two consequences of using a complex representation?
Question 2: (20 marks)
1. Use truth table to check if the following two Boolean expressions equivalent or not:
Boolean expression 1: (A OR B) AND (NOT A OR NOT B)
Boolean expression 2: (A AND B) OR (NOT A AND NOT B)
2. For the given numbers find their equivalent in the specified base. Show your steps.
(1426)10 = ( ) 2
(1276)8 = ( ) 10
3. A movie requires 220 GB to be displayed in a computer. The size of each frame is 1.25 MB and the frames moves in a rate of 16 frames per second.
a. What is the number of frames in the movie?
b. Find the duration of the movie in seconds then in hours.
3
Question 3: (20 marks)
1. The following series “S1” represents the squares of the 10 integer numbers from 0 to 10.
S1: 0 1 4 9 16 25 36 49 64 81 100. Based on your programming knowledge in M150A, answer the following.
a. Create a JavaScript code that print out “S1”.
b. Specify the control instruction applied on “S1”.
c. Draw the flowchart diagram of your code.
2. Trace the following JavaScript code to show the exact output.
<HTML>
<HEAD>
<TITLE> Question3_Program_2
</TITLE>
<****** LANGUAGE="JavaScript]
var x, y;
y = 100;
x = 17 + 2 + 80;
********.write('First, x = ' + x + ' and y = ' + y);
********.write('<BR>');
x = y + 24;
x = x + 6;
x = 3 + x / 2;
********.write("Now, x = " + x + ' and y = ' + y + "");
x = y;
y = 11;
// y = y + 10;
********.write("Finally, x = " + x + " and y = " + y);
</******>
</HEAD>
<BODY>
</BODY>
</HTML>
4
3. Fibonacci series is defines as a series of numbers in which each number (Fibonacci number) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, etc. Write a JavaScript code that asks the user to enter a number and calculate the Fibonacci series for this number.
4. Write a JavaScript code that prints the following output?
100 90 80 70 60 50 40 30 20 10 90 80 70 60 50 40 30 20 10 80 70 60 50 40 30 20 10 70 60 50 40 30 20 10 60 50 40 30 20 10 50 40 30 20 10 40 30 20 10 30 20 10 20 10 10
5. Write a JavaScript program to read 10 positive values from the user, and then sum only the multiples of 3 and 5.
a. Run your program with print out a message about the sum.
b. Insert screenshot showing the program prompting the user for the number.
حل واجبات الجامعة العربية المفتوحة
حل واجبات الجامعه العربية المفتوحه مع الشرح
لجميع فروع الجامعة ولجميع التخصصات ولجميع المواد
حلول نموذجية مضمونة وغير مكررة - قسم خاص للتربية
KSA-Kuwait - Bahrain -Oman - Jordon -Lebanon -Egypt-Sudan
الكويت البحرين عمان الأردن لبنان مصر البحرين حائل الرياض الدمام جدة المدينة المنورة الاحساء
(.turnitin./ ) فحص التشابه وفقا لنظام الجامعة عن طريق موقع كشف التشابه
اتصل : O544321455 - OO966544321455
واتس اب: 966544321455+
ايميل : a_al_shora@hot mail.com
سكايبي : a_al_shora
حل واجب 0.5.4.4.3.2.1.4.5.5 الجامعة العربية المفتوحة
حل واجبات الجامعة العربية المفتوحة O54.4.3.2.1.4.5.5 - OO96654.4.3.2.1.4.5.5
ايميل : a_al_shora @ h.o.t.m.ail.c.o.m
سكايبي: a_al_shora
واتس اب: OO96654.4.3.2.1.4.5.5