Programming & Design /////////////////////////////////////////// Question: So, I want to open a corrupted image without repairing it, is it possible to view it with out repairing it ina safe way? Or is is too risky? Posted: 19 Apr 2016 01:15 PM PDT https://answers.yahoo.com/question/index?qid=20160419131537AAj7S2I /////////////////////////////////////////// Question: Encapsulation, Information Hiding,? Posted: 19 Apr 2016 12:48 PM PDT https://answers.yahoo.com/question/index?qid=20160419124836AAUhvkL Are encapsulation and information hiding separate concepts. Also, are abstraction and information hiding related? I've been told that all these things are and are not connected and maybe it's just an issue of semantics. Can a class can be well encapsulated but posses poor information hiding properties and poor abstraction or is that when a class hides information poorly, that it is poorly encapsulated? For example, class MyClass { // Data should be private. public int data; ... public void methods(); } Assume this class can do everything that the object is modeling. In that sense, it is well encapsulated, but since it exposes sensitive data variables, it does not hide information well. Further, does this cause it to have a lesser quality of abstraction as it exposes details (variables which should be private) which (assume in this case) the user does not need to know. Thank yo. /////////////////////////////////////////// Question: Java import Statement? Posted: 19 Apr 2016 12:22 PM PDT https://answers.yahoo.com/question/index?qid=20160419122245AACxq6h Let's say I have an ArrayList in my simple class. I import Java.util.*, does this copy and paste all code from util into my source file? Does it increase the size of the program somewhat like C++ does it only include the ArrayList code? On a side note, if I create my own ArrayList class, but still (for whatever reason) import util.*, is there name collision between my custom ArrayList and the ArrayList in util.* thx /////////////////////////////////////////// Question: C programming? Posted: 19 Apr 2016 12:21 PM PDT https://answers.yahoo.com/question/index?qid=20160419122113AACleSQ 1.Construct your own library by generating .c and .h files. Your library should include the following functions: a.sumOfIntegersDivisibleBy3(n) : returns sum of integers divisible by 3 between 1 and n. b.factorial(n) : returns factorial of the number n c.power(x,y) : calculates xy d.isDivisible(x,y) : finds whether x is divisible by y i.e.isDivisible(35,5) returns 1, isDivisible(32,5) returns 0 2Write a program that includes your library. In the main function you will have a loop with sentinel continuation condition. You should allow the user to select any of the functions provided by your library to make some calculations. Use switch statement to execute the selected operation.according to the selected operation print some directives to the screen, take arguments from the user and print the result. Then the program should wait for the next selection. For all coding, you should provide very detailed comments within your code.Do not use math standard library functions. However, this assignment does not require submission of your pseudocodes. Example user interface should be similar to the following (red entries represent the user inputs): Please make a selection with the corresponding number of any operation: 1. sumOfIntegersDivisibleBy3 2. factorial 3. power 4. is divisible 9. Exit 3 Please enter two integers x and y to calculate x^y 2 3 Result is:8 Please make a selection with the corresponding number of any operation: 1. sumOfIntegersDivisibleBy3 2. factorial 3. power /////////////////////////////////////////// Question: What is HTML? Posted: 19 Apr 2016 12:02 PM PDT https://answers.yahoo.com/question/index?qid=20160419120248AAP2IIE /////////////////////////////////////////// Question: Creating a Javascript Chess game? Posted: 19 Apr 2016 11:31 AM PDT https://answers.yahoo.com/question/index?qid=20160419113104AAgoNJu /////////////////////////////////////////// Question: 2.5 million winners list ASP? Posted: 19 Apr 2016 11:30 AM PDT https://answers.yahoo.com/question/index?qid=20160419113016AAp0yGV /////////////////////////////////////////// Question: Where do I key in the verification code? Posted: 19 Apr 2016 11:20 AM PDT https://answers.yahoo.com/question/index?qid=20160419112032AADflH8 /////////////////////////////////////////// Question: Are there any numbers that cannot be stored in an IEEE floating point number? Posted: 19 Apr 2016 11:09 AM PDT https://answers.yahoo.com/question/index?qid=20160419110942AAbhPol I am curious to know if there are any numbers that cannot be stored in an IEEE floating point number. Can anybody provide an example of one, as well as why exactly that number is incapable of being stored? /////////////////////////////////////////// Question: How to edit particles in Blender? Posted: 19 Apr 2016 10:57 AM PDT https://answers.yahoo.com/question/index?qid=20160419105707AA99qUN Currently trying to edit an intro template in Blender and during the intro there are little cubes that circle around the text that look really bad and I want to get rid of them however it's not letting me right click and delete them. Does anyone know how to remove these? /////////////////////////////////////////// Question: Please Help me this is due next period in AP Computer Science!? Posted: 19 Apr 2016 10:50 AM PDT https://answers.yahoo.com/question/index?qid=20160419105019AAjds8x Software Development Lab: You have been requested to write a detailed proposal on how you would create an application that generates groups for a class. The application needs to be able to create groups based on the following criteria: - be able to choose group size - be able to create groups based on a student’s ranking which is assigned by the teacher - remember the last grouping made so this grouping is different from the previous as much as - create groups and exclude students who are absent that day - print group lists - be able to add comments about who works well together and who doesn’t - ability to combine two class lists - import class lists from another source o either of a homogeneous or a heterogeneous group possible (minimal of having the same students in the same group) The proposal should include details such as: - classes to be created - rational behind your decisions (think about how you decided to create what you did based - any other questions you may have for the client o instance variables o methods with header information and some details as to its behavior on the specifications) Thank you! /////////////////////////////////////////// Question: In c++ how would I increment a vector? Posted: 19 Apr 2016 10:44 AM PDT https://answers.yahoo.com/question/index?qid=20160419104452AAeLOCO If I wanted to increment vector x what kind of loop would I need? Or would I need a loop at all? I know how to increment a regular variable, but vectors confuse me so I don't know how I would. An optional question: could someone give me a simple explanation of how to use a vector? /////////////////////////////////////////// Question: What are the key advantages of gcc 5.2 over gcc 4.8? Posted: 19 Apr 2016 09:44 AM PDT https://answers.yahoo.com/question/index?qid=20160419094432AAEkSJP /////////////////////////////////////////// Question: It's my first time using linkedlist in c++ and complitly lost.any hint how to start this code in c++? Posted: 19 Apr 2016 09:43 AM PDT https://answers.yahoo.com/question/index?qid=20160419094334AAsVjEO In this program you will create a linked list. Each node will have the following information: 1. Employee Number 2. First name 3. Last Name 4. Age This program will have the following functions: 1. Display List List the entries in the nodes. (5 points) 2. Add Employees Create new nodes in the list (10 points) 3. Change Employee info Edit and change information in a node in the list (20 points) a. User must specify the Employee number b. Produce a meaningful message if the employee number is not in the list 4. Delete Employees (10 points) remove the node from the list. Do not forget that if a node is removed from the middle you must reconnect the prior node with the next node. 5. Count List (5 Points) This function will count the number of items in a linked list NOT including the Head. /////////////////////////////////////////// Question: " GetRxBytesAvailable() retry limit exceeded"? Posted: 19 Apr 2016 09:42 AM PDT https://answers.yahoo.com/question/index?qid=20160419094206AAUjemm " GetRxBytesAvailable() retry limit exceeded" I have a program on our store computer that reads and loads info on cards. All of a sudden this error comes out when trying to read the cards. I m not a computer wiz so I have no idea what it means and the company that owns the program doesn t know how to fix it either. Can anyone explain this to me in dummy terms. /////////////////////////////////////////// Question: DDoS Mitigation on Home Connection? Posted: 19 Apr 2016 09:35 AM PDT https://answers.yahoo.com/question/index?qid=20160419093503AA5hA3j I do alittle bit of programming in Python and Java and a few other languages, I was curious if there is a way to DDoS Mitigate my home connection by injecting a little script into my router? /////////////////////////////////////////// Question: Visual Basic 6.0 : programming probs, HELP!? Posted: 19 Apr 2016 09:28 AM PDT https://answers.yahoo.com/question/index?qid=20160419092821AAVZzMc Well I have an assignment : 3 Command Buttons in Form NAMED : CMD1, CMD2 and CMD3 , respectively CAPTIONNED : Mars, Twix, Snickers. We have set another command button NAMED CMD4 next to those 3, and it is captionned as EAT THE CHOOSED CHOCOLATE. And next to it we another command button Named CMD5 and Captioned as Refresh. Now what the teacher wants : How to program in a way that when we Click on Refresh : the chocolate Mars, Twix and Snickers reappear (after being erased by the "EAT..." button) and a textbox already set named : text1.text disappears.... /////////////////////////////////////////// Question: Changing font in cmd? Posted: 19 Apr 2016 08:50 AM PDT https://answers.yahoo.com/question/index?qid=20160419085024AA1YQCc PLEASE! Don't even bother MENTIONING right click the title ar of cmd! ive looked EVERYWHERE! I want a command. PLEASE... ik its possible /////////////////////////////////////////// Question: Help with Views in SQL.? Posted: 19 Apr 2016 08:24 AM PDT https://answers.yahoo.com/question/index?qid=20160419082431AAKwzrO I would like to know what views are and how they work. An example may help out too. Please any help would help. Thanks in advance. /////////////////////////////////////////// Question: Main feature of good programming language? Posted: 19 Apr 2016 07:04 AM PDT https://answers.yahoo.com/question/index?qid=20160419070447AAewWMy /////////////////////////////////////////// Question: How do I use app inventor 2 to implement an online social media I made? Posted: 19 Apr 2016 06:58 AM PDT https://answers.yahoo.com/question/index?qid=20160419065804AA5Dvll I made a social media with an website called humhub and I would like to make a mobile app with app inventor 2. How can I make this app inventor 2 /////////////////////////////////////////// Question: What to expect from Web developer after web developing has done? Do I have to get some coding, admin right, or product ownership from him? Posted: 19 Apr 2016 06:46 AM PDT https://answers.yahoo.com/question/index?qid=20160419064629AAypf5T /////////////////////////////////////////// Question: Why when I put a skin in Cinema 4D is like legs up ......bla bla Fix plsss? Posted: 19 Apr 2016 06:27 AM PDT https://answers.yahoo.com/question/index?qid=20160419062712AAwfe6a /////////////////////////////////////////// Question: Matching up Python Lists? Posted: 19 Apr 2016 06:08 AM PDT https://answers.yahoo.com/question/index?qid=20160419060813AAfxKIt I need to make a movie list in python. Each movie needs a genre and rating. I've completed all other side objectives for the assignment. Yet I want to know how to match up components of different lists. Thanks! example: MovieList = [x,y,z] GenreList = [1,2,3] RatingList = [g,pg,pg13,r] x 1 g y 2 pg etc. /////////////////////////////////////////// Question: Simple design for circuit bard to make 3 taillighrts sequential? Posted: 19 Apr 2016 05:50 AM PDT https://answers.yahoo.com/question/index?qid=20160419055045AACscBN /////////////////////////////////////////// Question: Javascript errors are breaking reply in yahoo mail and groups:? Posted: 19 Apr 2016 05:45 AM PDT https://answers.yahoo.com/question/index?qid=20160419054518AAuIwHG instantiating uh search component 3s.yimg.com/zz/combo?/ru/0.6.99/min/js/yg-topic-base.js:1 Uncaught TypeError: q is not a function combo?/ru/0.6.99/min/js/yg-topic-base.js:1 Uncaught TypeError: q is not a function /////////////////////////////////////////// Question: Does anyone know of a credible website that discusses why some people should not procreate? Posted: 19 Apr 2016 05:34 AM PDT https://answers.yahoo.com/question/index?qid=20160419053420AA22SNI ideally, I need to find a celebrity or judge quoting their thoughts on this topic. THANK YOU SO MUCH!! /////////////////////////////////////////// Question: How to Create DockTab Dynamically using vb.net DotNetBarManager? Posted: 19 Apr 2016 04:59 AM PDT https://answers.yahoo.com/question/index?qid=20160419045954AARTiTH I want to create a dock tabby clicking a concerned button using vb.net . My requirements are as below : When I click sale button a 'dock tab' created with label sale and also sale form show in panel dock container. And When I click another button dock tab created with form in its panel and also avoid repetition for creating same tab again. /////////////////////////////////////////// Question: Best place to publish a portfolio website? Posted: 19 Apr 2016 04:36 AM PDT https://answers.yahoo.com/question/index?qid=20160419043623AAz9vVk Need somewhere super cheap, preferably free, where I can import an already-completed site from Adobe Dreamweaver /////////////////////////////////////////// Question: Unreal Engine 4. Size of build many scenes vs other ways? Posted: 19 Apr 2016 03:34 AM PDT https://answers.yahoo.com/question/index?qid=20160419033437AAk7upo I am considering making an android app and not a game with ue4. I need to show 50 different pictures with a text underneath. A quick and dirty sollution I am thinking about is making 50 independent scenes. But I am wondering how this affect the size og my finished app. Any thoughts? The scenes would only have the picture, the text, and the BP for making it scrollable /////////////////////////////////////////// Question: I baked a map/material in blender, but it turned out to be too bright, how can I fix this? Posted: 19 Apr 2016 03:13 AM PDT https://answers.yahoo.com/question/index?qid=20160419031337AAkWVDa /////////////////////////////////////////// Question: Is it possible to make this computer program in my description below? (this is just my theory, be gentle)? Posted: 19 Apr 2016 01:23 AM PDT https://answers.yahoo.com/question/index?qid=20160419012307AAHvehz I've read that a pc can use hex values to record colors and to display it specifically in the screen If that is the case then, 1.) how about make a program that a user enters two digits (let's assume 1280x720) and click a generate button 2.) let the program think of random hex values for all 921,600 pixels and display it to the user as a 1280x720 image I know you might be thinking 'what's the purpose of generating random colors for a 1280x720 picture and displaying to the user?' It's simple; Even though it may take a billion spin to make a decent picture, the program may ACTUALLY generate a picture you'll never think of... like a screenshot of the next half life game or a scary ghost or the new logo of steam in 2050 or a new logo for coca cola or maybe yourself making a pose that you swear that you've never took a picture of before there are a lot of possibilities for a random 1280x720 frame Think it's possible? I think I can do this myself since I know a bit of java and c++, but I don't know how to make a generated hex value display as an image /////////////////////////////////////////// Question: What to learn from YouTube? Posted: 19 Apr 2016 12:57 AM PDT https://answers.yahoo.com/question/index?qid=20160419005712AAk9QnQ What are the useful things i can learn from Youtube? for example, i learn c programming and html... /////////////////////////////////////////// Question: As far as i know these are bitwize operators? Posted: 18 Apr 2016 11:52 PM PDT https://answers.yahoo.com/question/index?qid=20160418235224AARejFF it is not a problem but it got me puzzled | & are bitwize operators 'common' but they r used in a logical context || | && & in c# ? how to not mislead the compiler https://msdn.microsoft.com/en-us/library/aa691306%28v=vs.71%29.aspx /////////////////////////////////////////// Question: Tumblr music player (Flash music player)? Posted: 18 Apr 2016 10:08 PM PDT https://answers.yahoo.com/question/index?qid=20160418220837AAPYnSH Hello I have a Max Davis theme on Tumblr and I tried adding a music player, after I copy and save the code, I go to my blog and nothing happens. I've tried putting it at the end of the html code as well. Some help would be appreciated. /////////////////////////////////////////// Question: How do I use RGB values in Labview using Lego Mindstorms to differentiate colors? Posted: 18 Apr 2016 09:30 PM PDT https://answers.yahoo.com/question/index?qid=20160418213015AAXN3kA I was thinking of using the values from RGB and putting it into a case structure and outputting a text describing the color but its giving me an error saying that the two terminals are two different types. How could I use RGB to differentiate colors? Please help, I've been searching for solutions all day and I can't seem to find any :( /////////////////////////////////////////// Question: Does anyone know how to edit a video where I can add text to the top and bottom. Like meme style? Posted: 18 Apr 2016 09:05 PM PDT https://answers.yahoo.com/question/index?qid=20160418210546AAL4cML /////////////////////////////////////////// Question: Need help with a Python problem? Posted: 18 Apr 2016 08:40 PM PDT https://answers.yahoo.com/question/index?qid=20160418204055AAi3cxB Write another program that reads the random numbers from the file, display the numbers, and then display the following data: • The total of the numbers • The number of random numbers read from the file. This was my previous assignment, asking me to write to the file instead of read it. import random randomNumber = random.randint(1,500) how_many = int(input("How many numbers should the file hold?:")) with(open("Numbers.txt", 'w')) as f: for x in range(how_many): r = random.randint(1,500) f.write(str(r) + '\n') So here's what I have so far. This print's the numbers but i still need to sum them and print the amount of random numbers. I'm stuck. with (open("Numbers.txt",'r')) as f: total = 0 count = 0 data = f.readlines() print(data) /////////////////////////////////////////// Question: Shifting array elements to the right in C++; how can it be done? (integer array)? Posted: 18 Apr 2016 08:37 PM PDT https://answers.yahoo.com/question/index?qid=20160418203701AA0uLde I was able to make a program that shifts array elements to the left M number of times. In fact it was pretty easy to make them shift to the left But I cannot make it shift to the right. I thought if I reversed my left shift code that it would work, but it doesn't work at all. Is it possible to use my left shift code and turn it into right shift? void leftRotatebyOne(int arr[], int n); void leftRotate(int arr[], int d, int n) { int i; for (i = 0; i struct list_el { int val; struct list_el * next; }; typedef struct list_el item; void main() { item * curr, * head; int node=0; int sumtotal=0; head = NULL; for(node;nodeval = node; curr->next = head; head = curr; sumtotal+=node; } curr = head; while(curr) { printf("%d\n", curr->val); curr = curr->next ; } printf("The sum total of all nodes in this list is %d\n", sumtotal); return 0; } /////////////////////////////////////////// Question: Visual Basic Question? Posted: 18 Apr 2016 04:00 PM PDT https://answers.yahoo.com/question/index?qid=20160418160023AAT2Pzr I am using a Windows Form Application in Visual studio using Visual Basic. I have a form with 24 text boxes. Is there a code that can be used to find possible combinations (using the 24 text boxes) to get a target number value that I specify? And if it can't get the target value, get the closest combination to the target value without going over? I currently have the numbers in an array but I am lost on how to approach this. I have pretty good vb knowledge, but this is stumping me. Any help or suggestions are greatly appreciated. Thanks /////////////////////////////////////////// Question: What is the best coding language for my needs? Posted: 18 Apr 2016 03:30 PM PDT https://answers.yahoo.com/question/index?qid=20160418153010AAMuqbV Hello, I would in the future like to create a complex IOS game. To do that which coding language should I start learning? I was thinking objective-c but im not sure /////////////////////////////////////////// Question: Every time i open a program it asks "do you allow this program to make changes to your computer" what is it? Posted: 18 Apr 2016 02:58 PM PDT https://answers.yahoo.com/question/index?qid=20160418145815AAn4FQI While looking through properties for files and security, etc. ,it gives option to run as administrator but I recall instructions somewhere that logging in as administrator can leave you vulnerable. if you make changes as a user, it's not necessarily permanent, you can reverse damage, /////////////////////////////////////////// Question: Why does adobe experience manager keep overtaking up over lowes webpage but no others? Posted: 18 Apr 2016 02:55 PM PDT https://answers.yahoo.com/question/index?qid=20160418145528AAKpGxl I see the page for a second then a login for adobe experience manager takes over. It's the only page doing this and in multiple browsers. /////////////////////////////////////////// Question: I need a j/script to post pics to chat rooms I visit.? Posted: 18 Apr 2016 02:31 PM PDT https://answers.yahoo.com/question/index?qid=20160418143131AAQlQb8 Back in the day circa 2002 I could post a pic or animated GIF to any Yahoo chat room with the aid of a simple j/script (it was around 2 or 3 lines long). I would like to do the same in a couple of chat rooms I currently frequent... Can anyone suggest such a simple script I could download and use to do something similar today??? /////////////////////////////////////////// Question: Is there a way to save an html5 game onto your computer? Posted: 18 Apr 2016 01:05 PM PDT https://answers.yahoo.com/question/index?qid=20160418130508AAcPAVj I want to save the Hitchhiker's Guide to the Galaxy text game (with pictures) from the BBC website, but I don't know how. Can someone help? /////////////////////////////////////////// Question: Embedded YouTube video full screen issue? Posted: 18 Apr 2016 01:05 PM PDT https://answers.yahoo.com/question/index?qid=20160418130504AA6shCo On my website, I embedded a YouTube video with the iframe tag that Youtube provides. When I click on fullscreen in IE and Firefox it works perfectly; however, in Chrome I press the full screen button on that video, the video does not go full screen. Instead my whole browser goes full screen, but not the video! I think the problem is related to my site, because I don't have this problem when I visit other websites and video their embedded YouTube videos. Although, as written above, IE and Firefox does not cause any problems, so there is some compatibility issues with my HTML5 and Chrome. Any help would be appreciated. Thank you.