Internet is said to be a worldwide interconnected network of computers that allows a
computer in one part of the world to communicate with a computer located somewhere in the
world but it cannot work alone.
In your own words identify and discuss all the:
• Technologies
• Devices
• Software
• Applications that make the internet work.
(Use the report format)
Describe three factors that would cause a company to
Write the code and describe results of the problem statement and also define future scope.
Topic must be related to AI: for example, Machine Learning, Fuzzy logic, Genetic Algorithm, Neural Network, DSF/BFS, image processing, facial recognition, Game theory, speech recognition, Licence plate recognition, and Chatbot etc
Explain the problem addressed by the invention with flow chart /Block diagram/Model.
Topic must be related to AI: for example, Machine Learning, Fuzzy logic, Genetic Algorithm, Neural Network, DSF/BFS, image processing, facial recognition, Game theory, speech recognition, Licence plate recognition, and Chatbot etc
Propose an idea related to Artificial Intelligence (AI) and describe the idea with the learning outcomes of the course in detail
Topic must be related to AI: for example, Machine Learning, Fuzzy logic, Genetic Algorithm, Neural Network, DSF/BFS, image processing, facial recognition, Game theory, speech recognition, Licence plate recognition, and Chatbot etc.
Using GUI , write a java program that shall solve the following problem:
A Small supermarket employs workers who are paid every end of week. According to the one of the three hourly rates depending on their positions.
The collection of values and operations allowed on those values is known as
Identify any 2 categories of information and their characteristics that can aid in social engineering attacks.
Design and implement a GUI program to compare two strings and display the larger one
[10 points] Write a MIPS assembly language program that implements a "Fahrenheit to
Celsius converter". Upon program execution, the user is prompted to enter a
temperature in Fahrenheit and the program will output the corresponding temperature in
Celsius. The formula to convert a temperature given in Fahrenheit (F) to a
temperature in Celsius (C) is C (F- 32)/1.8. Your solution should make use of floating
point (non-integer) values to obtain full marks. If you are not able to work with floating
point numbers, then provide an implementation with integer values (in this case, you can
use the following formula: C = (F 32)/2. A solution that works only with integer values
will result in a decrease of marks but part marks will be provided.
[6 points] Write a MIPS assembly language program version of the following pseudo
code segment:
A[100], B[100], C[100] - three arrays that hold 100 integers each
Declare an integer variable i = 99 to represent a loop index
Repeat the following two instructions while i > 4
C[i] A[i-2] + B[i-1];
i = i-2;