Search results

  1. J

    Parental Controls

    Does anybody know how to put parental control on a tablet, websites and youtube?
  2. J

    Wireless Internet Connection Issue

    I have a sony VAIO laptop, windows 7 How do I clean out and reload the driver software?
  3. J

    Wireless Internet Connection Issue

    My wireless connection to my internet just stopped working. I have no idea why. I noticed my VAIO Smart network wireless switch is not cut on. When I open up the VAIO smart network to cut on the WI FI(that is current showed as dis connected, every time that I click the on switch or any...
  4. J

    Some basic Java Questions

    Thanks, does Java have any predefined methods that can be used to parse delimted text files?
  5. J

    Some basic Java Questions

    1st is an OOP inheritance question. If I have class A { //some public methods } class B extends A { //some public methods } class C extends B{ } Can Class C access public methods of Class A, even though it extends from B not A?? 2nd Question if I am using JAVA to open a...
  6. J

    HTML and XML editor

    Looking for a good/free HTML and XML editor?
  7. J

    Wireless Router/modem question

    I have a couple of questions. I am playing some PS 4 games online and my PS 4 is connected to the internet wireless. 1. Will it be noticeable faster if I can connect it to the router with a Ethernet cable(hard line)? 2. I may not be able to move the router/modem, so is there another way I...
  8. J

    Coding questions about creating class instances?

    Is it possible to instantiate a class inside of a for loop and continue to make a new instance of the class as I iterate threw the for loop? Also can you have multiply instances with the same name but if I pass in different values in the Constructor, will all of the instances exist with the...
  9. J

    Understanding these terms in C++, Friend, Operator and Ostream.

    How does these pre defined terms/functions work in C++. Friend, Operator and Ostream. What can you do or use these for?
  10. J

    DreamSpark Question

    ok so does VS Community Edition come with a trail period or can I use it for as long as I want?
  11. J

    Hash Functions/Tables

    So when creating a linked list, I know there is a node class, and a linked list class. Where creating a hash table is there a node class, linked list class and a Hash Table class?
  12. J

    Compile Error/Class Definition

    I am receiving a compile error "'IntNode::ptrSlot' uses undefined class 'LinkedList1'" for the code that is in bold below LinkedList1 ptrSlot; . When I remove that it works fine. I tried declaring the classes above but this does not fix the issue? I am not sure what is wrong? //My...
  13. J

    Hash Functions/Tables

    So I am trying to figure out how to create an dynamic array of linked list for my hash table. I am using a basic linked list below that I got out of one of my C++ books. Is this the correct way to do it? How do I initialize each pointer to NULL? What I am confused about is most example I...
  14. J

    Hash Functions/Tables

    So I am trying to understand Hash Functions and Tables, I know there are different types like direct and Open addressing. What is the point of hash functions and tables, how do they work in the real world or what are they used for? Also a Hash function is supposed to be like a Dictionary? I...
  15. J

    DreamSpark Question

    So I set up a DreamSpark account as a student last semester, and I downloaded Visual Studio 2013 professional. I guess it was on a 90 day trail, so I just expired, but I thought as a student I got the full download for free with no expiration time. I still would like to use it, as I am still...
  16. J

    C++ and Linked List Question

    I am trying to understand the difference or why I can create a Linked List using a class constructor vs creating it with a struct(when inserting a node from the head of the list)? Ex: //head = NULL; void addNode(theData) { head = new ClassName(theData, head); } //This data would get...
  17. J

    Compatiability Question

    Thanks, I am still learning about this stuff but after some reading. It looks like MS Visual Studio 2013 uses .Net Framework 4.5 and XP doesn't support that.
  18. J

    Compatiability Question

    I am using WPF/XAML in Microsoft Visual Studio 2013 to build a UI that will run on Windows XP. Will WPF/XAML be compatible with XP?
  19. J

    Java Error

    ok thanks. I actually switched to Net beans and got it running. Originally it was not working when I was running eclipse. I came across another error, where I needed to have an instance of the database running but now everything is running smoothly. Thanks again.
  20. J

    Maven Error??

    Thanks I figured it out. I did not have an instance of the database running.
  21. J

    Maven Error??

    I am receiving this error when I try to run my code. Can anybody help me with fixing this? Also can somebody tell me what Maven is? cd C:\Users\JCmobile\Documents\NetBeansProjects\CSE360; "JAVA_HOME=C:\\Program Files\\Java\\jdk1.7.0_71" cmd /c "\"\"C:\\Program Files\\NetBeans...
  22. J

    Java Error

    So I am working on a group project to create a game for my Software engineering class. My group is using GIT and GITHUB to store/update the code. So I created a clone from Git. I created a project in eclipse for the game. I deleted the src folder and I copied the .git folder, src folder...
  23. J

    User Interface or GUI Software Tool

    So I am working on a research project where I am trying to create a User Interface that will Run on Windows. I don't have a lot of experience programming. I am working on getting my degree in computer science. Every class I have had programming I have used like Eclipse or Visual Studio to...
  24. J

    A couple basic networking question

    1st. When I go to a coffee shop or like Barnes and Noble to study and I need to use the internet, sometimes when I connect to the free ATT network, when I pull up my web browser it automatically goes to the accept terms and conditions page. I have to agree to these terms and conditions to get...
  25. J

    Python and C++ questions

    NetworkX is the library I will use according to my professor. Has anybody ever used it before? Any good tutorials out there?
  26. J

    Python and C++ questions

    Ok so what do I use to actually write python in? Like I use eclipse for Java, Visual Studio for C++.
  27. J

    Python and C++ questions

    I am in a software engineering class working on a group project with a few other students. I have been tasks with doing some things that are fairly new to me. I apologize if my questions are unclear. I am still trying to understand some of this stuff myself. We are writing the code for...
  28. J

    Microsoft PowerPoint

    Trying to open up a .ppt(power point) file. Is there any software I can download for free to open it, or another way I can open it up?
  29. J

    Few newbie Quesions on C#

    Is there free software I can use to write/compile code in C#? If so which ones and where can I get it? Any good tutorials out there on C#? What are some of the common things C# is used for? Ex. I heard C is good for embedded programming, C++ is good for video game development. What...
  30. J

    Basic Software Interface Question

    Thanks guys, I really appreciate your responses/help. For the most part I understood everything your wrote. If you guys know of any good websites/books that I could read that would help me on these topics please let me know. I am going to Google some of these topics and will post more...
  31. J

    Basic Software Interface Question

    I have another question, how does header files work in C or C++? Do they exist in Java?
  32. J

    Basic Software Interface Question

    Thank you, this makes a little more sense to me now. I am just curious what, type of class would I take in my B.S for computer science where I will deal with .dll files/shared libraries or coding them?
  33. J

    Basic Software Interface Question

    I have taken a few computer science classes(intro class to Java and C++, a data structure class teaching OOP principles, and fundamental programming languages class that focuses on LISP scheme, Prolog and C++) so I know I have a long way to go. I have also taken a logic design class where I...
  34. J

    Understanding Finite-State Machines in Prolog??

    I think I have figured out some of the code/syntax. I still don't understand how this part of the code works? stored_answer(moves,K), OneMoreMove is K + 1, retract(stored_answer(moves,_)), asserta(stored_answer(moves,OneMoreMove)), % case knowledge base -...
  35. J

    Understanding Finite-State Machines in Prolog??

    yes I do understand it some what. I took a logic design class and I had to learn mealy and more state machines.
  36. J

    Understanding Finite-State Machines in Prolog??

    I am taking a programming class using prolog and it is really confusing. I would like to know if anybody can explain the syntax and logic behind the template code below. Also if possible to provide me with a good prolog and LISP book, and/or some good tutorial websites for either of them...
  37. J

    Scheme Question/Help

    thank you, this all makes sense now. I do have another question. trying to understand how to use cons. > (cons (cons 1 2) (cons 3 4) ) ((1 . 2) 3 . 4) Why does this not create ( (1.2) . (3.4) ) How can I create that using cons? Am I using cons wrong here?
  38. J

    Scheme Question/Help

    ;to compute the number of elements in a list. (define (myListLength Lst) (if (null? Lst) 0 (+ 1 (myListLength (cdr Lst) )) ) ) ;to compute the sum of elements in a list of numbers (define (myListSum Lst) (if (null? Lst) 0 (+ (car Lst)...
  39. J

    ArrayList to take in a datafile not working??

    I am still a little confused. I apologize if these are dumb questions. I am trying to understand the differences of pass reference by value and pass by reference ?? I understand pass by value and pass by reference from C++ but from my understanding pass reference by value is like passing a...
  40. J

    C++ ERROR

    I am having an issue in my code I can't seem to figure out. I stopped when I realized there was an error. It is in the boolean function below. The bracket is giving me an error and I am not sure what I have double checked and all of my brackets match up so not sure what the problem is...
Back
Top