Search:

Type: Posts; User: ronakmehta; Keyword(s):

Search: Search took 0.10 seconds.

  1. Seeking Assistance with Resolving Class Initialization Errors in Java on Ubuntu

    Hey everyone,


    I hope you're all doing well. I'm currently facing some perplexing issues with a Java program I'm developing on my Ubuntu machine, and I'm hoping to tap into the collective wisdom...
  2. Re: DBMS and RDBMS shortcomings and errors

    Thank you so much for help you both
  3. DBMS and RDBMS shortcomings and errors

    I hope you're well. I'm now immersed in the intriguing world of Database Management Systems (DBMS) and Relational Database Management Systems (RDBMS), but I've found a few roadblocks along the way....
  4. Replies
    0
    Views
    1

    Java type casting

    I'm attempting to clarify this so that I completely get type casting. Please correct me if I'm wrong, as I've been self-learning Java for approximately 2 months now at a very slow pace.


    Assume...
  5. Replies
    1
    Views
    2

    Handle events in Java

    First Here's the code:

    package javaapplication1;

    import javax.swing.*;
    import java.awt.event.*;

    class Elem implements ActionListener{

    void perform(){
  6. Replies
    0
    Views
    1

    Constructor Overloading In Java

    So I had began learning Java and am currently utilising it as my language of choice in my university's Concurrent Programming class.

    First of all here is the code:


    import...
  7. Replies
    0
    Views
    1

    IOException in Java

    I'm working on a simple Chat Bot software that replies to what the user enters. I'm keeping a text file with the questions it answers and the answers to those questions. I'm reading the file with a...
  8. Re: If-Then-Else statement error near unexpected token 'Then'

    well The problem with your code is that you have a semicolon following the condition of the if statement, as well as the term "then" following the condition. Most programming languages, including the...
  9. Making a loop in fibonacci series in java

    I'm attempting to develop a programme that will locate the nth term in a Fibonacci sequence (it has to be non-recursive, by the way). It must be capable of accepting any two numbers from the user and...
  10. C++ factory method pattern and data abstraction

    I'm attempting to implement the Factory Method Pattern in C++ while maintaining a high degree of abstraction. All derived classes are in the same file in the sample supplied in the link, although...
  11. longest common sequential subsequence

    I know how to calculate the lcs of two sequences/strings, however lcs does not need that the subsequence be sequential. I tried it the following way:

    function lccs(a, b)
    if a.length == 0 or...
  12. How to Convert a Native Query Result Set to a POJO Class Collection Using JPA

    JPA is being used in my project.
    I came across a query that required me to do a join operation on five tables. As a result, I wrote a native query that returns five fields.
    Now I'd want to...
  13. Re: Adding many Python files and directories to a single dmg file

    Thanks for sharing this, it really helps me a lot.
  14. Adding many Python files and directories to a single dmg file

    How can I make a single dmg file out of many Python files in different folders? I know that's doable for a single file, but how can I do it for several?
    I can make a dmg for a 1.py file but not for...
  15. Re: Ubuntu 22.04 won't boot (ALERT! UUID=xxx does not exist. Dropping to a shell)

    The solution was to run these commands from liveDVD, which allows me to execute tasks on my sda1 from that liveDVD (as far I understand)

    sudo mount /dev/sda1 /mnt
    sudo mount --bind /dev /mnt/dev...
  16. How to Create Jackson Classes from XSD

    Jackson does not provide a tool for generating Jackson classes from XSD or JSON, as JAXB does for a specific XSD.


    The JAXB class generator was used to generate a set of classes for the specified...
Results 1 to 16 of 16