The mentioned methods in pdf should be created and bitwise operations should be performed.
Akdeniz University
Department of Computer Engineering
Data Structures
Homework 2
Due Date: 29/11/2021 - 01:00 am
1 Overview
Write a program that takes input[s] which is[are] either int, string or double from user, converts them to bit
sequences using 64-bit memory cost model and performs bitwise operation; or(|), and(&), xor(ˆ), complement(
v ), right shift operator (>>) and left shift operator (<<).
To facilitate the execution of this program, you will write (at minimum) the following methods;
1. public String or(String, String)
2. public String and(String, String)
3. public String xor(String, String)
4. public String complement(String)
5. public String rs(String, int)
6. public String ls(String, int)
For each data types, you implement bitwise operators like below;
for int − > 1, 2, 3, 4, 5, 6
for string − > 1, 2, 3
for double − > 1, 2, 3
1
2 Screenshots
You need to also implement menu to perform above operations.
Figure 1: Integer - or
Figure 2: Integer - And
Figure 3: Integer - Complement
Figure 4: Integer - Right Shift
2
Figure 5: Integer - Left Shift
Figure 6: String - or
Figure 7: String - And
Figure 8: Double - or
3
Figure 9: Double - And
3 Notes
1. You must develop your homework according to the object-oriented paradigm and use arrays.
2. You need to submit java code and javadoc files. You can check reference [1] to understand how to write
javadoc comments. You must clearly write a comment for each methods and classes.
3. You can ask questions about the homework via Microsoft Teams group.
4. Late submission will not be accepted!
5. You must obey the submission format. If you send your homework in different format, you will not get
credit.
6. You are going to submit your report to Microsoft Teams:
The submission format is given below:
<StudentNumber>.zip
−javadoc/
−−Related javadoc documents
−HW2 <studentnumber>.java
4 Policy
All work on assignments must be done with your own unless stated otherwise. You are encouraged to discuss
with your classmates about the given assignments, but these discussions should be carried out in an abstract
way. That is, discussions related to a particular solution to a specific problem (either in actual code or in the
pseudocode) will not be tolerated. In short, turning in someone elses work(from internet), in whole or in part,
as your own will be considered as a violation of academic integrity. Please note that the former condition also
holds for the material found on the web as everything on the web has been written by someone else.
5 Reference
1. https://www.oracle.com/technetwork/java/javase/tech/index-137868.html
4
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of