Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
31% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for speedy94519

Hello, I have a question about the code below [CODE] // Checks the vertex a if (this.a != ((Triangle)o).a) { return false; } [/CODE] So In a method called Triangle i declared an instance variable like this: [CODE] private java.awt.Point a [/CODE] What I think this code is doing is …

Member Avatar for jon.kiparsky
0
149
Member Avatar for speedy94519

Hello, I would like some help on this one problem in my assignment. I have completed the table but something caught my attention and i feel i did something wrong. I attached the same table i filled out on this thread. I would like help on the first row. My …

Member Avatar for lillygil
0
203
Member Avatar for speedy94519

Hello. I have code that I would like to simulate in xilinx 12.2 but im not sure how to do that. could someone help me out on how i can simulate my code? Im aware that im suppose to create a new project, set the settings for the appropriate device …

0
46
Member Avatar for speedy94519

I have a reduced function and one of the product terms is: B * C(not) * D + B(not) * C * D. Is that considered an XOR gate? Im aware that B * C(not) + B (not) + C is an XOR gate because When i do the truth …

Member Avatar for Haneen Dweikat
0
187
Member Avatar for speedy94519

Hello, Im having trouble deciding what type of MUX circuit I should use, for example 2:1,4:1, etc. I was given a problem about designing a circuit on a block diagram level that performs the following math operations: RES = A + A RES = A + C RES = A …

Member Avatar for apines
0
150
Member Avatar for speedy94519

I was given a set of binary number to assemble it into gray code sequence: 111 000 110 011 001 100. Is their a specific way I have to do this? From What I read in the internet I think the following solution would be this: Gray Code 000 001 …

Member Avatar for gusano79
0
166
Member Avatar for speedy94519

Hey I have a question about inverters. Is it possible to calculate the number of inverters from an oscillation frequency? I wish to find the number of inverters from aan oscillation frequency of 5.025 MHz from a ring oscillator. Any suggestions?

0
93
Member Avatar for speedy94519

Hey you guys I have a question about binary representation. I was given two signed binary (SB) number and Im suppose to determine which has the largest magnitude. I get the problem and I dont want any help on it but Im not sure how to[U] read[/U] this binary information. …

Member Avatar for hamshu88
0
135
Member Avatar for speedy94519

Hey guys Im having trouble printing out a string. Could someone help me out? I would like to enter a string like: "julie perez" and print out "julie perez" but my program only outputs "julie". The code that prints out only "julie" is the following: practice.c: [CODE] #include <stdio.h> #include …

Member Avatar for speedy94519
0
137
Member Avatar for speedy94519

I wrote a program that takes in this kind of input: [CODE]Short, Sue, , 3.11 Cisneros, Juan, G, 3.67 Andrew, T, 5.67 Superlonglastnamethatdoesnotfit, Betty, Boop, 2 Black, Shirley, T, 4.00[/CODE] and my program outputs this: [CODE]Highest gpa: 4.00 Average gpa: 3.19 Lowest gpa: 2.00 Sue Short 3.11 Juan G. Cisneros …

Member Avatar for nbaztec
0
114
Member Avatar for speedy94519

Hey guys. So I basically read in a bunch of data from a file into a data structure. But while I was doing that I included the spaces (which I dont want). So now I want to compare each element to see if it does have a blank space, and …

Member Avatar for speedy94519
0
291
Member Avatar for speedy94519

Hey you guys. Im doing c code where i have to make a file full of double values and then make another empty one because im going to write into that file. It does compile but i get this: Enter the input file name: randomfile.dat Enter the output file name: …

Member Avatar for WaltP
0
198
Member Avatar for speedy94519

Hey guys im having trouble writing this code for my function. I have the idea down and a way to solve the problem but im having trouble writing it in C code. Basically im writing a function that runs exactly like the function strcat from the string.h library but we …

Member Avatar for anonymous alias
0
359
Member Avatar for speedy94519

Hey is their a standard library that gives false and true values or something or are you suppose to assign them?? Im writing a function that suppose to return true or false. And i also tried replacing the words true and false by !0 (true) and 0 (false) but my …

Member Avatar for jephthah
0
110
Member Avatar for speedy94519

Hey you guys I have a question about web designing . Im a person who would like to learn about web creation, what would be a great place to start? In this college im attending this summer their offering two classes, one class is "Basic mechanics of web design using …

Member Avatar for colweb
0
120
Member Avatar for speedy94519

Hello im having trouble understanding between the difference 0 and 1 in C. the way i understood it is that 0 is true and 1 is false. Is this correct??? or is it 0 is false and 1 is true??

Member Avatar for Narue
0
288
Member Avatar for speedy94519

Hello im having a problem with my program. Im trying to read in two files called list.txt and teachers.txt and set them to an array called studentList[] and teacherList[] but i dont know how to do that, any suggestions? I know i have to use a for loop but i …

Member Avatar for speedy94519
0
107
Member Avatar for speedy94519

My code: [code] printf("\n"); printf("\tSlalom Race, Version 1.0\t\t\n\n"); printf("1. Play\n"); printf("2. Instructions\n"); printf("3. Quit\n\n"); printf("Your choice: "); scanf("%d", &choice); } /* Initializes loop to begin game */ while (choice != 3) { /* Begins execution of game and Selects instructions if needed */ while (choice == 1) { printf("You are …

Member Avatar for kommuru
0
81
Member Avatar for speedy94519

Hello you guys, Would anyone like to give me suggestions on how to make a code for the following pattern? Please note that the numbers arent part of the pattern, they are just a guide for row and column. * * * * * # # # 1 * * …

Member Avatar for mrnutty
0
94
Member Avatar for speedy94519

Hello you guys, Would anyone like to give me suggestions on how to make a code for the following pattern? * * * * * # # # 1 * * * * # # # # [B] ROW [/B] 2 * * * # # # # # 3 …

0
52
Member Avatar for speedy94519

Hello you guys. Im writing a program that calculates 4 parameters: velocity, acceleration, distance, time. Part of my program is to implement an output that adds all the times and prints it into min and seconds and the type that im working with is float. The problem that im having …

Member Avatar for yellowSnow
0
83
Member Avatar for speedy94519

Hello you guys. Im doing this one homework assignment and i really need some help. My question is, How would you write an if statement that excludes the blank space and how would you write an if statement stating that its magenta when its inside the red space with the …

Member Avatar for necrolin
0
159
Member Avatar for speedy94519

Hello you guys. Im doing this one homework assignment and i really need some help. This is the problem: In the grid below, each row/column intersection is a different color. Write an if-statement, possibly including many nested ifs and elses, to assign the right colors to each row and column. …

Member Avatar for BestJewSinceJC
-1
87