- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I am an IT Audit professional working with clients from multiple sectors, primary being banking sector. I look forward to sharing my knowledge with the community and to gain knowledge from other experienced members in the community.
- Interests
- Reading books, IT professional services and PS4 gaming
- PC Specs
- Intel i7, AMD Radeon HD 6730M
18 Posted Topics
Re: Consider Avast antivirus free version with Comodo Firewall. I have been using these two together for more than two years and no issues noted so far. One more thing to note is that the programs need to be compatible with each other. The abovementioned combo worked fine for my windows. … | |
Re: Did you face a problem or an error in the code given? If you did, post the error noted here for us to provide our perspective on the problem. If you want to get an understanding on measuring time complexity, you can refer to the post i have made earlier … | |
Re: I have used Prey client for more than a year. I havent came across a situation where my laptop was stolen. However, whenever the Prey client communicates to the Prey server through the network, a notification that the device made contact with server will be sent to your email. But, … | |
Re: For case structure, you can try to do switch statements. I will give you a brief idea to complete your pseudocode. I don't see why return statement is needed as the method is declared as void. The method sum() and difference() doesn't return anything to main() as the value is … | |
Re: Have you attempted to create the functions? If you are not clear on how to create the function, try creating a pseudocode. Easier way of completing this problem is by playing this game with another player to observe how this function would perform. Good Luck to you. :) | |
Re: If you are looking to learn more about JUnit, go through these links that I hope will be useful for you. [Click Here](http://tutorials.jenkov.com/java-unit-testing/asserts.html) [Click Here](http://www.tutorialspoint.com/junit/junit_using_assertion.htm) [Click Here](http://junit.sourceforge.net/javadoc/org/junit/Assert.html) [Click Here](http://java.dzone.com/articles/junit-tutorial-beginners) [Click Here](http://www.vogella.com/articles/JUnit/article.html) Hope this helps :) | |
Re: If you have attempted something on your own, post them here. If you want to get some idea, i will provide you some basic idea to start with. If you want to obtain data from your database, you must connect to the database in PHP. Search on these commands to … | |
Re: Post your full code for us to find the error. Value of prix and $row_panier[] is not known. ![]() | |
Re: I will give you some idea to start with. If you want to display the results in a frame using GUI coponents, go through JFrame of Swing component in Java. Your JFrame will show the interface where your code is run and show the results. Go through JList and JScrollPane … | |
Hello. I am having a tough time understanding the concept of double linked list. For now, i understand double linked list has 2 links, one forward and another one previous. data is in the middle. when inserting must check where to insert. if previous is equal to null, then can … | |
Re: Check it here http://dotnetslackers.com/Community/files/folders/data-structures-and-algorithms/entry28722.aspx and here http://ebookee.org/C-Data-Structures_65405.html More information can be found by searching google for data structures in C. | |
![]() | Re: For the typedef, the older name would be int Length; after giving the user defined name like typedef int Length newLength; instead of using int Length, now you are able to use newLength. If the typedef is like the one you state typedef int Length; then the int type variables … |
Re: Just check the spelling. Go through the whole code. Check the classes and initiation of variables. Will work. | |
Re: I will try to explain the concept. First accept four integers input: int num1,num2,num3,num4; printf("Enter 4 integers seperated by space: "); scanf("%d %d %d %d",num1,num2,num3,num4); After this, do the function which accepts the two parameters. For example, you are comparing two integers, num1 and num2: bigger(num1,num2); In the function, have … | |
Re: Complexity usually measured in terms of how the amount of a resource (time or space) required to run a program increases as the size of the program input increases. Most common measure of complexity is the amount of time the program takes to run. If the algorithm of a program … | |
Re: MVC stands for Model View Controller where the model consist of application data, view consist of the GUI and controller consist of input acceptance and mediation. Controller accepts input and passes to the model to process. The model passes the output to the view as an output presentation. | |
Hello. I was searching on how to copy the string from the first point in the file to the index of comma -1. I have a .mrk file that i would be reading. My idea is that the loop will go through the file and find the comma. There will … | |
Hello. I am new to this forum. I want to know exactly how long does any posts gets replies here.How long does a post stay in this forum. Does it get deleted after a period of time??. Thank you. |
The End.