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

    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...
  2. 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...
  3. 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...
  4. 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...
Back
Top Bottom