Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #44.3K
~1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
c++ x 2
c x 2
java x 1

4 Posted Topics

Member Avatar for COKEDUDE

At the most primitive level, computers can perform a set of actions, also known as instructions. A collection of these instructions when put together can solve a problem. This collection is called a program and assembling such a collection is known as programming. The vocabulary of instructions is called assembly …

Member Avatar for rproffitt
0
206
Member Avatar for sujoy98

1. There is a stray apostrphe at the end of line 43. 2. I changed public class Bank -> public class Main 3. I moved public class Main to the top starting from line 2 4. In the switch statement you try to instantiate a new instance of "Bank" instead …

Member Avatar for sujoy98
0
211
Member Avatar for Member #1185183

In main, you have not added empl1 or empl2 to teir departments. i.e. you have not said dept1.setEmployee(emp1); and dept2.setEmployee(emp2); Thus their total salaries in each department == 0 which means they are equal even though you have individually increased emplkyees salaries by differnt amounts.

Member Avatar for bdux
0
129
Member Avatar for COKEDUDE

It depends on when the correct value for var3 is known and by whom (i.e. which function). If it is known only by func14, there's no point in changing the code. If it is known before the cascade of functions is called you might make it global. Since you have …

Member Avatar for bdux
0
695

The End.