summaryrefslogtreecommitdiff
path: root/Let_us_C/chapter-14.ipynb
diff options
context:
space:
mode:
authordebashisdeb2014-06-20 15:42:42 +0530
committerdebashisdeb2014-06-20 15:42:42 +0530
commit83c1bfceb1b681b4bb7253b47491be2d8b2014a1 (patch)
treef54eab21dd3d725d64a495fcd47c00d37abed004 /Let_us_C/chapter-14.ipynb
parenta78126bbe4443e9526a64df9d8245c4af8843044 (diff)
downloadPython-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.gz
Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.bz2
Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.zip
removing problem statements
Diffstat (limited to 'Let_us_C/chapter-14.ipynb')
-rw-r--r--Let_us_C/chapter-14.ipynb9
1 files changed, 0 insertions, 9 deletions
diff --git a/Let_us_C/chapter-14.ipynb b/Let_us_C/chapter-14.ipynb
index becf792e..8181a680 100644
--- a/Let_us_C/chapter-14.ipynb
+++ b/Let_us_C/chapter-14.ipynb
@@ -25,7 +25,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to print binary equivalent of integers using showbits( ) function'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -170,7 +169,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to shows one\u2019s complement operator in action.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -351,7 +349,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate file encryption utility'''\n",
"\n",
"#Function definition\n",
"def encrypt( ):\n",
@@ -389,7 +386,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the effect of right shift operator.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -556,7 +552,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the effect of left shift operator.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -723,7 +718,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to decode the date field in directory entry using bitwise operators'''\n",
"\n",
"#Variable declaration\n",
"d = 9\n",
@@ -767,7 +761,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to test whether a bit in a number is ON or OFF'''\n",
"\n",
"#Variable declaration\n",
"i = 65\n",
@@ -812,8 +805,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate that a number XORed with another number\n",
- "twice gives the original number.'''\n",
"\n",
"#Variable declaration\n",
"b = 50\n",