{Career in Software
Development}
PROGRAMMER
Answer: Q
Software
Jr.
Developer
Software
Developer
Sr.
Software
Developer
Software
Architect
Principal
Computer
Architect
CEOs/
Directors
Expert:
80K- 200K
Intermediate:
40K- 50K
Beginners:
18K-35K
What can I do?
Mark Zuckerberg
Founder, Facebook
Jack Ma
Founder, Alibaba Group
Sunder Pichai
CEO, Google
Web Applications
Desktop based Applications
Mobile Applications
#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# execute SQL query using execute() method.
cursor.execute("SELECT VERSION()")
# Fetch a single row using fetchone() method.
data = cursor.fetchone()
print "Database version : %s " % data
# disconnect from server
db.close()
Trending Programming Languages
Software
Vacancies
in NEPAL
Thank You

Career Development in Programming Sector

Editor's Notes

  • #2 Introduction slide about the software development. What we are going to learn about
  • #3 Software development is all about coding; i.e. communicating with your computer system. Coding is a technique by which you can communicate with computer Computer languages are available such that your code can talk with computer There are many software development languages available to develop software, you might have heard of java, .net, python etc… these are the languages used to develop software. It could be confusing that how does a software code looks like, lets have a look on a sample code
  • #5 There are different types of software applications available, let’s categorize them. Majorly software application falls under three different categories– Desktop based, Web Based and Mobile Based, what we are already used to all these types of applications.
  • #9 No matters what you’re learning, Software is there. You want to learn medical-software is there Want to be a pilot- Software is there These guys are from the industry who have proved these things.
  • #13 Sample code of Python