cpu-word Questions
14
Solved
I've done some research.
A byte is 8 bits and a word is the smallest unit that can be addressed on memory. The exact length of a word varies. What I don't understand is what's the point of having a...
Goree asked 13/10, 2011 at 6:17
7
even though this question has been posted and answered before. I wanted help with my code. Task is to convert a number into words from 0 to 10 million. I have tried to do that with my code using GU...
4
Solved
grep -w uses punctuations and whitespaces as delimiters.
How can I set grep to only use whitespaces as a delimiter for a word?
3
Solved
Anyone has a definite answer?
Someone says that on 32 bit OS a WORD means 16bit,true?
Goddart asked 14/3, 2011 at 7:34
1
Solved
I'm currently looking to find an answer to the above question. So far I found people saying, that the word size refers to the size of a processor register, which would suggest on a 64-bit machine t...
Cahan asked 30/3, 2019 at 10:58
2
Solved
I was trying to count the number of unique words in a text file. For the sake of simplicity, my current file content is:
This is a sample file
My attempt is:
long wordCount =
Files.lines(P...
Goins asked 9/1, 2019 at 6:43
6
Solved
I am trying to find the count of words that occured in a file. I have a text file (TEST.txt) the content of the file is as follows:
ashwin programmer india
amith programmer india
The result I e...
5
I'm trying to calculate the number of words written in a project. There are a few levels of folders and lots of text files within them.
Can anyone help me find out a quick way to do this?
bash or...
7
Solved
I want to write an algorithm for the following problem scenario
Taking periodic table elements' names, find largest word that can be formed?
The symbols such as Na , Ne etc should be regarded as s...
2
Solved
my_list=["one", "one two", "three"]
and I am generating a word cloud for this list by using
wordcloud = WordCloud(width = 1000, height = 500).generate(" ".join(my_list))
As I am converting a...
Bruiser asked 9/8, 2017 at 10:55
5
Solved
I have tried to get a grasp of what "word" means and I have looked in the wiki and the definition is vague. So my question is what is "word size"? Is it the length of the data bus, address bus?
Impetuous asked 6/11, 2013 at 19:30
2
Solved
I am trying to build a tool that allow people to get word or a phrase (on select), the select part is done but not the word part.
I need to be able to get the current word when someone click on a ...
2
Solved
I am confused with so many terminologies that my instructor talks about such as word,byte addressing and memory location.
I was under the impression that for a 32-bit processor,
it can address up...
Rebato asked 17/1, 2014 at 22:18
4
Solved
I have a large set of real-world text that I need to pull words out of to input into a spell checker. I'd like to extract as many meaningful words as possible without too much noise. I know there's...
Alongshore asked 19/4, 2011 at 14:22
3
Solved
I have now used way too long time, trying to figure out a problem, which I didn't think would be that hard.
Here is the deal:
I am writing a small application using C# and WPF.
I have a RichText...
Earley asked 18/11, 2009 at 15:36
5
Solved
I want to achieve a javascript program that count through a word and return the word and the number of times it appears eg {hello : 2, "@hello":1, world : 1, toString:1}
below is my code but i onl...
Collinsworth asked 18/10, 2016 at 7:34
5
Solved
For example this is my text :
$str = 'buy new microsoft windows';
I explode text and list with array :
Array
(
[0] => buy
[1] => new
[2] => microsoft
[3] => windows
)
I want t...
5
Solved
This is what I have so far:
alphabet = "a" or "b" or "c" or "d" or "e" or "f" or \
"g" or "h" or "i" or "j" or "k" or "l" or \
"m" or "n" or "o" or "p" or "q" or "r" or \
"s" or "t" or "u" or "...
6
Solved
I need to know the number of bytes in a 'word' in Python. The reason I need this is I have the number of words I need to read from a file; if I knew the number of bytes in a word, I can use the fil...
2
Solved
I am learning assembly language and I came upon the FWORD (6 bytes). I'm curious what the F stands for? There's nothing on the wiki page and also nothing about this on MSDN.
https://en.wikipedia.o...
Equimolecular asked 30/10, 2016 at 21:30
1
Solved
My computer has 64 bit processor and when I look for sizeof(int), sizeof(long), and sizeof(long long), it turns out that int and long are 32 bits, and long long is 64 bit. I researched the reason, ...
Mantra asked 29/9, 2016 at 20:55
2
Solved
I am looking for dictionaries that are split up by parts of speech and are preferably more common words.
I am trying to generate random band names for fun.
I found a set of dictionaries HERE whi...
Unapproachable asked 16/9, 2011 at 2:32
3
Solved
So I have this problem I'm supposed to solve and I've spent hours trying to figure out the best way to do this, google hasn't been of much help.
The problem is to create a subroutine that is give...
1
HERE ARE THE PROGRAM DETAILS: So I am creating a word search game, like where there are a bunch of letters arranged in a square, and you have to find and select the words that either go vertically,...
5
I want to Capitalize first letter only and other should be small using CSS
String is:
SOMETHING BETTER
sOMETHING bETTER
Something better
but the result should be
Something Better
Is this p...
Haemostatic asked 3/7, 2013 at 14:12
© 2022 - 2024 — McMap. All rights reserved.