Programming & Design /////////////////////////////////////////// Question: C programm? Posted: 01 May 2016 01:02 PM PDT https://answers.yahoo.com/question/index?qid=20160501130201AAhLzep 1. Add the following functions to your library: a. recursiveFibonacci(n) : recursively finds nth fibonacci number b. recursivePower(x,y) : calculates xy recursively 2. Write a program that includes your library. In the main function test your functions and show that they work properly. For all coding, you should provide very detailed comments within your code. Please select function names and variable names self-commenting as well. Do not use math standard library functions. /////////////////////////////////////////// Question: Masm32 - x86 assembly language question: How to put -100 in floating point form into a variable? Posted: 01 May 2016 12:55 PM PDT https://answers.yahoo.com/question/index?qid=20160501125532AA3xSFG Let's say I have a variable by the name of tempStoreFP. What would be a line of code that stores the floating point form of -100 into tempStoreFP? /////////////////////////////////////////// Question: What is the best programming language for creating a game on your own? Posted: 01 May 2016 12:45 PM PDT https://answers.yahoo.com/question/index?qid=20160501124541AARMAql I don't have any friends/employees so what would be a language that could allow only one person to create their own game? I'm already learning c++, but learning OOP seems really advanced for c++. I've also learned Basic, but that doesn't work for gaming either. /////////////////////////////////////////// Question: Prolog, need help getting input and producing output? Posted: 01 May 2016 12:28 PM PDT https://answers.yahoo.com/question/index?qid=20160501122802AAjbdse I have a database of tunes structured like this for example: tune('Shine On You Crazy Diamond', 'Wish You Were Here', 'Pink Floyd', 'Rock', 'Apple lossless', 790). which is basically: tune(song1, song 2, artist, genre, abulm, bit rate). I have a list of data like this. But Im having trouble writing a little rule that if given an artist, prints all the songs from that artist /////////////////////////////////////////// Question: What IT jobs can I get when I'm still in school? Posted: 01 May 2016 12:22 PM PDT https://answers.yahoo.com/question/index?qid=20160501122227AAbR8jE I'm about to go back to college again, this time for an AS in network systems administration. I've heard that you can get hired for certain IT positions while still in school. What type of IT job could I qualify for while I'm still in school? /////////////////////////////////////////// Question: I need help with creating a python script to do some usefull tricks on facebook, not spamming!? Posted: 01 May 2016 11:59 AM PDT https://answers.yahoo.com/question/index?qid=20160501115919AA343zl I'm a beginner with python to be honest. specially when it cames to complicated codes. ok what i wanna do is, first you guys have to know that i do some small business on facebook, by joining the commercial group in my area to sell, useless stuff, clothes of mine. ok but after posting something in a group that has more than 80k member... imagine, your post will goes down after a hour or so and people won't be able to see it. so i wanted to make a python script that comment only in my post to plug it up then delete that comment after 30 seconds. and repeat this operation every 10 minutes or 15. That's it. I mean if someoen comments in your post, your post will be in top again. This is why i want to comment then delete the comment in my post, i'm doing it manually now and it's very annoying. /////////////////////////////////////////// Question: Design implement and test a function in c++ (using dev c++) that returns 2 minimum values in a given array? note length array given by user? Posted: 01 May 2016 11:58 AM PDT https://answers.yahoo.com/question/index?qid=20160501115801AAAuxE1 /////////////////////////////////////////// Question: What is the name of the systems that are created especially for a specific company? Posted: 01 May 2016 11:54 AM PDT https://answers.yahoo.com/question/index?qid=20160501115451AACUhcp Example: the company X is a small company and its has financial dealings and management and work with other companies and customers . the work inside the company is paperwork system and because the work has become complicated, they want to start over to work on the computer system. Because the requirements are not provides in other systems they require to contracting with software company... the required: What call this types of software? and what is the steps ? /////////////////////////////////////////// Question: Does anyone need a website for any purpose/reason? Posted: 01 May 2016 11:36 AM PDT https://answers.yahoo.com/question/index?qid=20160501113604AA9qbwD Hey, I love designing websites as a hobby. It's truly one of my passions because I love checking to make sure colors, fonts, shapes, and everything else that is design-related goes together perfectly. I would absolutely be delighted to design free websites for anyone who wants one for an intended purpose. Please hit me up, it would make me SO happy. /////////////////////////////////////////// Question: I'm having trouble with Stacks and queue's in java. It's an assignment it looks like it needs all inputs on one line, is that possible? Posted: 01 May 2016 11:11 AM PDT https://answers.yahoo.com/question/index?qid=20160501111156AAHJahp /////////////////////////////////////////// Question: I love coding. What profession should I choose? Posted: 01 May 2016 11:09 AM PDT https://answers.yahoo.com/question/index?qid=20160501110911AAXSnt1 I love coding its amazing being able to create my own games and apps from scratch and I love solving problems. I like computers and yeah. /////////////////////////////////////////// Question: Emulators using raspberry pi? Posted: 01 May 2016 11:08 AM PDT https://answers.yahoo.com/question/index?qid=20160501110849AAVhVYX I just got a raspberry pi and I don't know how to use it but that's beside the point. I know its kinda like a mini computer so I was wonder if there was a way I could hook it up to a monitor, keyboard, and mouse so I could play GB, GBA, and GameCube emulators? /////////////////////////////////////////// Question: Looking to create a useful Python program, script, or unattended installation? NEW and NEED help!? Posted: 01 May 2016 09:49 AM PDT https://answers.yahoo.com/question/index?qid=20160501094906AAEz6dm I have a project that I need to have completed by Wednesday. It has to use python programming and be useful to a computer class or a virutal net work. Not something to hard as i am a beginner but like an un-attended install of a program? I just need something to go off of and learn from if that makes sense. I am a beginner like fresh out of the box but I need it done. /////////////////////////////////////////// Question: Why does this program give me 6? Posted: 01 May 2016 09:45 AM PDT https://answers.yahoo.com/question/index?qid=20160501094530AASA9iO int number = 6; int x = 0; x = number--; cout 6: choice = int(input("Please enter a valid choice, 1-6: ")) return choice def find_gpa(mystudents): name = input("Enter a name: ") if name in mystudents: print(mystudents.gpa) else: print(mystudents.get(name, 'That name is not found.')) print() def add_student(mystudents): name = input("Enter a new student's name: ") idn = input("Please enter the student's ID number: ") gpa = input("Please enter the student's GPA: ") grade = input("Please enter the student's expected grade in this course: ") hours = input("Please enter if this student is full or part-time: ") if name not in mystudents: mystudents[name] = entry print("The entry has been added.") print() else: print("That name already exists.") print() def change_gpa(mystudents): name = input("Enter a name: ") if name in mystudents: gpa = input("Please enter the student's new GPA: ") entry = Students.Students(name, idn, gpa, grade, hours) mystudents[name] = entry print("GPA updated.") print() else: print("That name is not found.") def change_grade(mystudents): name = input("Enter a name: ") if name in mystudents: grade = input("Please enter the student's new grade: ") entry = Students.Students(name, idn, gpa, grade, hours) mystudents[name] = entry print("Grade updated.") print() else: print("That name is not found.") print() def print_data(mystudents): input_file = open(FILENAME, 'rb') print(mystudents) print() input_file.close() def save_students(mystudents): output_file = open(FILENAME, 'wb') pickle.dump(mystudents, output_file) output_file.close() main() ###### class Students: def