Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
2 Commented Posts
0 Endorsements
~2K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for KKR_WE_RULE

I've made a library for Delphi to work with matrices. Everything in the library works perfectly as intended save the Matrix Inversion Procedure. I've used the Gauss-Jordan method of Matrix Inversion & everything works excellent for square matrices upto 7x7. From 8x8 onwards, I get a 'Invalid Floating Point' Error …

Member Avatar for Mikav6
0
511
Member Avatar for dwolver

You can try 'System Restore' to roll back to the period before those updates, if you think that the updates caused your system to slow down. On the other hand you can try running a boot scn for virus using any live av disc, as Viruses too can cause system …

Member Avatar for Mikav6
0
117
Member Avatar for KKR_WE_RULE

The output I am getting is : [CODE]You will be entering the names of ten students their corrsponding marks in Physics, Chemistry & Maths. Enter the name of the student : student1 Enter the marks in physics of STUDENT1 : 43 Enter the marks in chemistry of STUDENT1 : 54 …

Member Avatar for KKR_WE_RULE
0
146
Member Avatar for Zvjezdan23

The main idea behind counting words (taking into consideration that they are separated by a ' '(space) or ','(comma) or '.'(Stop)) is by detecting these symbols & increment a counter every time these are encountered. [CODE]int counter = 0; String str; for(i = 0; i < str.length(); i++) { char …

Member Avatar for KKR_WE_RULE
0
383
Member Avatar for dcasmac418

//Assumptions : //1)Data to be sorted is stored in an array //2)Data to be sorted is of integer type //3)Sorting is done in Ascending order. Simple Logic : [CODE] int array[10]; //array of size 10 int store; for(int i = 0; i < array.length(); i++) { for(j = i+1; j …

Member Avatar for dcasmac418
0
95
Member Avatar for KKR_WE_RULE

Well guys.. Here goes my first post here :) I've coded few ECC methods that are very frequently used in Cryptography. I've tested the code with the examples posted in certicom website & it works well. But then I implemented ECDSA_Sign() --> Elliptic Curve Digital Signature Algorithm using my own …

0
189
Member Avatar for yossi321

Yeah.A drive can be locked. But for better security you must encrypt the contents of the drive. But this will prevent the file from being read by any one else. But it will not prevent formatting.

Member Avatar for yossi321
0
85

The End.