12th Class NCERT Solution Download Click Here!

X




Wednesday, 17 July 2019

Download Python Book for Class 12th Computer Science CBSE Board

Download Python PDF for Class 12th CBSE


Content Unit–1


Review of Phython & Concept of Oops 1 Unit–2: Advanced Programming with Python 87 Unit–3: Databases Management Systems and SQL 159 Unit–4: Introduction to Boolean Algebra 203 Unit–5: Communication Technologies 259 Chapter_1 Review of Phython 2 Chapter_2 Concept of Object Oriented Programming 28 Chapter_3 Classes in Python 39 Chapter_4 Inheritance 66 Chapter_1 Liner List Manipulation 88 Chapter_2 Stacks & Queues in list 106 Chapter_3 Data File Handling 124 Chapter_4 Exception Handling & Generate Functions 147 Chapter_1 Databases Concepts and SQL 160 Chapter_2 Structure Query Language 176 Chapter_1 Boolean Algebra 204 Chapter_2 Boolean Functions and Reduce Forms 220 Chapter_3 Application of Boolean Logic 239 Chapter_1 Networking Concepts Part I 260 Chapter_2 Networking Concepts Part II 271 Chapter_3 Networking Protocols 290 Chapter_4 Mobile Telecommunication Technologies, Network Security and Internet Services 299


Download Book from Here

Sunday, 13 March 2016

Write a program to check whether the given number is even or odd (using ? : ternary operator )

#include<iostream>
using namespace std;

int main()
{
 int a;
 cout<<"Enter the Number : ";
 cin>>a;
 (a%2==0)?cout<<"Number is even":cout<<"Number is odd";

 
 return 0;
}

Write a program to check whether the given number is positive or negative (using ? : ternary operator )


#include<iostream>
using namespace std;

int main()
{
 int a;
 cout<<"Enter any non-zero Number : ";
 cin>>a;
 (a>0)?cout<<"Number is positive":cout<<"Number is negative";
 
 
 return 0;
}

Write a program to calculate area of circle.

#include<iostream>
using namespace std;

int main()
{
 float r,area;
 cout<< "\nEnter radius of circle : ";

 cin>>r;
 area = 3.14*r*r;

 cout<<"Area of circle : "<<area;
 
 return 0;
}

Write a program to swap the values of two variables.

#include<iostream>
using namespace std;

int main()
{
 int a,b,temp;
 cout<<"\nEnter two numbers : ";
 cin>>a>>b;
 temp=a; 
 a=b;
 b=temp;
 cout<<"\nAfter swapping numbers are : ";
 cout<<a<<" "<<b;

 return 0;
}

Write a program which accepts a character and display its ASCII value.

#include<iostream>
using namespace std;

int main()
{
 char ch;
 cout<<"\nEnter any character : ";
 cin>>ch;
 cout<<"ASCII equivalent is : "<<static_cast<int>(ch);
 
 
 return 0;
}

Write a program which accept principle, rate and time from user and print the simple interest.

#include<iostream>
using namespace std;

int main()
{
 int p,r,t,i;
 cout<<"Enter Principle : ";
 cin>>p;
 cout<<"Enter Rate : ";
 cin>>r;
 cout<<"Enter Time : ";
 cin>>t;
 i=(p*r*t)/100;
 cout<<"Simple interest is : "<<i;

 
 return 0;
}