Recent content by kadaj6

  1. K

    Testing/proving X-bar oof an exponential distribution

    ok, so I have a list of students with GPA, I checked the probability plot and I think its a Exponential distribution, take a look: So I am given a χ-bar to prove, and I have to prove or test it with three different types of test, I don't know which ones or how to do them in miniTab...
  2. K

    Multiply Binary Numbers with Hex Keypad

    3x4 Keypad Homework Statement ok, so I am designing a basic multiplication calculator using only logic gates registers buffers and ram, and any other chip that doesn't involve programming or microcontrollers. i have the rest of the circuit done all I need is the implementation of a keypad...
  3. K

    Multiply Binary Numbers with Hex Keypad

    is that idk where to send the "1010" value when i press it... that's what i have in my head lol but don't know how to implement
  4. K

    Multiply Binary Numbers with Hex Keypad

    hello, I'm trying to design a "calculator" that multiplies two four bit binary numbers without using any type of programming or microcontrollers. so far it can multiply and show me the answer, I am using a hex keypad, and ascii display. but I am having trouble since i have to actually show...
  5. K

    What is a way to convert a decimal fraction to binary using a custom data type?

    ok so i have this code: import java.util.Scanner; class doubleEncodingClass { public static void main(String args[]) { byte largestPositiveByte = 127; short largestPositiveShort = 32767; int largestPositiveInt = 2147483647; long largestPositiveLong =...
  6. K

    Logic Gate Sim: Get Boolean Algebraic Expression

    any logic gate simulator that gives you the boolean algebraic expression at the end?
  7. K

    Seeking Internship in Embedded Systems/Microprocessor Engineering

    Thank you everyone, I am taking everything in and fixing my resume. I am going to take it tomorrow to the department office so they can give me more feedback. I appreciate the feedback it has been really really helpfull. As soon as I feel that my resume is better I'll re post it here so you...
  8. K

    Seeking Internship in Embedded Systems/Microprocessor Engineering

    Thank you for your productive and valueable reply yungman, do you think I should put that my physics professor gave a recommendation letter? What else should I write about, or you look for when reading a resume? I appreciate your feedback on my resume, it really is helping me a lot
  9. K

    Seeking Internship in Embedded Systems/Microprocessor Engineering

    hello, I am looking for a internship, I am a computer engineer major and i want a internship with any of the big guys in embedded system, micro processors, ect... Im going to post my resume here so you can give me tips and tell me if it makes me sound appeling for a position OBJECTIVE...
  10. K

    Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems

    well thankyou very much! i really need it, this professor gives test like nothing in my book
  11. K

    Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems

    just ordered it, anyoner books? or websites that i can get problems from?
  12. K

    Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems

    im looking for but can't find it, can you please send a link?
  13. K

    Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems

    hello, Im in circuit analysis class, and I'm currently on mesh, node, and thevenin and I wanted to know what's a good source to get practice problems. please someone help, i don't feel my book is really good, since my professor gives really hard tests.
  14. K

    How to Analyze Bubble Sort Algorithm Efficiency?

    function [S] = bubblesortWMemSe(X) % Bubble sort implementation with memory and Stop Early len = length(X); S=X; % t0=tic; sorted = false; last=1; while (~sorted) sorted = true; for i=last:len-1 if S(i) > S(i+1) tmp = S(i); S(i) = S(i+1)...
Back
Top