Loading
HomeComputer Science Help › Computer Programming Assignment(Must know Scheme Language)
Status: Completed
Computer Programming Assignment(Must know Scheme Language)
Date Posted: 22/04/2021
Category: Computer Science
Due Date: 25/04/2021
Instruction
Instructions are attached
Bidders
drjim 4 years, 12 months ago
Rated 9.55 earned 24203.41 around 648 assignments.
Hello friend. I'm here to help you. Thank you
$120.00
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • hello
    User_33199 | Apr 22, 2021, 02:09 AM
  • are u there
    User_33199 | Apr 22, 2021, 04:13 AM
  • Yes 'm here
    drjim | Apr 22, 2021, 04:13 AM
  • Do you still need my help?
    drjim | Apr 22, 2021, 04:37 AM
  • Hello
    drjim | Apr 22, 2021, 04:49 AM
  • Kindly assign me
    drjim | Apr 22, 2021, 04:50 AM
  • Hello
    drjim | Apr 22, 2021, 04:50 AM
  • you understand the assignment? And you have to move your bid back down. You moved it up from where it started
    User_33199 | Apr 22, 2021, 05:48 AM
  • Yes. I understand. The bid price is commensurate with the technicality of the task.
    drjim | Apr 22, 2021, 05:49 AM
  • thats still not the original bid though
    User_33199 | Apr 22, 2021, 07:15 AM
  • Im going to hire you in a few hours
    User_33199 | Apr 23, 2021, 23:08 PM
  • Okay
    drjim | Apr 24, 2021, 02:10 AM
  • and you know to use your own work. any work that you get from anyone or any other place must be cited and givrn as well so that the teacher doesn't say that i made an academic violation
    User_33199 | Apr 24, 2021, 04:22 AM
  • Sure
    drjim | Apr 24, 2021, 04:26 AM
  • Alright I assigned you. It's short notice but I'm counting on you. I need it before Sunday evening and again I'm trusting you to make sure that this work is your own. Read the assignment instructions clearly. i said you have to know how to do scheme language. And AGAIN ANY THING YOU GET FROM ONLINE OR ANOTHER STUDENT ASSIGNMENT MUST BE STATED AND CITED. I WANT THE PROGRAM SENT IN BOTH ONE WITH COMMENTS AND ONE WITH NO COMMENTS ON IT.
    User_33199 | Apr 24, 2021, 05:18 AM
  • Okay. Thanks
    drjim | Apr 24, 2021, 05:20 AM
  • keep me posted
    User_33199 | Apr 24, 2021, 05:24 AM
  • I just uploaded an evidence packet and I want you to look at it when going over your answer for my assignment. Basically I took this class last semester and failed and had to retake it because my teacher caught me in an academic violation. The person I hired from this same website was supposed to make sure that it was their own work but failed and I was in trouble. The last two pages show my answer and the copied answer. I basically want you to make sure your answer is not like those and that it is your own work. Furthermore, seeing an answer might help you better understand what to do although you should already know since i hired you. Take a look at it, I just uploaded it and it's the second upload. Let me know when you see this. Thanks
    User_33199 | Apr 24, 2021, 20:30 PM
  • Also one of the things it says on the assignment is a comparison of the scheme code you get and the java one. I just uploaded the java so actually look at both the last two uploads that i put up thanks
    User_33199 | Apr 24, 2021, 20:35 PM
  • well I dont know if it will let me upload the java one so Im typing it in under this
    User_33199 | Apr 24, 2021, 20:42 PM
  • import java.io.File;import java.io.FileNotFoundException;import java.util.Scanner;public class MaxEqualSublists {private static Node head, tail;private static class Node {private Node next;private int data;public Node(int data) {this.data = data;}}public static void add(int data) {Node newNode = new Node(data);if(head == null) {head = newNode;tail = newNode;} else {tail.next = newNode;tail = tail.next;}}private static void printList() {System.out.print("[");if(head != null) {Node temp = head;while(temp != null) {System.out.print(temp.data);if(temp.next != null) {System.out.print(", ");}temp = temp.next;}}System.out.println("]");}public static void main(String[] args) throws FileNotFoundException {Scanner filein = new Scanner(new File("in.txt"));while(filein.hasNextInt()) {add(filein.nextInt());}filein.close();printList();System.out.println(maxEqualSublists());}private static int maxEqualSublists() {return maxEqualSublists(head, 0, 0, 0, 0);
    User_33199 | Apr 24, 2021, 20:42 PM
  • }//BigO(3^n)private static int maxEqualSublists(Node node, int s1, int s2, int sl1, int sl2) {if(node == null) {return s1 == s2 && sl1 == sl2 ? sl1 : 0;}//What happens if we add the node.data to s1?int addedToS1 = maxEqualSublists(node.next, s1 + node.data, s2, sl1 + 1, sl2);//What happens if we add the node.data to s2?int addedToS2 = maxEqualSublists(node.next, s1, s2 + node.data, sl1, sl2 + 1);//What happens if we don't add node.data to either s1 or s2?int addedToNone = maxEqualSublists(node.next, s1, s2, sl1, sl2);if(addedToS1 > addedToS2) {return addedToS1;} else if(addedToS2 > addedToNone) {return addedToS2;} else {return addedToNone;}}}
    User_33199 | Apr 24, 2021, 20:42 PM
  • Let me know when you see this please and thank you
    User_33199 | Apr 24, 2021, 22:37 PM
  • Hello
    User_33199 | Apr 24, 2021, 23:54 PM
  • Okay. Thanks
    drjim | Apr 24, 2021, 23:58 PM
  • Make sure to go over those
    User_33199 | Apr 25, 2021, 01:05 AM
  • My assignment is due in 10 hours so I hope you are going over everything I need and making sure its correct and not plagiarized work.
    User_33199 | Apr 25, 2021, 14:46 PM
  • I uploaded a zip file that has that java code again so you can do the 1-3 page comparison again just in case u need to see the java code better from what I typed
    User_33199 | Apr 25, 2021, 15:53 PM
  • Okay. Thanks
    drjim | Apr 25, 2021, 15:59 PM
  • will need the assignment in less than 5 hours
    User_33199 | Apr 25, 2021, 21:46 PM
  • Hello there. It's taking me more time than I thought
    drjim | Apr 25, 2021, 23:03 PM
  • That's find as long as you get it done within the next three hours
    User_33199 | Apr 25, 2021, 23:38 PM
  • hello
    User_33199 | Apr 26, 2021, 00:50 AM
  • i need the work in two hours or you owe me a refund
    User_33199 | Apr 26, 2021, 01:06 AM
  • dude you are screwing me over im getting upset. the assignment is due in an hour. if i get in trouble or nothing your in trouble as well
    User_33199 | Apr 26, 2021, 02:48 AM
  • How I'm I screwing you buddy. I'm trying my best to finish on time. I've been getting errors in the last 10 hours
    drjim | Apr 26, 2021, 02:57 AM
  • The assignment is due in an hour and I have nothing and you weren't respondng to me.
    User_33199 | Apr 26, 2021, 03:10 AM
  • How close are you?
    User_33199 | Apr 26, 2021, 03:10 AM
  • I will upload the paper first. The java is taking more time than I thought.
    drjim | Apr 26, 2021, 03:15 AM
  • The write up part is uploaded
    drjim | Apr 26, 2021, 03:15 AM
  • My R5RS Scheme solution has been misbehaving for the longest part.
    drjim | Apr 26, 2021, 03:19 AM
  • can you get it done within the hour
    User_33199 | Apr 26, 2021, 03:20 AM
  • The comparison is about the specific codes not scheme vs java overall. You did a basic comparison for scheme and java. The instructions say compare your answer to the java one i sent you. 2. A 1 - 3 page document with a comparison of your Scheme solution to the Java one. Include in your comparison the syntax differences, similarities, runtime speeds as well as comparing the paradigms. (Java is imperative while Scheme is functional).
    User_33199 | Apr 26, 2021, 03:23 AM
  • Yes. I've done that coz I've not arrived at the solution yet.
    drjim | Apr 26, 2021, 03:25 AM
  • so basically your not going to have my answer on time
    User_33199 | Apr 26, 2021, 03:26 AM
  • Looks like that. Is it possible to ask for a deadline extension? If not you'll let me know how I can refund you without cancelling. I've tried my best but seems like this task required more than 24 hours that you originally gave me.
    drjim | Apr 26, 2021, 03:29 AM
  • im asking for an extension but i dont thimnk he'll give it so i have to wait and see what he says. in the meantime keep working on it
    User_33199 | Apr 26, 2021, 03:38 AM
  • Okay. Thank you so much
    drjim | Apr 26, 2021, 03:39 AM
  • Good morning. Hope he extended coz everything is now done and dusted.
    drjim | Apr 26, 2021, 14:43 PM
  • Are you sure its correct and original work? I haven't heard from him yet so idk if he'll extend it or not
    User_33199 | Apr 27, 2021, 01:52 AM
  • Yes. This is original work and I followed your instructions to the letter. Just email him the work and keep pushing him. This work really used alot of our time. You should get a grade for it.
    drjim | Apr 27, 2021, 01:54 AM
  • you were suppose to put all files into one zip folder with my initials(CF)
    User_33199 | Apr 27, 2021, 02:32 AM
  • Yes. Attachment 3
    drjim | Apr 27, 2021, 02:35 AM
  • Also those pictures on your comparison paper make it seem like it was done by a teacher not a student. You need to make it not obvious that I got help and seem like it's my work
    User_33199 | Apr 27, 2021, 02:37 AM
  • But those are the screenshot I obtained when coding with Java
    drjim | Apr 27, 2021, 02:43 AM
  • attachment 3 just has the java file. It doesn't have the other files you uploaded. It's all suppose to be in one file
    User_33199 | Apr 27, 2021, 02:55 AM
  • What is missing?
    drjim | Apr 27, 2021, 02:57 AM
  • You have two different zip files with one thing in each and you have the comparison page uploaded by itself. It's all suppose to be in one folder
    User_33199 | Apr 27, 2021, 03:13 AM
  • What are your intials?
    drjim | Apr 27, 2021, 03:19 AM
  • they are C.F.
    User_33199 | Apr 27, 2021, 03:27 AM
  • Alright. Check fifth upload. Please remember to release the funds. Thank you
    drjim | Apr 27, 2021, 03:29 AM
  • well I have to wait and see if he'll even accept it first. He wasn't in today so I'll have to see if he'll respond tomorrow
    User_33199 | Apr 27, 2021, 03:35 AM
  • Does it mean if he doesn't accept you won't pay me. I really tried her sir.. And you know the problem with programing task is they can really take someone's time and sometimes you can't control.
    drjim | Apr 27, 2021, 03:37 AM
  • yea if he doesn't take the assignment then I want a refund because you were supposed to have this done by yesterday evening. Because you didn't I had to send in another answer that I'm not sure is correct because I didn't want to get a 0 and he didn't respond to email request about extending the deadline. So i need to see what's going on.
    User_33199 | Apr 27, 2021, 03:42 AM
  • That's unfair but its well. You'll let me know. Thanks
    drjim | Apr 27, 2021, 03:43 AM
  • hows that unfair. your the one that put me in a screwed up position. hopefully everything will work out but we dont know yet
    User_33199 | Apr 27, 2021, 04:00 AM
  • I know I didn't screw you even when this task took to much time to finish. I still cared to finish. You posted this task on 22nd and assigned me on 24th.
    drjim | Apr 27, 2021, 04:02 AM
  • Still haven't heard from him yet
    User_33199 | Apr 27, 2021, 23:15 PM
  • I just uploaded two files you need to take a look at. He's uploaded them to the class and said these are the solution or answer to the assignment. Is what you gave me match that? Is it copied exactly or your own thing? I don't understand it so I need you to take a look at those two files and add them up to the answer you gave me because that's what he put up.
    User_33199 | Apr 28, 2021, 03:44 AM
  • Okay. Let me check
    drjim | Apr 28, 2021, 03:47 AM
  • Hello
    drjim | Apr 28, 2021, 06:26 AM
  • Did he accept to grade?
    drjim | Apr 28, 2021, 07:40 AM
  • Did u look at it and compare? How does the answer you gave me compare to his?
    User_33199 | Apr 28, 2021, 14:34 PM
  • Yes I compared and made a few edits. I uploaded the zipped file here. That's why I was asking if he accepted.
    drjim | Apr 28, 2021, 14:37 PM
  • He ain't accepting any changes. I'm asking based on what u originally gave me, what grade do u think he'll give me? Was your answer correct? , somewhat correct? Or completely wrong
    User_33199 | Apr 28, 2021, 14:48 PM
  • somehow correct.
    drjim | Apr 28, 2021, 14:52 PM
  • So he accepted to take it?
    drjim | Apr 28, 2021, 14:53 PM
  • Idk yet. he hasn't responded to me about accepting late work
    User_33199 | Apr 28, 2021, 14:56 PM
  • And what changes are you talking about? I don't understand
    drjim | Apr 28, 2021, 14:59 PM
  • My previous answer was correct. I just compressed the Java code
    drjim | Apr 28, 2021, 15:06 PM
  • The first answer you gave me is correct according to the answer my professor has provided that I just uploaded?
    User_33199 | Apr 28, 2021, 15:19 PM
  • Yes
    drjim | Apr 28, 2021, 15:20 PM
  • Ok well now I'll have to see if he'll accept it
    User_33199 | Apr 28, 2021, 15:37 PM
  • hopefully he'll give me a grade soon here this week so I can see what's up and close this out but till then just wait, you'll here from me
    User_33199 | Apr 29, 2021, 06:43 AM
  • hello
    User_33199 | May 02, 2021, 21:22 PM
  • We have a problem. My teacher is accusing me of plagiarism based on your answer.
    User_33199 | May 05, 2021, 15:51 PM
  • Hey. Sorry I had taken a break and I've been offline. I just login now. I've just uploaded a turnittin report of my anwers. The score were zero.
    drjim | May 06, 2021, 13:18 PM
  • he's saying it is plagirized and now i have a hearing
    User_33199 | May 10, 2021, 05:34 AM
  • And no details given?
    drjim | May 10, 2021, 05:38 AM
  • Are you able to send me the email he sent you?
    drjim | May 10, 2021, 05:39 AM
  • my hearing is next thursday. I will get in contact with you about it around then
    User_33199 | May 20, 2021, 01:02 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
Robert_d_308 4 years, 12 months ago
Rated 9.37 earned 62524.46 around 2184 assignments.
Hello friend. I'm here to help you. Thank you
$170.00
  • Hello
    Robert_d_308 | Apr 22, 2021, 01:40 AM
  • Hello
    Robert_d_308 | Apr 22, 2021, 01:40 AM
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • hello
    User_33199 | Apr 22, 2021, 02:09 AM
  • are u there
    User_33199 | Apr 22, 2021, 04:13 AM
  • Yes
    Robert_d_308 | Apr 22, 2021, 04:15 AM
  • u understand the assignment and what I need? Also you have to move your bid back to its original. You moved it up
    User_33199 | Apr 22, 2021, 05:49 AM
  • Sure I do. My best offer is $150. Thanks
    Robert_d_308 | Apr 22, 2021, 05:50 AM
  • thats not the original bid you had
    User_33199 | Apr 22, 2021, 07:13 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
TheMasterTutor 4 years, 12 months ago
Rated 9.22 earned 4872.37 around 168 assignments.
I am an experienced writer well acquainted with this subject, and I am sure I will timely deliver quality work. I am online and ready to start working asap. Kindly assign
$170.00
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • hello
    User_33199 | Apr 22, 2021, 02:09 AM
  • are u there
    User_33199 | Apr 22, 2021, 04:13 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
paulk 4 years, 12 months ago
Rated 9.77 earned 9672.34 around 332 assignments.
After reviewing your instructions, I decided to bid confidently that I will deliver. Thanks
$170.00
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • Sorry I cannot handle your work. Thanks
    paulk | Apr 22, 2021, 01:51 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
surrogatewriter 4 years, 12 months ago
Rated 9.31 earned 74485.79 around 2811 assignments.
I’m an expert in this field and I promise to deliver quality within the shortest time possible.
$270.00
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • Sorry I can't handle
    surrogatewriter | Apr 22, 2021, 01:50 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
smunga 4 years, 12 months ago
Rated 9.79 earned 56286.74 around 1391 assignments.
I’m a quality-driven writer with special technical skills and vast experience in computer science and programming . A plagiarism-free paper and impeccable quality content is what I deliver. Timely delivery and originality are guaranteed. Kindly allow me to do this paper.
$170.00
  • you read the instructions and understand the assignment and what I need
    User_33199 | Apr 22, 2021, 01:47 AM
  • Yes i have and ready to start on the task.
    smunga | Apr 22, 2021, 01:48 AM
  • Quality is guaranteed.Please assign the task .Thank you.
    smunga | Apr 22, 2021, 01:50 AM
  • you moved the price up you need to move it back
    User_33199 | Apr 22, 2021, 02:09 AM
  • Thanks for reaching out .I carefully reviewed the task and since i believe on quality the bid price is fair.I assure you an A- grade on the task.
    smunga | Apr 22, 2021, 02:12 AM
  • I will deliver. That's a guarantee.
    smunga | Apr 22, 2021, 02:14 AM
  • thats too high of a bid
    User_33199 | Apr 22, 2021, 02:21 AM
  • I have done such tasks and i know the level of expertise that is needed.I will provide quality and rest assured its being handled by the best.
    smunga | Apr 22, 2021, 02:24 AM
  • I might not be the lowest bid but i might be the best in the field of Comp Science.
    smunga | Apr 22, 2021, 02:30 AM
  • thats still too expensive
    User_33199 | Apr 22, 2021, 04:13 AM
  • Hello dear. are you still there?
    smunga | Apr 22, 2021, 07:26 AM
  • yes but im looking at other bids that are cheaper. ill let u know tomorrow
    User_33199 | Apr 22, 2021, 07:36 AM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
honestwriter 4 years, 12 months ago
Rated 8.7 earned 7997.36 around 234 assignments.
Am a guru in scheme language and i can help you in this work. My whats app +254719110021
$180.00
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}
 
 
skeleritchy 4 years, 12 months ago
Rated 10.0 earned 277.62 around 11 assignments.
I am a professional academic writer with many years of experience. I am committed to giving my clients the ultimate service that they are looking for. With vast writing experience, I believe in high-quality work that is 100% plagiarism-free. I always do my best to ensure that clients are satisfied at all times with my work. I have versatile knowledge with expertise in the field of academic research suitable for most of the assignments here. My writing strength lies in customer understanding and attention to detail. I have a thorough understanding of the use of proper grammar and sentence structure which have been an integral part of my success as an essay writer. I understand that academic writing requires strict adherence to conventional grammar and syntax rules. When working with me, quality, originality and a consequent top grade are guaranteed. I also offer huge discounts for whole online classes! Don't hesitate to DM me.
$100.00
  • you read the assignment and understand what I need sent to me
    User_33199 | Apr 23, 2021, 23:08 PM
  • {$ item.message_content $}
    {$ item.sender_username $} | {$ item.date_entered $}