Most answered questions in Edureka Community

+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
34,831 views
+4 votes
7 answers

What is an array in Python? How to declare it?

Python doesn't have a native array data ...READ MORE

Apr 12, 2018 in Python by anto.trigg4
• 3,440 points
2,503 views
+1 vote
7 answers

What are the advantages and limitations of hyperledger composer over fabric?

While hyperledger composer is a set of ...READ MORE

Apr 8, 2018 in Blockchain by Perry
• 17,100 points
3,282 views
+3 votes
7 answers

How can I rename a file in Python?

yes, you can use "os.rename" for that. ...READ MORE

Mar 31, 2018 in Python by DareDev
• 6,890 points
19,357 views
+4 votes
7 answers

Creating Amazon Web Service (AWS) account (trial version) without giving up credit card details

Unfortunately, you can’t create an account on ...READ MORE

Mar 30, 2018 in Cloud Computing by brat_1
• 7,200 points
18,120 views
0 votes
7 answers

How to run a jar file in hadoop?

I used this command to run my ...READ MORE

Dec 10, 2018 in Big Data Hadoop by Dasinto
25,639 views
+4 votes
7 answers

How to set the pipeline name and description for a Jenkinsfile?

You can rename pipeline jobs in jenkins ...READ MORE

Oct 11, 2018 in Jenkins by Hannah
• 18,570 points
35,177 views
0 votes
6 answers

Appraisal season preparation

From past experience we can assure you ...READ MORE

Feb 26, 2019 in Ask us Anything! by Edureka
• 2,960 points
787 views
+1 vote
6 answers

Is it okay to quit job and learn a new technology?

Hi. According to your point, it reflects that ...READ MORE

Apr 17, 2019 in Career Counselling by sumitan
3,877 views
0 votes
6 answers

How much salary hike should I expect after 2 years of experience as a Software Developer?

Here are my two cents: First question: After switching ...READ MORE

Dec 14, 2020 in Career Counselling by Rajiv
• 8,910 points
172,119 views
0 votes
6 answers

What are the roles and responsibilities of Research and Development Manager?

Research and development (R&D) managers oversee research activities and develop knowledge-based products ...READ MORE

Dec 11, 2020 in Career Counselling by Roshni
• 10,520 points
133,262 views
–1 vote
6 answers

What are the roles and responsibilities of a WordPress Developer?

WordPress Developers are responsible for both back-end ...READ MORE

Apr 16, 2020 in Career Counselling by Steve
1 flag 6,551 views
+5 votes
6 answers

what is artificial neural network?

Machine Learning is a field of computer ...READ MORE

Dec 17, 2018 in Others by Raghumishra
• 240 points
2,184 views
+2 votes
6 answers

How to add a volume to Docker, but also exclude a sub-folder?

Here is what you can try if ...READ MORE

Nov 21, 2018 in DevOps & Agile by Shubham
• 1,000 points
24,599 views
–1 vote
6 answers

Hyperledger fabric: Docker container error: Error response from daemon: Container is not running

I had to update the version of ...READ MORE

Apr 25, 2019 in Blockchain by Gani
8,972 views
+5 votes
6 answers

What is the salary for a Blockchain Developer?

Blockchain has been a trending Technology. The ...READ MORE

Oct 16, 2018 in Career Counselling by Mayuri
2,938 views
+3 votes
6 answers

How to move files from amazon ec2 to s3 bucket using command line

Hey, 3 ways you can do this: To ...READ MORE

Oct 9, 2018 in AWS by Omkar
• 69,210 points
19,270 views
+1 vote
6 answers

groupByKey vs reduceByKey in Apache Spark.

ReduceByKey is the best for production. READ MORE

Mar 3, 2019 in Apache Spark by anonymous
75,795 views
+16 votes
6 answers

Let's keep this thread for discussing Python Interview questions & Experience

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

Jan 17, 2019 in Career Counselling by Edureka
• 4,220 points
1,789 views
+11 votes
6 answers

**Important** AWS Architect Interview Questions for aspiring AWS learners

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

Jan 17, 2019 in Career Counselling by Edureka
• 4,220 points
2,603 views
+2 votes
6 answers

Jenkins unable to run jobs (pending - waiting for next executor)

Increase the number of executors. I had ...READ MORE

Apr 24, 2019 in Jenkins by Maya
39,909 views
+1 vote
6 answers

Unable to login to Jenkins even if I enter valid credentials.

Disable security by editing these two classes ...READ MORE

Apr 26, 2019 in Jenkins by Vedant
46,540 views
+3 votes
6 answers

Devops and security

By using tools that are shared across the ...READ MORE

Oct 23, 2018 in Other DevOps Questions by Anvit
1,445 views
0 votes
6 answers

How to get text found between span – selenium

The text "Search Zone" is not part ...READ MORE

Feb 28, 2019 in Selenium by Trying to Figure
74,979 views
0 votes
6 answers

How to use COUNTIF in Tableau?

I'll give you a brief idea on ...READ MORE

Dec 10, 2018 in Tableau by Haider
35,736 views
0 votes
6 answers

How can I separate the digits of an int number in Java?

You can also have a look here: To ...READ MORE

Dec 9, 2020 in Java by Roshni
• 10,520 points
203,953 views
0 votes
6 answers

How can we define global variables in java?

To define Global Variable you can make ...READ MORE

Dec 15, 2020 in Java by Gitika
• 65,910 points
115,481 views
+3 votes
6 answers

Verifying whether an element present or visible in selenium Webdriver

Below code will help you: To check Element ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
95,250 views
+1 vote
6 answers

How python trim works

You want strip(): myphrases = [ " Hello ...READ MORE

Oct 18, 2018 in Python by up4rescue
996 views
+2 votes
6 answers

How can I change directory or "cd" in Python?

Context Manager: cd import os class cd:     """Context manager for ...READ MORE

Oct 18, 2018 in Python by Nabarupa
27,543 views
+2 votes
6 answers

Slicing in Python

Index: ------------> ...READ MORE

Oct 18, 2018 in Python by abc
1,167 views
+4 votes
6 answers

Substring search in Python

Use the "in" operator in python" if "substring" ...READ MORE

Apr 13, 2018 in Python by Nietzsche's daemon
• 4,260 points
967 views
+4 votes
6 answers

Does Python have a ternary conditional operator like C does?

Yes, the syntax is: a if condition else ...READ MORE

Apr 13, 2018 in Python by Nietzsche's daemon
• 4,260 points
1,943 views
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

Apr 11, 2018 in Python by hemant
• 5,790 points
3,489 views
+2 votes
6 answers

Can we download an entire S3 bucket?

Use this command with the AWS CLI: aws ...READ MORE

Oct 25, 2018 in Cloud Computing by tryhard
3,708 views
+5 votes
6 answers

Benefits of EBS vs. instance-store

As of now all AMI's in quickstart ...READ MORE

Oct 16, 2018 in AWS by Ashwat Singh
13,121 views
+4 votes
6 answers

Use of "continue" in python

The break statement is used to "break" ...READ MORE

Jul 16, 2018 in Python by Omkar
• 69,210 points
1,203 views
+3 votes
6 answers

Renaming files in S3

You can either use AWS CLI or ...READ MORE

Oct 16, 2018 in AWS by petter dj
29,959 views
+2 votes
6 answers

copy directories in docker container excluding any one directory

One of the way could be copy ...READ MORE

Dec 10, 2018 in Docker by Prateek
33,186 views
+3 votes
6 answers

Are the S3 buckets in AWS, Region Specific?

Yes S3 buckets are region specific. When you ...READ MORE

Oct 16, 2018 in Cloud Computing by Rijo
28,155 views
0 votes
6 answers

How to specify "ENTER" button functionality in Selenium WebDriver code?

using OpenQA.Selenium.Interactions; Actions builder = new Actions(driver); ...READ MORE

Feb 13, 2019 in Selenium by anonymous
94,822 views
+1 vote
5 answers

How to get user's IP address in Laravel?

Hey, We can get the user's IP address ...READ MORE

Mar 20, 2020 in Laravel by Niroj
• 82,880 points
71,180 views
0 votes
5 answers

Whose references should I include on my resume while doing a job change?

When choosing resume references, consider individuals who ...READ MORE

Sep 9, 2019 in Career Counselling by Sirajul
• 59,230 points
1,161 views
0 votes
5 answers

What's the future for freshers who start a job in technical support engineer? How is the career growth?

Technical Support has a future but only ...READ MORE

Sep 9, 2019 in Career Counselling by Varsha
47,669 views
+1 vote
5 answers

Python error "ERROR: Could not find a version that satisfies the requirement PyQt4 (from versions: none)"

You cannot install PyQt directly from pip. ...READ MORE

Jul 22, 2019 in Python by Bob
118,474 views
+1 vote
5 answers

Tkinter error: tkinter.TclError: bad geometry specifier

You have to use the character ‘x’ ...READ MORE

May 9, 2019 in Python by Tina
17,714 views
0 votes
5 answers

How to read Pandas csv file with no header?

Use this logic, if header is present ...READ MORE

Mar 14, 2020 in Python by Shahabuddin
• 160 points
217,795 views
0 votes
5 answers

what is the difference between append and insert in python lists?

There is a simple difference between append ...READ MORE

Jun 23, 2019 in Python by Harshdeep Khatke
68,095 views
+1 vote
5 answers

How to take input using BufferedReader in Java?

yupp i am explaining every thing .. We ...READ MORE

Feb 1, 2020 in Java by Rohan
• 180 points
117,856 views
0 votes
5 answers

What to study in Python to do freelancing using this?

Hello, you are on the right track. ...READ MORE

Feb 27, 2019 in Python by Priyaj
• 58,090 points
768 views