Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Pony2

    Unable to Solve SQL Query Interview Question

    The code you provided is written in PL/SQL, a procedural language used in Oracle databases. It appears to be a program that calculates the sum of all odd numbers up to a given limit (5 in this case). Here's a breakdown of the code: 1. The variables `num` and `sum1` are declared and...
  2. Pony2

    Unable to Solve SQL Query Interview Question

    Hi all, I'm having difficulty solving a SQL query question that I recently encountered online. I'm trying to write a query that will return the sum of all odd integers from 1 to 100, but I'm not sure how to go about it. Here is the code I have so far: SELECT SUM(column_name) FROM table_name...
  3. Pony2

    Need help troubleshooting JMeter Interview Questions

    Hello everyone, I'm preparing for an upcoming interview and I'm having some difficulties troubleshooting a few JMeter interview questions. I went through this reference and am still in doubt..I was hoping someone would be willing to help me out. I'm having trouble with the following code...
  4. Pony2

    C++ Understanding the Difference Between C and C++

    Hello everyone, I'm a new programmer and I'm having trouble understanding the difference between C and C++ from references. I understand that C++ is an extension of C and that it has some extra features, but I'm having trouble grasping the differences between the two. I've been researching and...
  5. Pony2

    Troubleshooting Longest Increasing Subsequence Algorithm

    Hello, I'm having trouble troubleshooting a problem with the longest increasing subsequence algorithm. I'm using the code from the blog post, but I'm getting an incorrect output. Here's the code I'm using: def lis(arr): n = len(arr) lis = [1]*n for i in range (1 , n): for...
  6. Pony2

    JavaScript How to add URL in Text (JavaScript)

    It appears that you are trying to create an object URL as a string, but the syntax is incorrect. Here are a few suggestions: Make sure you provide a valid URL in the "path" field. In your example, the "path" field is set to "Google", which is not a valid URL. You should provide a valid URL...
Back
Top Bottom