Write a program to find wheather conjunctive words in 2 sentence are similar or not. If similar then print it without using string class methods [on hold]2019 Community Moderator ElectionHow do I write a correct micro-benchmark in Java?Can't start Eclipse - Java was started but returned exit code=13JAVA: I have to write a program to read “sentences” from a file and and then count the number of words and vowels per sentenceask the user for input (a sentence) and print out the longest word of that sentenceFind the whole word from a Sentence with matching StringPrint each word from this sentenceHow to go to from word similarity to overall sentence similarityfind the frequency of occurences of any given word in a sentence using javaJAVA - Finding a similar word in String ArrayListHow to capitalize the first and last letter of a word in a string sentence? “ThiS IS AN ExamplE.”

Why does cron require MTA for logging?

What is Tony Stark injecting into himself in Iron Man 3?

Which situations would cause a company to ground or recall a aircraft series?

Making a kiddush for a girl that has hard time finding shidduch

Possible to detect presence of nuclear bomb?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Source permutation

What do *foreign films* mean for an American?

Is it a Cyclops number? "Nobody" knows!

Is it possible to find 2014 distinct positive integers whose sum is divisible by each of them?

Would an aboleth's Phantasmal Force lair action be affected by Counterspell, Dispel Magic, and/or Slow?

Trig Subsitution When There's No Square Root

Should I take out a loan for a friend to invest on my behalf?

NASA's RS-25 Engines

How can I manipulate the output of Information?

I can't die. Who am I?

Damage bonus for different weapons

What materials can be used to make a humanoid skin warm?

Are all players supposed to be able to see each others' character sheets?

Finitely many repeated replacements

Is this Paypal Github SDK reference really a dangerous site?

Professor forcing me to attend a conference, I can't afford even with 50% funding

Giving a career talk in my old university, how prominently should I tell students my salary?

Is a piano played in the same way as a harmonium?



Write a program to find wheather conjunctive words in 2 sentence are similar or not. If similar then print it without using string class methods [on hold]



2019 Community Moderator ElectionHow do I write a correct micro-benchmark in Java?Can't start Eclipse - Java was started but returned exit code=13JAVA: I have to write a program to read “sentences” from a file and and then count the number of words and vowels per sentenceask the user for input (a sentence) and print out the longest word of that sentenceFind the whole word from a Sentence with matching StringPrint each word from this sentenceHow to go to from word similarity to overall sentence similarityfind the frequency of occurences of any given word in a sentence using javaJAVA - Finding a similar word in String ArrayListHow to capitalize the first and last letter of a word in a string sentence? “ThiS IS AN ExamplE.”










-5















For example:
Sentence 1 - Ram is going to Bangalore for job.
Sentence 2 - Shyam is in Bangalore and looking for job.

So here 2 sentences "for job" are the conjugate similar word so it print "for job".



How do I do this please help.










share|improve this question









New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as too broad by Scary Wombat, Kartik, Erwin Bolwidt, Enzokie, Ridcully Mar 7 at 5:07


Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.


















  • You go to Bangalore and find Shyam as he is looking for a job - we are not though

    – Scary Wombat
    Mar 7 at 5:02






  • 3





    How will you get a job in Bangalore if you ask us to do your homework?

    – Kartik
    Mar 7 at 5:04











  • For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

    – Ridcully
    Mar 7 at 5:12
















-5















For example:
Sentence 1 - Ram is going to Bangalore for job.
Sentence 2 - Shyam is in Bangalore and looking for job.

So here 2 sentences "for job" are the conjugate similar word so it print "for job".



How do I do this please help.










share|improve this question









New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as too broad by Scary Wombat, Kartik, Erwin Bolwidt, Enzokie, Ridcully Mar 7 at 5:07


Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.


















  • You go to Bangalore and find Shyam as he is looking for a job - we are not though

    – Scary Wombat
    Mar 7 at 5:02






  • 3





    How will you get a job in Bangalore if you ask us to do your homework?

    – Kartik
    Mar 7 at 5:04











  • For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

    – Ridcully
    Mar 7 at 5:12














-5












-5








-5








For example:
Sentence 1 - Ram is going to Bangalore for job.
Sentence 2 - Shyam is in Bangalore and looking for job.

So here 2 sentences "for job" are the conjugate similar word so it print "for job".



How do I do this please help.










share|improve this question









New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












For example:
Sentence 1 - Ram is going to Bangalore for job.
Sentence 2 - Shyam is in Bangalore and looking for job.

So here 2 sentences "for job" are the conjugate similar word so it print "for job".



How do I do this please help.







java






share|improve this question









New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Mar 7 at 5:03









Kartik

4,12231437




4,12231437






New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Mar 7 at 5:00









Dhiroj Ku. SahooDhiroj Ku. Sahoo

1




1




New contributor




Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Dhiroj Ku. Sahoo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




put on hold as too broad by Scary Wombat, Kartik, Erwin Bolwidt, Enzokie, Ridcully Mar 7 at 5:07


Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.









put on hold as too broad by Scary Wombat, Kartik, Erwin Bolwidt, Enzokie, Ridcully Mar 7 at 5:07


Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • You go to Bangalore and find Shyam as he is looking for a job - we are not though

    – Scary Wombat
    Mar 7 at 5:02






  • 3





    How will you get a job in Bangalore if you ask us to do your homework?

    – Kartik
    Mar 7 at 5:04











  • For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

    – Ridcully
    Mar 7 at 5:12


















  • You go to Bangalore and find Shyam as he is looking for a job - we are not though

    – Scary Wombat
    Mar 7 at 5:02






  • 3





    How will you get a job in Bangalore if you ask us to do your homework?

    – Kartik
    Mar 7 at 5:04











  • For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

    – Ridcully
    Mar 7 at 5:12

















You go to Bangalore and find Shyam as he is looking for a job - we are not though

– Scary Wombat
Mar 7 at 5:02





You go to Bangalore and find Shyam as he is looking for a job - we are not though

– Scary Wombat
Mar 7 at 5:02




3




3





How will you get a job in Bangalore if you ask us to do your homework?

– Kartik
Mar 7 at 5:04





How will you get a job in Bangalore if you ask us to do your homework?

– Kartik
Mar 7 at 5:04













For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

– Ridcully
Mar 7 at 5:12






For both sentences build a list of all its 2 word pairs like 'Ram is', 'is going', 'going to', ... , 'for job'. Then iterate through the list you built for the first sentence, and for each substring check if the list of the second sentence contains the same substring. If so, print the substring.

– Ridcully
Mar 7 at 5:12













0






active

oldest

votes

















0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page