Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. bonus mark Programming Software Development by Sylvie.Georges guc professors decided to give bonus marks to engnieering students to their high performance in their … possible 4 student mark 2 exceed 100/100 after adding bonus mark bonus mark 2+ answer Programming Software Development by Sylvie.Georges guc professors decided to give bonus marks to engnieering students to their high performance in their … possible 4 student mark 2 exceed 100/100 after adding bonus mark solution: get semester get mark if (semester=1) then… Bonus System DB design Programming Databases by koli1976 Hi , I want help in designing a Bonus System Database. I am planning to organize contests on my …,weekly,monthly. Now, these points will serve as the user Bonus points for eligibility for sponsor prizes. let say user 1… Bonus Problem-MAP Programming Software Development by shills300 hi guys. our teacher posted a bonus a while ago that has me scratching my head. he … Need help with a for loop bonus calculation Programming Software Development by evertron … code below and I get everything except the bonus in the output. I tried it a few …different ways and the bonus never comes out right after the staff and sales.…#sales person values saleval = [] stafflist = [] bonuslist = [] bonuslist = saleval bonus = 0 #get the name of the salesperson #for guy in… Re: Need help with a for loop bonus calculation Programming Software Development by woooee … pointing to a list containing sales & bonus, but I am assuming that you have not… much is the sale? ')) if sales >= 0: bonus = 0 ## if sales < > statements here sales_list….append ([staff, sales, bonus]) ## --- this "i" is different from the … Accuracy with Speed Bonus Scoring System Programming Computer Science by jrivera …the list and use remaining clock time as bonus (mainly used as a tie breaker). Essentially,… accuracy (correct or incorrect) with a speed bonus (remaining clock time) Essentially we collect points per…) * .75 ==> [max_allowed], max amount of bonus points (clock points). The .75 was an arbitrary number… Re: visual basic 6 - Program to to count bonus point earn Programming Software Development by brisby … books read. Use a label to display the number of bonus points. The Points menu command should call a function procedure… clears the name, the number of books read, and the bonus points and then resets the focus. The Color and Font… the color and font of the information displayed in the bonus point’s label. i'm attach as well the menu… visual basic 6 - Program to to count bonus point earn Programming Software Development by brisby … have situation below, this program to obtain reader name and bonus point earned menu File Edit Help Points Clear About Summary… Decisions' Bonus Programming Software Development by _Kimberly * Instruction: Bonus Develop a calculator application that will allow the user to … Re: bonus mark Programming Software Development by Jishnu Don't expect anyone to write the entire code for you. Post your own efforts. In case you post your code, use code tags. This way you won't get any help. Re: bonus mark Programming Software Development by Sylvie.Georges get semester get mark if (semester=1) then if (mark>=90 and mark <100) then set total-mark to (mark + (mark * 0.05)) else if (semester =3), (… Re: bonus mark Programming Software Development by Sylvie.Georges i wanna write a pseudo-code using if and else statement if this correct??!!!! Re: Bonus Problem-MAP Programming Software Development by Schol-R-LEA Just to clarify: the code posted is the **`mapmaker.py`** file, while the data is the contents of **`samos.txt`**, correct? It seems to me that the first part of the problem is to figure out how to parse the data. Fortunately, the format seems fairly simple: each item starts with a terrain type, and a (I think) the number of coordinates, followed … Re: Bonus Problem-MAP Programming Software Development by shills300 yes, that's right (: thank you for your input! i'll try it that way and see how it goes ^_^ Re: Need help with a for loop bonus calculation Programming Software Development by evertron This entry at line 19 gives a snytax error that I dont really know what to do with. Re: Need help with a for loop bonus calculation Programming Software Development by evertron OK never mind I see the error I need a comma before each this entry in the print statements. I also need to look up enumerate to see how it works I have not used that before. I do appreciate the help!!!!!!!!! Re: Need help with a for loop bonus calculation Programming Software Development by woooee enumerate is the same as [CODE]ctr = 0 for this_entry in sales_list: print ctr, this_entry ctr += 1 [/CODE] Re: Accuracy with Speed Bonus Scoring System Programming Computer Science by Momerath First normalize the score. What I mean by this is divide the score they received by (max score + 1). This will give you a result that goes from zero to one (with one excluded). Round this number off to however many decimals you like (say 3) so you have a value from 0.000 to 0.999. Do the same with the time, again getting a number from 0.000 to 0… Re: visual basic 6 - Program to to count bonus point earn Programming Software Development by BitBlt Your post doesn't really have enough detail for anyone to help you. Are you asking how to code a menu "click" event procedure? Or do you need to know how to call a function from another module? Or are you looking to find out how to calculate some result? Re: visual basic 6 - Program to to count bonus point earn Programming Software Development by ChrisPadgham [CODE] public function calcPoints(booksRead as integer) as integer dim points as integer dim booksRemaining as integer Points = 0 booksRemaining = booksRead if booksRemaining > 0 then points = min(booksRemaining,3) * 10 booksRemaining = booksRemaining - 3 end if if booksRemaining >0 then points = points + min(booksRemaining,3) * … Re: Decisions' Bonus Programming Software Development by Santanu.Das You tried to write it, but your direction of thinking is not in proper way. What did you try to do, was not in your mind. What were your jobs? *Declaring varibles*: You did it properly. Dim Num1 As String Dim Num2 As String Dim AorS As String Dim result As String *Asigning values to the variables*: You did it nearabout properly.… Re: Decisions' Bonus Programming Software Development by JerryFJustic You did pretty good. But, I would have simplified it by validating up front. That way you are not executing needless code. Make Num1 & Num2 numeric - easier to code Private Sub btnCalculate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click Dim Num1 As Double Dim Num2 As Double Dim … Converting from lower case and uppercase Programming Software Development by NycNessyness …;& bonus <= 9) { bonus = 3; } else if (bonus >= 10 && bonus <= 12) { bonus = 4; } else if(bonus >= 13) { bonus = 6; } else { bonus = 0… Re: Converting from lower case and uppercase Programming Software Development by NycNessyness …;& bonus <= 9) { bonus = 3; } else if (bonus >= 10 && bonus <= 12) { bonus = 4; } else if(bonus >= 13) { bonus = 6; } else { bonus = 0… Displaying Average Programming Software Development by NycNessyness …;& bonus <= 9) { bonus = 3; } else if (bonus >= 10 && bonus <= 12) { bonus = 4; } else if(bonus >= 13) { bonus = 6; } else { bonus = 0… explain code.. Programming Software Development by kuen … (bonus.X % 29 == 0){ bonus.X = 1 + rand() % 78; bonus.Y = 4 + rand() % 48; if (track[bonus.X][bonus.Y] == ' '){ track[bonus.X][bonus.Y] = '?'; gotoxy(bonus.X,bonus Help My code won't compile Programming Software Development by Coder98 …; bool bonus; bonus = ThisYearProduction - LastYearProduction; if(bonus <= 1000) Console.WriteLine("Your bonus is $25"); else if(bonus >=…this input you decide if they get a bonus. if any amount less than zero is entered…. If it is greater; call the Calculate bonus method and assign the result a suitable variable.… Re: Help My code won't compile Programming Software Development by Momerath …double ThisYearProduction; bool bonus; bonus = ThisYearProduction - LastYearProduction; if(bonus <= 1000) Console.WriteLine("Your bonus is $25"); else if(bonus >= 1000… are also trying to assign a number to a boolean (bonus) variable. Lines 38-45: Again the { and } …