Trending questions in Edureka Community

0 votes
1 answer

Bootstrap 4 multiselect dropdown

Due to the reason being that the ...READ MORE

Feb 22, 2022 in Java by Aditya
• 7,680 points
5,863 views
0 votes
0 answers

XXHash for PHP (without module/extension)

I want to create a plugin for ...READ MORE

Jun 26, 2022 in PHP by narikkadan
• 63,680 points
565 views
0 votes
1 answer

How to change CSS using jQuery?

You can do either: $("h1").css("background-color", "yellow"); Or ...READ MORE

Jun 28, 2022 in CSS by Edureka
• 12,690 points
441 views
0 votes
1 answer

JQuery AJAX syntax

Syntax: $. ajax(url); $. ajax(url,[options]); jQuery ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points
962 views
0 votes
1 answer

How to delete duplicate rows in SQL Server?

WITH CTE AS ( SELECT *,ROW_NUMBER() OVER (PARTITION BY ...READ MORE

Jun 21, 2022 in Others by nisha
• 2,210 points
736 views
0 votes
1 answer

jQuery $(this) selector function and limitations

this isn't a jQuery "thing", but a basic JavaScript ...READ MORE

Jun 23, 2022 in Web Development by rajatha
• 7,680 points
631 views
0 votes
1 answer

mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported

Hi@akhtar, According to SQL documentation for python library. you ...READ MORE

Jul 15, 2020 in Python by MD
• 95,460 points
31,199 views
0 votes
1 answer

if - else if - else statement and brackets

When the first if is followed by ...READ MORE

Jun 14, 2022 in Data Analytics by Sohail
• 3,040 points
1,019 views
0 votes
1 answer

What range of values can integer types store in C++

You may rely on the following minimal ...READ MORE

Jun 21, 2022 in C++ by Damon
• 4,960 points
716 views
0 votes
0 answers

How to use c++ swap function?

It is OK to write swap(a,b); There is an issue when I write swap(&c[0],&d[0]);.  Can anyone explain why? #include<iostream> #include<algorithm> using namespace std; int main(void){ ...READ MORE

Jul 1, 2022 in C++ by Nicholas
• 7,760 points
323 views
0 votes
1 answer

What is typing discipline

Wikipedia's typing discipline relates to the type ...READ MORE

Jun 14, 2022 in C# by jyoti
• 1,240 points
1,081 views
0 votes
0 answers

Javamail Could not convert socket to TLS GMail

I want to send an email using ...READ MORE

May 2, 2022 in Java by Kichu
• 19,050 points
2,932 views
0 votes
1 answer

Download File Using JavaScript/jQuery

<!DOCTYPE html> <html> <head> <title> Download File Using JavaScript/jQuery </title> </head> <body> <h1> Download File Using JavaScript/jQuery </h1> <a id="link" ...READ MORE

Jun 10, 2022 in JQuery by rajatha
• 7,680 points
1,179 views
0 votes
1 answer

Auto deduct the payment from account using razorpay in nodejs

To interface with Razorpay APIs, install the ...READ MORE

Jun 14, 2022 in Node-js by Neha
• 9,020 points
1,007 views
0 votes
1 answer

Is there a way to download videos from YouTube Studio using NodeJS

Try this project in the github repository ...READ MORE

May 27, 2022 in Node-js by Neha
• 9,020 points
1,770 views
0 votes
1 answer

Polynomials as functions in R

 this will work _polynomial = function(x) { ...READ MORE

Jun 24, 2022 in Data Analytics by Sohail
• 3,040 points
618 views
0 votes
0 answers

No connection could be made because the target machine actively refused it?

 I was doing HttpWebRequest to a WebService ...READ MORE

May 5, 2022 in Others by Kichu
• 19,050 points
2,768 views
0 votes
0 answers

How to calculate the difference between two dates using PHP?

I have two dates on the form: Start ...READ MORE

Jun 24, 2022 in PHP by narikkadan
• 63,680 points
632 views
0 votes
3 answers

Python pandas: TypeError: tuple indices must be integers or slices, not str

In fact, I get a perfectly good ...READ MORE

Jun 13, 2019 in Python by Alok
49,965 views
0 votes
0 answers

Send str() output to View()

A dataset containing 313 variables is the ...READ MORE

Jun 30, 2022 in Data Analytics by avinash
• 1,840 points
352 views
0 votes
1 answer

Microsoft CDN for jQuery or Google CDN?

You should absolutely use the Google CDN ...READ MORE

Jun 22, 2022 in Web Development by rajatha
• 7,680 points
652 views
0 votes
0 answers

PHP - exit or return which is better?

Case I: <?php if ( $fileSize > 100 ) { ...READ MORE

Jun 23, 2022 in PHP by narikkadan
• 63,680 points
674 views
0 votes
1 answer

Use of multisets in C++ [duplicate]

Because a multi-set does not need the storage of single-element objects.  You're considering storing anything in a multi-set, such as a string.  But it is not its intended use.  You may use whatever struct you want and compare it to a single element in the struct. As an example: struct PhoneBookEntry { std::string name; ...READ MORE

Jun 27, 2022 in C++ by Damon
• 4,960 points
435 views
0 votes
1 answer

lower_bound == upper_bound

Lower bound: the initial greater-or-equal element. Upper bound: ...READ MORE

Jun 21, 2022 in C++ by Damon
• 4,960 points
1,022 views
0 votes
0 answers

Insert current date in datetime format mySQL

I am having an issue inserting date ...READ MORE

Jun 25, 2022 in PHP by narikkadan
• 63,680 points
582 views
0 votes
0 answers

Sending email with PHP from an SMTP server

I get an error: SMTP server response: 530 ...READ MORE

Jun 25, 2022 in PHP by narikkadan
• 63,680 points
583 views
0 votes
1 answer

Get checkbox value in jQuery

To get the value of the Value ...READ MORE

Jun 23, 2022 in Web Development by rajatha
• 7,680 points
628 views
0 votes
1 answer

Uncaught TypeError: Cannot read property 'value' of null

As you have not shared your HTML ...READ MORE

Feb 22, 2022 in Java by Aditya
• 7,680 points
5,832 views
0 votes
1 answer

how many logical connectives are there in artificial intelligence?

Negation, conjunction, disjunction, implication, and biconditional are ...READ MORE

Jan 7, 2022 in Others by Edureka
• 12,690 points
7,862 views
0 votes
0 answers

Load csv file in R

Is it possible to import a csv ...READ MORE

Jun 30, 2022 in Data Analytics by avinash
• 1,840 points
345 views
0 votes
0 answers

Get URL query string parameters

What is the best way to get ...READ MORE

Jun 24, 2022 in PHP by narikkadan
• 63,680 points
622 views
0 votes
3 answers

i am installing wordcloud using pip but i am unable to do that ....i am getting the following error

word cloud is not supported for python ...READ MORE

Apr 15, 2020 in Python by anonymous
32,934 views
0 votes
1 answer

Android APK - Google form to APK with camera access

Here is a link to similar form ...READ MORE

Jun 20, 2022 in Others by nisha
• 2,210 points
749 views
0 votes
1 answer

Unclear usage of font awesome icons in jquery context menu

<script type="text/javascript"> jQuery(function ($) ...READ MORE

Jun 17, 2022 in JQuery by rajatha
• 7,680 points
882 views
0 votes
0 answers

How to add a gridview to a C# winforms project with a list of objects as the datasource

In Visual Studio 2015 community, I'm creating ...READ MORE

Jun 11, 2022 in C# by krishna
• 2,820 points
1,157 views
0 votes
1 answer

Using :: (scope resolution operator) in C++

You're mostly correct regarding cout and cin. ...READ MORE

Jun 27, 2022 in C++ by Damon
• 4,960 points
540 views
0 votes
0 answers

Developing reporting engine in nodejs

this may be a little clean and ...READ MORE

Jun 27, 2022 in Node-js by Vaani
• 7,070 points
464 views
0 votes
1 answer

How to get current location in google map android

package com.example.sandeep.googlemapsample; import android.content.pm.PackageManager; import android.location.Location; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.ActivityCompat; import ...READ MORE

Jun 1, 2022 in Others by nisha
• 2,210 points
1,573 views
0 votes
1 answer

Typescript: how to define message type for broker consumer

Our main goal - is to make ...READ MORE

Jun 15, 2022 in TypeSript by Nina
• 3,060 points
967 views
0 votes
0 answers

Knex NodeJS and inserting into the database

Here is my first attempt at setting ...READ MORE

Jun 27, 2022 in Node-js by Vaani
• 7,070 points
466 views
0 votes
1 answer

Set opacity of background image without affecting child elements

You can utilise opacity in conjunction with ...READ MORE

Jun 10, 2022 in CSS by Edureka
• 12,690 points
1,153 views
0 votes
1 answer

More efficient way to do parent().parent().parent() etc. in jquery

The jQuery parent() and parents() methods return the ...READ MORE

Jun 27, 2022 in Web Development by rajatha
• 7,680 points
417 views
0 votes
1 answer

Google OAuth 2 authorization - Error: redirect_uri_mismatch

To answer your question, you need to ...READ MORE

Feb 16, 2022 in Others by Soham
• 9,710 points
6,075 views
0 votes
4 answers

What are some best examples of AI applications in our daily life?

Hi Michael, You don’t need to be a ...READ MORE

Apr 9, 2020 in Machine Learning by Albert
• 160 points
2,169 views
0 votes
1 answer

How to use the strsplit function with a period

Since the dot has a specific meaning ...READ MORE

Jun 24, 2022 in Data Analytics by Sohail
• 3,040 points
772 views
0 votes
0 answers

How to open php files through localhost?

I am creating a student management program ...READ MORE

Jun 10, 2022 in PHP by narikkadan
• 63,680 points
1,212 views
0 votes
0 answers

C++ pointer to objects

Is it always necessary in C++ to  ...READ MORE

Jun 27, 2022 in C++ by Nicholas
• 7,760 points
458 views
0 votes
0 answers

How to use the priority queue STL for objects?

class Person { public: int age; }; I'd want to put objects of the type Person in a priority queue. priority_queue< ...READ MORE

Jun 27, 2022 in C++ by Nicholas
• 7,760 points
456 views
0 votes
1 answer

outputting ascii table in C++

This line doesn't do the right thing: ch ...READ MORE

Jun 13, 2022 in C++ by Damon
• 4,960 points
1,015 views
0 votes
1 answer

Error "Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)"

For pip, use the binary-only option.  ...READ MORE

Jun 14, 2022 in C++ by Damon
• 4,960 points
969 views