Question #1:
Whats this song called?
This has been irritating me the past like 6 weeks or so cause i keep hearing like a 10 second clip of it on the radio but its not long enough for the iphone to pick it up.neways its a older school song prabably 70's by a guy singing.
The cohrus goes something like "and i just want it to raaaaaaaaaaaaaain(rain)" he says it extending the word. The song is pretty popular too ive heard it alot. and i believe somewhere in the song it says " and they say a grown mans not suppose to cry",
usually you enter a few keywords like this on google and it pops up but ive yet to see anything even close to finding this song. HELP PLEASE
Thanks Ken that was the song i was looking for.....
I know to you it might sound strange,
I wish it would rain (oh how I wish that it would rain)
Oh yeah, yeah, yeah
Cause so badly
I wanna go outside (such a lovely day)
Everyone knows that a man ain't supposed to cry
Im trying to figure out how to chose yours as best answer. There used to just be a button youd press?
Question #2:
How do you send a keyword through text?
You know how when you enter a contest,or get a ringtone from a number or something
they say " send keyword BLAH followed by your answer to this number"
how do you send something as a keyword?
Question #3:
I need the following Vigenere C++ code?
The TaskYou are to develop a program to implement the Vigenère cipher algorithm to encrypt and decrypt text information.
Background
The following description of the Vigenère cipher is copied from Wikipedia ( Click Here ). It is a method of encrypting alphabetic text by using a series of different Caesar ciphers based on the letters of a keyword. It is a simple form of polyalphabetic substitution.
The Vigenère cipher is based on Caesar cipher method. In a Caesar cipher, each letter of the alphabet is shifted along some number of places; for example, in a Caesar cipher of shift 3, A would become D, B would become E and so on. The Vigenère cipher consists of several Caesar ciphers in sequence with different shift values.
To encipher, a table of alphabets can be used (see Figure 1), termed a tabula recta, Vigenère square, or Vigenère table. It consists of the alphabet written out 26 times in different rows, each alphabet shifted cyclically to the left compared to the previous alphabet, corresponding to the 26 possible Caesar ciphers. At different points in the encryption process, the cipher uses a different alphabet from one of the rows. The alphabet used at each point depends on a repeating keyword.
For example, suppose that the plaintext to be encrypted is:
ATTACKATDAWN
The person sending the message chooses a keyword and repeats it until it matches the length of the plaintext, for example, the keyword "LEMON":
LEMONLEMONLE
Figure 1: encryption table.
The first letter of the plaintext, A, is enciphered using the alphabet in row L, which is the first letter of the key. This is done by looking at the letter in row L and column A of the Vigenère square, namely L. Similarly, for the second letter of the plaintext, the second letter of the key is used; the letter at row E and column T is X. The rest of the plaintext is enciphered in a similar fashion:
Plaintext:ATTACKATDAWN
Key:LEMONLEMONLE
Ciphertext:LXFOPVEFRNHR
Decryption is performed by finding the position of the ciphertext letter in a row of the table, and then taking the label of the column in which it appears as the plaintext. For example, in row L, the ciphertext L appears in column A, which taken as the first plaintext letter. The second letter is decrypted by looking up X in row E of the table; it appears in column T, which is taken as the plaintext letter.
Vigenère can also be viewed algebraically. If the letters A–Z are taken to be the numbers 0–25, and addition is performed modulo 26, then Vigenère encryption can be written,
and decryption,
The Software
Notes on use of global variables, arrays, matrices, and symbolic constants:
When passing an array to a function, pass the dimension as an argument.
Treat the key string as a global array of type char and initialize it a default value that is internally defined in the program.
Algorithm development should proceed as follows:
•Develop a function (of type void) that obtains the encryption key from the user. Note that since the function needs to return many values to the caller, pass by reference is required here to update the caller’s variables directly.
•Develop a function (of type void) that obtains the plain text from the user. All the characters should be converted to upper case before proceeding with the program. Same thing applies for the encryption key.
•Develop a function that corrects the encryption key to make it the same length as the plain text. This is performed by repeating the same characters until reaching the plain text size. For example if the key is “Hello†and the plain text is 12 characters, the corrected key will be “HelloHelloHeâ€.
•Develop a function (of type void) that receives references for the encryption key, the plain text, and the encrypted text variables, and performs the ciphering based on the theory explained before in the background section. (NB. In main, you should have a char [] variable encrypted_Text to which the ciphered value can be assigned.)
•Develop a function (of type void), called decipher, that receives references for the encryption key, the encrypted text, and the deciphered text variables, and performs the deciphering based on the theory explained before in the background section. (NB. In main, you should have a char [] variable decrypted_Text to which the deciphered value can be assigned.)
•Develop a function that displays a report of the encryption key, the plain text, the ciphered text, and the deciphered text.
•In the main function:
oDeclare arrays for the encryption key, the plain text, the encrypted text, and the decrypted text.
oMake the appropriate calls for the various functions to perform encryption/decryption of the input text.
oPrint out a summary report n the screen that displays the encryption key, the plain text, the ciphered text, and the deciphered text.
oRepeat the same process until the user enters a special character to exit the
Question #4:
Need: good online RSS to email service?
I need a good news to email service that:doesn't cost a lot (free preferably)
sends the newsfeed data to my email inbox
is online, not hosted on my computer
allows me to set specific keyword phrases to search for not just a news topic
allows me to set specific RSS feeds to pull from
searches all the major RSS news feeds for the keyword phrases I enter
The most important services I need are:
Is online, not software on my computer
searches all the major RSS news feeds for the keyword phrases I enter
sends the newsfeed data to my email inbox
Please list multiple services/urls if you know of them, I will weigh the pros & cons vs. price for each.
Thank You!
Question #5:
I need help for my java code - string?
I need to write a program that first asks the user to enter a word (any word), read as a String. The program should keep asking for a word until the user enters -1 (also read as a String).For example:
Please enter a keyword (enter -1 to exit): hello
Please enter a keyword (enter -1 to exit): HELLO
Please enter a keyword (enter -1 to exit): goodbye
Please enter a keyword (enter -1 to exit): -1
I have write my code my is not working...
Scanner input = new Scanner(System.in);
PrintStream output = System.out;
int myInterger = -1;
String exit = Integer.toString(myInterger);
System.out.print("Please enter a keyword (enter -1 to exit): ");
for (String word = input.next(); word != exit; word = input.next()){
System.out.print("Please enter a keyword (enter -1 to exit): ");
}
Question #6:
running a search query in Access 2003?
ok, so I've got my tables set up, and my query. I've got a mainform unbound with a text box for the keyword, and a subform based on the query. I've got a button, that runs a search on the keyword and displays the results in the subform. Now, I want to add a combobox as another search criteria in the mainform. I can't get the query to find anything based on what is entered in the combobox, it just displays all records. Please give idiots-guide answers, thank youQuestion #7:
how to check how many domains 1 guy has? - points?
hi,how do i check how many domains one person has? i want to check because their is a competitor registering different domains all of a sudden since we entered the market and he's trying to block us out. he's creating poor websites with keyword domains, and they are coming up ahead of us in the search because of the keywords in the domain name.
how do i check how many domains this guy has? i want to keep an eye on what further domains he is registering...
p.s. isn't this sad that this guy is doing this? he's wasting a tonne of money just to get one over on us who we wont even know. he only wants the industry to himself.
Question #8:
Help with a book title?
Hi, I needed help with a book title I can't remember that I remember reading and liking as a child. It's a long shot and I've tried googling keywords but I figure Yahoo Answers might be a better shot.It's a children's book and it is set in Canada. The main character is a boy who has come to a specific part of Canada with his parents, I remember his dad liked to gamble and could bet on the speed of raindrops down a window or something.
He and his parents go to this hotel where they stay for a while, in the night the boy sleepwalks and gets locked out of his room, which he can not remember. He has to make a choice between rooms and knocks on the door of one where a couple "kidnap" him and try to teach him manners and etiquete ( how to eat spaghetti properly) so he can enter this competition for them and win them money.
I have no idea what the title is so if anyone could help that would be awesome.
:D
Question #9:
Help regarding 2 XP OSes in my PC?
Please read this to know my situation regarding my XP system1. I was having Xp, without any problem for a long time until today morning when some virus/malware/malicious script was executed in my system and PC immediately restarted. The XP booting screen appeared for just a second and it again restarted. This was like an infinite loop.
2. I then inserted my XP CD and booted from cd, tried to repair the XP. When we boot from cd, it is like this:
- press ENTER to install new copy of xp
- press R to repair existing copy
- ESC to exit(not sure of the key though)
But this repair actually opens C:\Windows folder in command prompt with a set of commands specifically assigned for this condition to work. The usual cd.. or cd<space> folder doesn't work. We are given a set of keywords using which we have to repair our windows. I am not a computer wizard unfortunately.
3. So I tried the ENTER option of installing new copy of windows. In this case, it said that there is an existing copy, if i would lik to repair that. I gave REPAIR command and then it started to copy files, etc but then it again went into an infitnite restart loop even before finishing the repairing.
4. SO i had no choice but ti install new copy. But i was desperate not to lose any data. Suddenly when i was proceeding with new copy installation, a question stated that there is already a folder "C:\Windows". if i would like to overwrite or write in new folder. I gave WINDOWS1 as the new folder name an windows was installed and most importantly all the previous OS docs were saved!!
5. Now I dunno why the 1st OS is not still booting. I want to revert back to that OS, deleting this as all my settings, etc will be there in the 1st OS but not here. But I am clueless on why 1st OS is facin problems.
6. MY PLAN: backup all data from C: and then install fresh copy of windows, deleting both these (how? i dunno but that is easier to find out i hope) and paste back the data in the new OS. This is very long process.
PPL, please help me cos i have important data regarding my projects in it, my career depends on it. I can use this OS itself which is a tough choice as it would take yrs to make it resemble my old OS, the least. Please gimme soem sugestion ppl...
Question #10:
Need to know full answer of these question urgent plz?
Write a program that will inputs the five digit number, separate the number into its individual digits and print the digits separated from one another by three spaces each (Hint: Use the integer division and modulus operatorsWrite a program that will show the Size of all the data types using "sizeof()" keyword (take Help from The Help Of Borland C by pressing F1). (5 points)Sample Output
The size of unsigned char is : 1 Byte/8 Bits
The size of char is : 1 Byte/8 Bits
The size of unsigned int is : 4 Byte/32 Bits
The size of short int is : 2 Byte/16 Bits
....... And So on
Write a program that calculates the length of the hypotenuse of the right angle triangle? Get the Value of two sides of the right triangle and show the result by making a particular formula? (5 points)
Sample Output
Please Enter the vlaue of 1st Side: 2.6
Please Enter the value of 2nd Side: 6.8
Your First Enter value is 2.600000
Your Second Enter value is 6.800000
Answer is 7.280110
Write a program that will get the amount added in the account of a person and will show the amount of 10 years including interest per month. The rate of interest per month will be 0.005. Your program should only display the result of each year not of the months (10 points)
Sample Output
Enter the Total Amount Added in your Account: 500
The Total Amount After first year: 530
The Total Amount After Second year: 561
The Total Amount After Third year: 594
....... And So on
bro jim they hvnt taught us these type of program n they hv given us ihv solved 4 of them i can email u if uwant n ineed help in these
language is c++ n cpmpiler is of borland version 3.0
Question #11:
Search registry using vb.net?
Hi,I'm trying to develop a tool in vb.net which can search and display left over keys of an application. Ive not been succesfull so far. Kindly help me with your inputs.
This is what i want to achieve:
1)The user enters the search keyword in a text box and hits the search button.
2)The underlying code shoud then search all the keys under HKLM, HKCU,HKCR,HKEY_USERS, HKEY_CURRENT_CONFIG and find if a key, value or data exists which matches the search keyword.If it does, then display the key, value and data in a list box.
3)The user shoud then be able to select all the resuts OR some of them and delete them according to his will.
Please share some code with me or point me to appropriate links where i can get the code. I have googled enough and dint get a proper tutorial til now. There are bits and pieces everywhere. So i would highly appreciate if you can share some vb.net code which i can work on and develop.
Thank you,
Sincerely
DJK
Question #12:
Looking for an SEO program to monitor my websites?
looking for a piece of software (free or purchase) to analyze and report on about 100 company web sites. (we have a number of individual programs that do these items, but its tedious doing all the work of entering domain names and getting reports)software would:
1. most important, would allow us to enter domain names to be analyzed in a list, and then get reports on some frequency, such as bi weekly or monthly. would be nice if it emailed reports all in one package, or even individually, and or held them for us to vide and/or print
2. keyword rankings in specified search engines
3. Missing titles, desc. metatags, keywords, alt tags
4. text relevancy between text on page and desc metatags and keywords and title
5. report on broken links
6. #links, outgoing, internal, and backlinks if possible (or as shown by google)
7. page rank
8. if possible, a "score" for the site. this would likely just be indicative of the optimization and visibility for the site, but would help isolate issues and/or sites needing work.
9. indexed page count on google
Any advice on a program would be greatly appreciated!
Question #13:
how do i get past a simple keyword url block?
My parents have blocked facebook on my home computer, this sucks. When ever I search for facebook and hit enter this message comes up on the screen:"Your attempted access to URL Click Here was blocked (Keyword Filter). Contact your network administrator for help."
Can anyone tell me how to get passed this or if any of you know of a secure proxy site. Thanks all.
Question #14:
I need a video URL or keyword ?
I need a video URL ? about " A child growing in a stomach " .I cant find it. Because i don't know the keyword to enter in youtube. please help me if anyone have a link please give me immediately .Question #15:
Sugar Magazine Keywords?
Hey, I really want to enter the competitions on the sugarscape website, and I already bought the magazine, but my rooms getting redecorated and my mum threw it out without realising i wanted to keep it. I really don't want to have to buy another mag, so could someone please give me all of the keywords for this month?1st person to do so will get best answer.
thanks =)
Question #16:
how to add keyword for my website in Google search free ?
I want to submit my website in Google search with some keyword.E.g. If i enter "SHARES" then my website should display. Please tell me how i can do this ?
Question #17:
I would like to know about urchin.js?
Hi All, I would like to know in detail about urchin.js. While doing some R&D i found one of the site named www.bixee.com. where i found search tool. which take some input as keyword and location. Once i enter any keyword and location it results me some links which is related to location and keyword. For Ex. if I type ".Net" in keyword and "Delhi" in Location its result me list of jobs related to given search criteria. I ask one of my friend about how bixee is doing this? he told me that they are using urchin.js file which is from google analytical. I also would like to implement this fucntionality in my web site (search functionality) using this js file.is there any body help me how to do this and what are minimum requirement for that. Is this is liscenced based or we can use free of cost? Please help meQuestion #18:
Does anyone know any Famound 1950s-60s Female Mobsters who were in Las Vegas?
I need to know of famous female mobsters in las vegas...its pretty simple just need help finding it I dont know if I am entering the wrong questions and keywords on google but I got nothin!Question #19:
Should ACORN be a reference site from SERVE.GOV?
Visit SERVE.GOV and enter ACORN in the keyword search block. Should taxpayers be paying for links to a criminal enterprise?Question #20:
What is your opinion of human edited search engine over google?
Would you trust them more if every results display is based on the keyword you enter is done by human being, instead of algorithm. What kind of disadvantages /problems you may expect from human edited search engine?** Powered by Yahoo Answers
