Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
30% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
6
Posts with Downvotes
3
Downvoting Members
6
1 Commented Post
~1K People Reached
Favorite Tags
Member Avatar for blamp

I have add the two functions the add and subtract I have to now add the multiply and divsion functions can someone help

Member Avatar for irum.nageen.3
-1
398
Member Avatar for blamp

the largest negative and positive integers for n-bit 1’s and 2’s complement systems? What are these numbers for 32-bit registers? If (1000001110)2 is an integer in a 10-bit 2’s complement system, what is the binary code for it in 20-bit 2’s complement system?

Member Avatar for strmstn
0
127
Member Avatar for blamp

Can someone help me figure out why nothing comes up on the output screen. The program compiles but the the output is blank. 1. Maintain information on all students. Each student has the following: 1st line - lastname, city of residence, student id, ssn 2nd line - course, course id, …

Member Avatar for pecet
0
122
Member Avatar for blamp

can someone help me figure out why my output is incorrect any help would be apprecaited [code]#include<iostream> using namespace std; class fractions { public: fractions fractions :: operator+(fractions f); fractions fractions :: operator-(fractions f); fractions fractions :: operator*(fractions f); fractions fractions :: operator/(fractions f); fractions addFraction(fractions); fractions subFraction(fractions); fractions multiFraction(fractions); …

Member Avatar for jonsca
0
101
Member Avatar for blamp

can someone help me figure out why the output of my program is coming out wrong [code] #include<iostream> using namespace std; class fractions { public: fractions fractions :: operator+(fractions f); fractions fractions :: operator-(fractions f); fractions fractions :: operator*(fractions f); fractions fractions :: operator/(fractions f); fractions addFraction(fractions); fractions subFraction(fractions); fractions …

Member Avatar for jonsca
0
101
Member Avatar for blamp

I have finished all the functions except one. I need help with writing a boolean function to determine if the magic square is a magic square. I don't completely understand boolean functions so any help would be appreciated. Thank you[code]#include<iostream> using namespace std; #include<fstream> //load the array void load2D(int &n, …

Member Avatar for blamp
-2
141
Member Avatar for blamp

I completed most of the functions and it compiles but need help with two.Can someone help me with the uniqueScore function which is suppose to print test scores that only appears once and the differenceScore function which is suppose to print the difference between the largest and smallest score. #include …

Member Avatar for StuXYZ
0
114
Member Avatar for blamp

Do you think that the design of operating systems based on providing support for multimedia applications or access to the Internet has resulted in increased security risks? Why or why not? Discuss some security measures that would be taken to protect hardware and software.

Member Avatar for Salem
0
35
Member Avatar for blamp

I have started the program but I need help with createing a class which works for both integers and characters. [code] template< class T > class List { private: struct node { T data; node * next; } node * head, * tail; int size; public: List(); void Push_Head ( …

Member Avatar for Clockowl
0
122