Posts

Showing posts with the label Firvrr

Online shopping site with the member system and real store stock checking system

System Background - The online shopping site with the member system and real store stock checking system - When user buy online will earn the points - User will go to the shop to take the product so no need to store address in “Order” Database Requirement - Catalog - Type - Product - Shops (With Address and Location - Order - Stock - User Login (Email / ID card + Password) …And more Buy now CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

Stack and Queue Implementation with JUnitTesting according to UML

Image
Objectives: After completing this assignment the student should be able to, Write concrete classes that implement Java Interfaces according to specifications given in UML. Implement a last-in-first-out (LIFO) stack class in java. Implement a first-in-first-out (FIFO) queue class in Java. Requirements: For this assignment you are given the following Java source code files: CSE205_Assignment03.java (This file is complete – you will make no changes to this file) IStack.java (This file is complete – you will make no changes to this file) IQueue.java (This file is complete – you will make no changes to this file) MyStack.java (you must complete this file) MyQueue.java (you must complete this file) The specifications for the files are given below (including the UML diagram on the following page). Special requirements: Both MyStack and MyQueue Classes size method Returns the number of items in the collection. empty method Returns true if the size of the collection is zero; otherwise returns f...

Rugby Project in Java with GUI - full source code

Image
CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

Hash Map and Tree Map for words listing from .txt file using Java GUI CSCI 212 – Project 4

Project Description Continuing the theme of project 3, adjust the program so that the left text area displays the words using a Hashmap (the order of the words will be unpredictable), and the right text area displays the words using a TreeMap (the words should be in sorted order). If you did not get project 3 to work entirely, you are not responsible for the menus and menu items for the project, or for adding additional words, or for displaying only nouns or verbs. For project 4 you are only responsible for displaying the original input file in the two text areas as described above. Buy now CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

Extra Credit Assignment 2: Slot Machine in Java with full source code

Image
Buy now Problem Introduction: Write an application that simulates a slot machine. The player starts out with M coins. The value of M is an input to the program, and you charge 25 cents per coin. For each play, the player can bet 1 to 4 coins. If the player enters 0 as the number of coins to bet, then the program stops playing. At the end of the game, the program displays the number of coins left and how much the player won or lost in the dollar amount. There are three slots on the machine, and each slot will display one of the three possible pieces: BELL, GRAPE, and CHERRY. When certain combinations appear on the slots, the machine will pay the player. The payoff combinations are these: The symbol --------- means any piece. If the player bets 4 coins and gets combination 5, for example, the machine pays the player 12 coins. Code Screenshot: Order Now: Buy now CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via Wh...

CRC code with command line arguments in Java, Checking correctness and verfication

Image
Buy now Program  Submission  Instructions:       •   You must submit your source code file plus a README file •   The source code file must be provided in Web courses from the assignment page •   All source code must be in exactly one file of type .c, .cpp, or .java •   The README file must be a text file CIS    3360    –    Security    in   Computing    Spring    2016 Program  #2:    CRC    Codes  (100  points) Write a    program that    calculates the    CRC-­‐15    value for a    given file    and which    can also    verify the    correctness of    a    given file that    already has    a    CRC-­‐15    value appended    to it,    as more    fully described  ...

Business & Technology | Math & CS | Dr. Aaron R. Rababaah | CSDP 250 | Final (Fall-2015) full paper solution

Implementation Language If code is given or required, it should be in C++ Question [01] Given the structure: struct BankAcnt{ string name; int number; float balance; }; Write a search function that scans a passed array of BankAcnt type to find an account with a passed number and resets the account balance to zero and returns “true”. If the account is not found, it just returns “false”. The operator “[]” is not allowed anywhere in the function and the size of the array is unknown but, the array always maintains a sentinel BankAcnt with a (number = -1). Question [02]   Given the STL two containers: forward_list and stack, write two functions to: a) Reverse print the objects of a forward_list using recursion. b) Reverse print the objects of a forward_list using iteration and stack. Question [03]  Write a function that prints a <queue> elements in reverse order using any helper STL container but the <stack>. Question [04]  Given a singly-linked list template c...