You are an IT consultant, and you are asked to create a new system for a small real estate brokerage firm.
Your only experience is with traditional data and process modelling techniques. This time, you decide to try
an object-oriented approach. How will you begin? How are the tasks different from traditional structured
analysis?
When you save the information the channel you use and the data server you have to consider it also determines the safety of your software.
Firewall vs content filter IDS (With Example)
1.How do you store the result of a function in a variable?
2.. What are some popular Python libraries?
2.Assign and print the roll number, phone number and address of two students having
names "Sam" and "John" respectively by creating two objects of the class 'Student'.
Machine Problem 5.10.
Write a program using one-‐dimensional array that searches a number if it is found on
the list of the given 5 input numbers and locate its exact location in the list.
Sample input/output dialogue: E
Enter a list of numbers: 5 4 8 2 6
Enter a number to be searched: 2 2 found in location 4
Machine Problem 5.9.
Write a program using two-‐dimensional arrays that computes the sum of data in rows
and sum of data in columns of the 3x3 (three by three) array variable n[3[3].
Sample input/output dialogue:
5 9 8 = 22
3 8 2 = 13
4 3 9 = 16
-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐-‐
12 20 19
Machine Problem 5.8.
Write a program using two-‐dimensional arrays that lists the Odd numbers and Even numbers separately in a given 12 input values.
Sample input/out dialogue:
Enter twelve numbers: 15 20 13 35 40 16 18 20 18 20 19
Odd numbers are: 15 13 35 19
Even numbers are: 40 16 18 20 18 20
Machine Problem 5.7.
Write a program using two-‐dimensional arrays that determines the highest and lowest of the 12 input
values.
Sample input/output dialogue:
Enter twelve numbers: 13 15 20 13 35 40 16 18 20 18 20 19
The highest is: 40
The lowest is: 13
Machine Problem 5.6. Write a program using two-‐dimensional arrays that calculates the sum and average of the twelve input values which theuser would type from the keyboard and prints the calculated sum and average.
Machine Problem 5.5.
Write a program using two dimensional arrays that searches a number and display the number of times it occurs on the list of 12 input values.
Sample input/output dialogue:
Enter twelve numbers: 20 13 30 35 40 16 18 20 18 20
Enter a number to search: 20 Occurrence(s) : 3