Most answered questions in Edureka Community

+2 votes
10 answers

How to fix this? ValueError: invalid literal for int() with base 10 error in Python

The following are totally acceptable in python: passing ...READ MORE

Nov 16, 2018 in Python by Nymeria
• 3,560 points
412,800 views
0 votes
10 answers

How to solve gradle build failed error?

I migrated the project to a different ...READ MORE

Dec 7, 2018 in Blockchain by Rajat
51,046 views
+1 vote
10 answers

How can the NuGet packages be used in Azure Functions?

Yes! Although the Azure Functions portal does ...READ MORE

Jun 8, 2018 in Azure by club_seesharp
• 3,450 points
17,973 views
+4 votes
10 answers

Creating an empty data.frame with only column names - R

Hi, You need to create a data frame ...READ MORE

Dec 11, 2020 in Data Analytics by MD
• 95,460 points
109,499 views
+2 votes
10 answers

Convert Java Byte Array - String - Byte Array

Character Stream Vs Byte Stream Character oriented are ...READ MORE

Sep 25, 2018 in Java by carldivin
• 180 points
11,519 views
0 votes
10 answers

Difference between single node & pseudo-distributed mode in Hadoop?

Single node is used for debugging the ...READ MORE

Dec 7, 2018 in Big Data Hadoop by Mahisha
20,324 views
+1 vote
10 answers

HTTP request not working with AWS Lambda, please help?

context.done has to be included after the ...READ MORE

Apr 13, 2018 in AWS by brat_1
• 7,200 points
17,780 views
+3 votes
10 answers

Difference between s3n, s3a and s3?

S3 Native FileSystem (URI scheme: s3n) A ...READ MORE

Oct 25, 2018 in AWS by Rishab rohan
42,256 views
+2 votes
10 answers

Is there any difference between “hdfs dfs” and “hadoop fs” shell commands?

hadoop fs <args> fs is used for generic ...READ MORE

Mar 16, 2018 in Big Data Hadoop by anonymous
36,254 views
0 votes
10 answers

What is the difference between Mongodb and Hadoop?

MongoDB is a NoSQL database, whereas Hadoop is ...READ MORE

Jun 20, 2018 in Big Data Hadoop by jenny_code
13,163 views
+1 vote
9 answers

What is the difference between web design and web development?

A designer designs the web pages and ...READ MORE

Jan 22, 2020 in Web Development by Niroj
• 82,800 points
3,081 views
+2 votes
9 answers

Python error "IndentationError: expected an indented block"

Python requires its code to be indented ...READ MORE

Jun 17, 2019 in Python by Varun

edited Jun 17, 2019 327,327 views
0 votes
9 answers

Is there anything called as Dead end Career?

Career should be an upward graph. The ...READ MORE

Mar 11, 2019 in Career Counselling by Kim
2,436 views
+4 votes
9 answers

Will robots take over surgeons?

Yes we will definitely need a surgeon ...READ MORE

Nov 30, 2018 in Events & Trending Topics by anonymous
3,076 views
+4 votes
9 answers

***IMPORTANT*** AngularJS Interview Questions.

Yes, I agree with Omkar AngularJs is ...READ MORE

Mar 17, 2019 in Career Counselling by Sharad
• 180 points
4,935 views
+1 vote
9 answers

How to make mock to void methods with mockito

You can use partial mocking to serve ...READ MORE

Dec 7, 2018 in Java by nitesh
36,401 views
0 votes
9 answers

Is there any way to check which Hadoop daemons are running?

use jps command, It will show all the running ...READ MORE

Dec 27, 2018 in Big Data Hadoop by Rakesh
• 160 points
48,242 views
+9 votes
8 answers

**Attention Ladies & Gents, this is your chance to win free Edureka Merchandise on our Community.

Awesomely Amazing.... #EdurekaCommunityFTW READ MORE

Jul 2, 2019 in Ask us Anything! by anonymous
• 28,140 points
2,986 views
0 votes
8 answers

What is/are your biggest career mistakes?

I'm on my first job and as ...READ MORE

Mar 11, 2019 in Career Counselling by Yamini
2,571 views
0 votes
8 answers

Which is the better IT hub in India, Bangalore or Chennai?

I will choose Chennai because The living ...READ MORE

Jun 21, 2022 in Career Counselling by Jeev

edited Mar 5 13,743 views
+4 votes
8 answers

Is creating an AI system like J.A.R.V.I.S. possible?

Yes, it is possible but not in ...READ MORE

Nov 27, 2018 in Events & Trending Topics by Samarth

edited Aug 11, 2021 by Soumya 20,641 views
+7 votes
8 answers

What exactly is the function of random.seed() in python?

The seed method is used to initialize the ...READ MORE

Oct 29, 2018 in Python by Rahul
129,151 views
+8 votes
8 answers

Career in Blockchain

Blockchain Technology is used for more than crypto-currencies, ...READ MORE

Sep 19, 2018 in Career Counselling by Omkar
• 69,180 points
2,704 views
+7 votes
8 answers

Difference for string comparison in Python: 'is' vs. ==

If we use "==" means both variables ...READ MORE

Sep 3, 2018 in Python by Parul Raheja
3,473 views
0 votes
8 answers

How to open a link in new tab of chrome browser using Selenium WebDriver?

This below code works for me in ...READ MORE

Dec 14, 2020 in Selenium by Gitika
• 65,730 points
105,077 views
+2 votes
8 answers

Writing the Kafka consumer output to a file

System.out.println(String.valueOf(output.offset()) + ": " + new String(bytes, ...READ MORE

Dec 7, 2018 in Apache Kafka by Harsh
40,384 views
+1 vote
8 answers

How to print the contents of RDD in Apache Spark?

Save it to a text file: line.saveAsTextFile("alicia.txt") Print contains ...READ MORE

Dec 10, 2018 in Apache Spark by Akshay
63,203 views
+1 vote
8 answers

How to replace null values in Spark DataFrame?

Hi, In Spark, fill() function of DataFrameNaFunctions class is used to replace ...READ MORE

Dec 15, 2020 in Apache Spark by MD
• 95,460 points
77,062 views
+1 vote
8 answers

Count the frequency of an item in a python list

To count the number of appearances: from collections ...READ MORE

Oct 18, 2018 in Python by tinitales
36,947 views
+1 vote
8 answers

How is Blockchain a linked list?

Blockchain is similar to Single Linked List ...READ MORE

Aug 3, 2018 in Blockchain by Omkar
• 69,180 points
14,764 views
+1 vote
8 answers

How can I implement process.env in Angular 5 environment?

Users do not have access to process.env ...READ MORE

Apr 3, 2018 in DevOps & Agile by DareDev
• 6,890 points
14,087 views
+4 votes
8 answers

How can I use Python's range function?

The range function is mostly used in for-loop.  Ex: for ...READ MORE

Aug 21, 2018 in Python by Omkar
• 69,180 points
2,927 views
+4 votes
7 answers

Error dpkg frontend lock is locked by another process

First, find out the id of the process that ...READ MORE

Aug 7, 2019 in Linux Administration by Sirajul
• 59,190 points
275,648 views
+1 vote
7 answers

What is difference between access modifier and access specifier in java

Access Specifier:- This can be understood as ...READ MORE

Feb 14, 2019 in Java by Priyaj
• 58,020 points
75,018 views
+1 vote
7 answers

What are the main reason for people getting rejected in any Interview?

Lots of reasons people getting rejected in ...READ MORE

Jan 10, 2020 in Career Counselling by palak
• 190 points
4,131 views
+6 votes
7 answers

Which career path should I opt now? (6months experience)

You being a System Administrator, will know ...READ MORE

Jan 21, 2019 in Career Counselling by Edureka
• 4,220 points
3,097 views
+1 vote
7 answers

How to use not equal operator in python

if 5 != 3: use like this! READ MORE

Dec 2, 2023 in Python by Tamilaaran

edited Mar 5 373,164 views
+2 votes
7 answers

What are the responsibilities of Blockchain Consultant?

Tamir Zoltovski (Managing Partner at Moneta International ...READ MORE

Aug 31, 2019 in Career Counselling by TamirZoltovski
• 180 points
6,479 views
+1 vote
7 answers

How to connect to a Docker container running mysql on Windows 10?

Avoid using bind_address in your my.cnf file. I don't ...READ MORE

Apr 25, 2019 in Docker by Haseeb
13,680 views
+5 votes
7 answers

Docker swarm vs kubernetes

Swarm is easy handling while kn8 is ...READ MORE

Aug 27, 2018 in Docker by Mahesh Ajmeria
5,268 views
+1 vote
7 answers

Error: Jenkins Maven Build 137

I disagree with @Pam's answer. The problem ...READ MORE

May 6, 2019 in Jenkins by Danica
10,218 views
+1 vote
7 answers

How to solve “x509: ECDSA verification failure” error?

Before you execute the  composer runtime install -c ...READ MORE

Jul 30, 2018 in Blockchain by digger
• 26,740 points
9,497 views
+11 votes
7 answers

“IMPORTANT” interview questions for DevOps

Hello everyone here is an updated blog ...READ MORE

Jan 17, 2019 in Career Counselling by Edureka
• 4,220 points
4,695 views
+17 votes
7 answers

Blockchain Interview Discussion

Hello everyone here is an updated blog ...READ MORE

Jan 17, 2019 in Career Counselling by Edureka
• 4,220 points
3,405 views
0 votes
7 answers

docker: executable file not found in $PATH

try to build the image with --no-cache. I ...READ MORE

Nov 1, 2020 in Docker by Deeptesh Agrawal
64,887 views
+3 votes
7 answers

Is it possible to shift or move jobs between two jenkins servers?

Hi, You can copy Jobs in between your ...READ MORE

Dec 16, 2020 in Jenkins by MD
• 95,460 points
46,346 views
+4 votes
7 answers

If conditional in docker file

First of all, create a build_internal.sh file ...READ MORE

May 29, 2018 in Docker by DareDev
• 6,890 points
126,679 views
0 votes
7 answers

How to iterate over rows in a Dataframe in pandas (Python)?

You can use IMHO: for ind in df.index: ...READ MORE

Dec 10, 2018 in Data Analytics by Ishaan
6,222 views
+1 vote
7 answers

What do you mean by python scripting? What is a script and a module in python?

A module is a file containing a ...READ MORE

Jun 17, 2019 in Python by Zain Abbas
66,576 views
+4 votes
7 answers

Splitting a List into chunks in Python

Here's a generator that yields the chunks ...READ MORE

Apr 13, 2018 in Python by Nietzsche's daemon
• 4,260 points
36,405 views