Category: Programming

  • Programming Question

    Lalit sir jee toper all india 10 rank

  • Apa itu pendidikan karakter

    Apa itu karakteristik manusia

  • Analysis of Refugee Trends and Historical Causes Using R Dat…

    This is one section of a group project, and I only need help completing my assigned portion.

    The dataset referenced in the R script is already provided. I was unable to upload the R file, so I included the R script and project instructions in a Word document.

    Please complete the following tasks:

    1. Research and discuss the historical events that drove increases in refugee numbers in at least 3 of the top 5 countries during the time period shown in the dataset.
    2. Identify and explain any additional interesting or notable findings from the data.

    The Word document includes the full group project instructions, but you only need to complete the section described above, since that is the part assigned to me.

    Attached Files (PDF/DOCX): groups r script.docx, ECON_4970_Mini_Project.pdf

    Note: Content extraction from these files is restricted, please review them manually.

  • Programming Question

    Please follow the instructions provided on the attachment, let me know if you have any questions.

    This is due today 03/08/2026 at 7pm PST

    Assignment # 6 – Lab & Alt Lab 6.1

  • Building an Autonomous Software Development Organization

    You need to design and implement a multi-agent AI system that functions as a small software development company. Here is exactly what you must do:

    • Design the Organization: Define the scope, agent types, team structures, and architecture needed for a software company.
    • Implement Four Key Roles: Create agents for four specific peer rolesTeam Leader, Development Manager, Planning Manager, and Quality & Testing Managerwho will collaborate to plan, build, test, and deploy software.
    • Build a Tangible Product: Use agentic frameworks to deploy the system so it autonomously creates a secure, working software prototype, such as a student collaboration web application.
    • Document: Compile everything into a comprehensive release report.
  • lab 3 report

    compelte my lab do not use any kind of ai, below I gave u my lab 3 report template this is what u need to follow, and i also attached the data :

    Requirements: finsih the lab report well | .doc file

  • Follow the Instructions to create this website with database

    There are 4 parts to this courses assignments. In the first half the course there is 1 assignment that is given in 2 parts (one part or phase per week). The overall intent is to design and implement a fictitious car parking lot management system using HTML, CSS, PHP, and MySQL database engine. Apache should be used as the application server. You may use JavaScript and Bootsrap additionally but must point out where you use it and why you feel it was necessary.

    Phase 1:

    1. Database design (10pts)

    Design and implement in mySQL a potential data model (of your own design) for the parking lot based on the following requirements:

    Implement tables

    1. ParkingLot
    2. Floor
    3. ParkingSlot
    4. Customer (who has a vehicle associated with them)
    5. ParkingSlip

    You may use the following link: as an example to help you define these tables, however do not use everything that is in that data-model as it is not pertinent to this assignment. You may use some of the fields from that data model to guide you as to how to design your tables.

    1. Website initial design (15pts)

    Design and implement a set of baseline web pages to perform the following use cases for users that are employees of the parking company and manage the lot. This website is not for customers who are using the parking lot.

    1. Home page with an administrator login, and logout
    2. Create a new user/operator.
    3. Update the details of a user/operator.
    4. Delete a user/operator.

    Every web-page must have header and footer and a uniform look at feel (for which you may want to use CSS style sheets).

    1. The header must display the banner which is made of tiles of images. The title must be displayed on the banner. The title must be ACME Parking.
    2. The footer must contain the name of the developer and the link which allows the web-user to send feedback to the developer.
    3. There must be a navigation bar on each page. It must be located on the left-hand side of every page. The navigation bar options vary depending on the categories of functionalities where the web-user is currently at.
    4. Each main page of each category may display an image icon representing the category of functionalities.
    5. The default web-sites page must be named index.php. On this page, the navigation bar contains only one Login button.
    6. Once logged on, the web user can navigate around the web-site using the navigation bar, depending on the privilege.
    7. While logged in each page must display the user-name who is currently logging on the system.

    Each page must be secured and protected from being accessed without logging onto the system.

    NOTES:

    • Zip up your project folder recursively and attach to this assignment on Black Board.

    Requirements: complete

  • Computer Vision Assignmnet 1

    Interactive Computer Vision Tool with GUI

    Submission: PDF documentation (Primary resource) + .py script + demo video link

    Objective

    Design and implement a standalone desktop computer vision tool using OpenCV and Tkinter. The tool must provide a graphical user interface (GUI) that allows users to open a local image or access the webcam, apply image processing and vision operations,** adjust parameters interactively**, and save the output. The emphasis is on correct implementation, usability, parameter control, and clear documentation.

    Functional Requirements (What your tool must do)

    A. Input & I/O

    Open Local Image

    i) File Open… (Tkinter menu), ii) Supported formats: JPG, PNG, BMP (at least)

    Access Live Webcam

    i) File Access Live Webcam, ii) Display live feed in the main window, iii) Take Snapshot button to freeze a frame and switch to static-image mode

    Save Output

    i) File Save As…, ii) Save the currently displayed image (processed result)

    B. GUI & Interaction

    Implement** at least** the following GUI features:

    Menu bar (File / Tools)

    Buttons (e.g., Apply, Snapshot)

    Trackbars / sliders for real-time parameter control

    Text box for numeric input (with validation)

    Clean exit and proper resource release (camera, windows)

    C. Image Processing & Vision Operations (Choose 10 total, with constraints)

    You must implement at least 10 operations overall, satisfying the minimum coverage below. You may implement more for bonus credit.

    1. Foundations & Color (Choose 2)

    RGB channel access and manipulation

    Grayscale conversion

    Brightness / contrast adjustment

    HSV (Hue/Saturation/Intensity) adjustment

    Color blindness simulation (matrix-based)

    2. Image Statistics (Implement all)

    Histogram computation and display

    Histogram equalization

    3. Point & Local Operators (Choose 2)

    Contrast stretching

    Median filter (kernel size via text box)

    Gaussian smoothing (kernel size + )

    Sharpening (Laplacian or custom kernels)

    4. Edge Detection (Choose 2)

    -** Sobel** (kernel size + threshold defined as a ratio of mean)

    Canny (control t1, t2, aperture size)

    Laplacian of Gaussian (LoG) (, kernel size, threshold)

    5. Segmentation (Choose 2)

    Global thresholding

    Adaptive thresholding (block size, method, etc.)

    Contour detection

    OR one advanced method:

    Mean Shift (sp, sr, pyramid levels)

    Superpixels (SLIC: n_segments, compactness)

    Implementation Rules:

    ##** i) Python only, **

    ##** ii) OpenCV + Tkinter only (no PyQt, no web frameworks)**

    ##** iii) Must run locally (not Colab), your tool will be tested by the instructor via calling your script from terminal **

    AI tools may be used, but **you must understand and explain your code in the technical interview **

    Code must be well-structured (functions/classes, not one giant script)

    Your tool should handle edge cases (such as no image loaded, invalid parameters). These should not cause a crash; instead, the user should be informed (for example: Please load an image before running the function) ) and when necessary parameter values should be set to default (when they are set outside of acceptable ranges (e.g. kernel size = -1))

    Deliverables:

    IMPORTANT: In your submission, you should upload the PDF as primary resource and a zip file containing both the PDF and the script as a secondary resource.

    1.** PDF Documentation (36 pages): Primary resource to upload**

    Your PDF must include:

    **Overview of the Tool **

    A short description of the main features of the tool

    **List of Implemented Functionalities **

    One subsection per operation

    **Parameters Table **

    For each operation:

    Parameter name

    Type (slider/textbox/menu)

    Valid range

    Effect on output

    **GUI Screenshots **

    Annotated where appropriate

    2. Python Script (****.py**): To pack together with the PDF file and upload as a secondary resource **

    Your script must:

    Launch the GUI

    Support image and webcam modes

    Provide interactive controls for selected operations

    Save outputs correctly

    Be readable and commented

    **File name example: **cv_gui_assignment1_.py

    3. Video Demonstration (24 minutes): To include in the first page of the PDF

    Include** link** (Google Drive) in your PDF (at the beginning of the) document showing the following user operations:

    Opening an image

    Using **at least 4 different operations **

    Adjusting parameters live

    Accessing webcam and taking a snapshot

    Saving the output

    Bonus:

    Side-by-side original vs processed view

    Preset buttons (e.g., Low Noise, Strong Edges)

    Keyboard shortcuts

    Down is an exercise document to give you an idea.

  • Programming Question

    Enviroment=lingkungan

    Pollution=pencemaran

    Reduce=mengurangi

  • Business Computer Languages

    Hey, i need some help with this question