Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
factor
- Page 1
Re: How to get organic traffic in a website?
Digital Media
Digital Marketing
Search Engine Strategies
4 Days Ago
by HAE Digital
Backlinks are extremely important
factor
to rank a website, but with that on page seo must be very good. Without on page, there is not such benefit of off page seo. SEO services works best when both performed together.
Re: Securing Customer Data: An Essential Cybersecurity Handbook
Hardware and Software
Information Security
2 Weeks Ago
by WilliamOG
Basically: patch your stuff, lock your doors, and stop clicking shady emails. Got it.
Need a small footprint desktop with decent power
Hardware and Software
1 Month Ago
by wolfyshoo
… gaming. I've been looking at building a Small Form
Factor
(SFF) PC, but the complexity and cost can add up…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
2 Months Ago
by graceweb
…—those elements create a connection that can be the deciding
factor
for prospects. Thanks for highlighting those key takeaways! It’s…
Re: Need a small footprint desktop with decent power
Hardware and Software
1 Month Ago
by Dani
Not too long ago, I ditched a suuuuuper expensive ~10 year old Dell Precision workstation with like 64 cores or something crazy, multiple video cards, dedicated RAID controller, etc. for a much less expensive M1 Max Macbook Pro. The macbook outperformed the Dell for everything I did by far.
Re: Need a small footprint desktop with decent power
Hardware and Software
1 Month Ago
by trcooke
I'm a developer too and 14 years ago I bought an entry level MacBook Air and honestly it was probably the best laptop I've ever bought and I used it for development for years and years. It used to creak a bit if I ran more than one instance of IntelliJ, but other than that it took everything I threw at it. I have since replaced my own laptop, but …
Re: Securing Customer Data: An Essential Cybersecurity Handbook
Hardware and Software
Information Security
1 Month Ago
by graceweb
Hey Bam_391, Thanks for putting this together, really thorough breakdown. I think your point about regular employee training is especially important. Even with the best technical safeguards, a single phishing click can cause major issues. Curious if you have any thoughts on balancing strict access controls with usability, especially in smaller …
Prime and Factor problem...
Programming
Software Development
15 Years Ago
by ajjg123
…two functions in your program. The first function,
factor
, takes an int, n, and returns two …is lazy, the prime function should call the
factor
function instead of doing any work itself. Finally,…prime function appropriately, which in turn calls the
factor
function. _____________________________________________ I think I'll be able…
Twitter Two-Factor Warnings
Digital Media
Digital Marketing
12 Years Ago
by happygeek
… password compromise cases, Twitter is adopting a two-
factor
authentication for account access is to be welcomed. 2FA…Senior Security Researcher at Kaspersky Lab, agrees that two-
factor
authentication will make it harder for accounts to be… Therefore, in effect, there is no longer two-
factor
authentication." We should also bear in mind that…
Re: Prime and Factor problem...
Programming
Software Development
15 Years Ago
by WaltP
… math (I think): How do you know 2 is a
factor
of 12? What is it that makes it a…
factor
? How did you arrive at that answer? Please explain [I]…
Re: Prime and Factor problem...
Programming
Software Development
15 Years Ago
by ajjg123
… math (I think): How do you know 2 is a
factor
of 12? What is it that makes it a…
factor
? How did you arrive at that answer? Please explain [I]…
Re: c++ factor problem
Programming
Software Development
14 Years Ago
by mike_2000_17
… hi = in; //declare a variable for the higher
factor
in the
factor
-pairs. for( int lo = 1; lo <= hi; ++lo … counter at 1 and loop it until the higher
factor
reaches the lower
factor
if( in % lo == 0 ) { //check if…the input number hi = in / lo; //compute the higher
factor
of the pair cout << lo << &…
Re: Find the Largest Prime Factor of a Composite Number?
Programming
Software Development
13 Years Ago
by Momerath
You need to consider what it means to
factor
a number (and in this case, prime
factor
a number). Once you understand that… way to test if a number is a
factor
[*]A way to remove the
factor
from the number you are trying to…
factor
. [/LIST] P.S. If your program is taking more than …
Re: Twitter Two-Factor Warnings
Digital Media
Digital Marketing
12 Years Ago
by LastMitch
… the account. Therefore, in effect, there is no longer two-
factor
authentication." I don't have twitter but I think…
Input an integer number and display its largest factor
Programming
Software Development
15 Years Ago
by kulrik
… checks whether the smaller of the two integers is a
factor
of the larger of the two integers. The method will… return a
factor
or a zero. Write a main method which reads in… the largest proper divisor of n (that is, the largest
factor
of n that is less than n itself). Sample output…
Re: Find the Largest Prime Factor of a Composite Number?
Programming
Software Development
13 Years Ago
by skatamatic
[QUOTE=Momerath;1597871]And wrong :) What's the largest prime
factor
of 24 using this method?[/QUOTE] Lol crap. Apparently I forgot what a prime
factor
is. This just looks for a
factor
with a prime number in it! (Not both numbers)
Re: Common Factor between 2 Numbers?
Programming
Software Development
13 Years Ago
by CSloan7597
Hang on, common
factor
, as in, 2 is a common
factor
of 4 and 6? It's probably because you always start your for loop at the value of the smaller of your pair, so the only common
factor
it will pick up is one in the range between the two. You probably want to start the forloop at 2, so it can check all of the lower numbers.
Re: c++ factor problem
Programming
Software Development
14 Years Ago
by sfuo
… it to not show "in" as being a
factor
for( int i = 1; i <= in; i++ ) //start the…;< " "; //if it does then it is a
factor
cout << endl; }[/CODE] The reason why I'm… it to not show "in" as being a
factor
), stop at i <= 1 and increment it by i…
Find the Largest Prime Factor of a Composite Number?
Programming
Software Development
13 Years Ago
by Falcon25
… 5, 7, 13 and 29. What is the largest prime
factor
of the number 600851475143?"[/B][/COLOR] The question is… then further break down the number into its highest prime
factor
. I'm sure theres an easier way to do this…
Re: Find the Largest Prime Factor of a Composite Number?
Programming
Software Development
13 Years Ago
by skatamatic
… ? iFactors[iFactors.count-1] /*highest index is the highest prime
factor
*/ : -1;//No prime factors! } [/code] I have a feeling that… and save about half the CPU time. Still, this can
factor
600851475143 in less than a quarter of a second.
Common Factor between 2 Numbers?
Programming
Software Development
13 Years Ago
by BenzZz
… find out whether two numbers have at least one common
factor
? I currently have a gcd method that finds the greatest… so i need to check there is at least one
factor
between the numbers before i call the gcd method on…
Re: Common Factor between 2 Numbers?
Programming
Software Development
13 Years Ago
by nezachem
> i need to check there is at least one
factor
between the numbers before i call the gcd method on them. No. You need to fix the gcd code. Hint: any two numbers have a common
factor
1.
Re: Common Factor between 2 Numbers?
Programming
Software Development
13 Years Ago
by CSloan7597
From what i can see, in cases where there is only one other common
factor
than 1, your method will return false, because 1 isn't accounted for in your count. Count should either start at 1 (because we know all pairs have 1) or you should change your condition so that it knows we're ignoring 1 as a common
factor
. :)
Re: Common Factor between 2 Numbers?
Programming
Software Development
13 Years Ago
by stevanity
… find out whether two numbers have at least one common
factor
? I currently have a gcd method that finds the greatest… so i need to check there is at least one
factor
between the numbers before i call the gcd method on…
Get the Middle Factors from a Factor List
Programming
Software Development
10 Years Ago
by BustACode
… need just the two middle factors from a very long
factor
list/result, so I created a function that takes a…
factor
list and returns just the middle two, or one, factors. …
Re: Find the Largest Prime Factor of a Composite Number?
Programming
Software Development
13 Years Ago
by Momerath
[QUOTE=skatamatic;1597853]Not the most efficient algorithm, but pretty simple and self explanatory[/QUOTE] And wrong :) What's the largest prime
factor
of 24 using this method?
T1840 Form Factor
Hardware and Software
Hardware
19 Years Ago
by jbsmith_05
Hello, I recently was given an emachines T1840, but i suspect the motherboard is dead - can anyone tell me the form
factor
of this board? I know its a socket 478 - celeron 1.8 Ghz. any help is appreciated...thanks!
Re: T1840 Form Factor
Hardware and Software
Hardware
18 Years Ago
by raybay
The T-1840 is an eMachine with an astonishingly high motherboard failure rate. You have the form
factor
right in your post. It is an Intel/Trigem Board. Cost to replace with the Windows XPH tattoo is $159.95... cost to replace with a good board to use all existing hard ware and your own copy of Windows, about $44.
K Factor?????
Programming
Software Development
15 Years Ago
by confusedndazed
Hello all, I'm very confused on this K
factor
stuff.....I understand that...1*2*…*k indicates the product …
Constructing a B+ Tree with branching factor M = 3.
Programming
Computer Science
15 Years Ago
by C Newbie
… appreciated! I need to construct a B+ tree with branching
factor
M = 3. Each leaf can contain up to L data…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC