Recent content by kadaj6
-
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...- kadaj6
- Thread
- Distribution Exponential Exponential distribution
- Replies: 1
- Forum: Engineering and Comp Sci Homework Help
-
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...- kadaj6
- Post #6
- Forum: Engineering and Comp Sci Homework Help
-
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- kadaj6
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
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...- kadaj6
- Thread
- Design
- Replies: 7
- Forum: Engineering and Comp Sci Homework Help
-
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 =...- kadaj6
- Thread
- Binary Fraction
- Replies: 1
- Forum: Programming and Computer Science
-
K
Logic Gate Sim: Get Boolean Algebraic Expression
any logic gate simulator that gives you the boolean algebraic expression at the end?- kadaj6
- Thread
- Gate Logic Logic gate Simulator
- Replies: 1
- Forum: Electrical Engineering
-
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...- kadaj6
- Post #9
- Forum: STEM Academic Advising
-
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- kadaj6
- Post #4
- Forum: STEM Academic Advising
-
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...- kadaj6
- Thread
- Engineering Internship
- Replies: 8
- Forum: STEM Academic Advising
-
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- kadaj6
- Post #9
- Forum: Engineering and Comp Sci Homework Help
-
K
Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems
its an old book, it doesn't matter?- kadaj6
- Post #7
- Forum: Engineering and Comp Sci Homework Help
-
K
Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems
just ordered it, anyoner books? or websites that i can get problems from?- kadaj6
- Post #5
- Forum: Engineering and Comp Sci Homework Help
-
K
Engineering Circuit Analysis: Mesh, Node & Thevenin Practice Problems
im looking for but can't find it, can you please send a link?- kadaj6
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
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.- kadaj6
- Thread
- Circuit
- Replies: 9
- Forum: Engineering and Comp Sci Homework Help
-
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)...- kadaj6
- Post #3
- Forum: Engineering and Comp Sci Homework Help