No products in the cart.

Ask questions which are clear, concise and easy to understand.

Ask Question
  • 2 answers

Monisha S 9 months, 1 week ago

Easy

Piyush Mishra 11 months, 4 weeks ago

Easy Can you ans this question Q1. Hardware is of no use without the software and software cannot be used without hardware . Explain
  • 1 answers

Ansh Yadav 1 year, 1 month ago

A= maths
  • 1 answers

Krish Agarwal 1 year, 1 month ago

This content has been hidden. One or more users have flagged this content as inappropriate. Once content is flagged, it is hidden from users and is reviewed by myCBSEguide team against our Community Guidelines. If content is found in violation, the user posting this content will be banned for 30 days from using Homework help section. Suspended users will receive error while adding question or answer. Question comments have also been disabled. Read community guidelines at https://mycbseguide.com/community-guidelines.html

Few rules to keep homework help section safe, clean and informative.
  • Don't post personal information, mobile numbers and other details.
  • Don't use this platform for chatting, social networking and making friends. This platform is meant only for asking subject specific and study related questions.
  • Be nice and polite and avoid rude and abusive language. Avoid inappropriate language and attention, vulgar terms and anything sexually suggestive. Avoid harassment and bullying.
  • Ask specific question which are clear and concise.

Remember the goal of this website is to share knowledge and learn from each other. Ask questions and help others by answering questions.
Ddl
  • 0 answers
  • 1 answers

Preeti Dabral 1 year, 1 month ago

Relational Model: The relational model represents data and relationships among data by a collection of tables known as relations, each of which has a number of columns with unique names.

  • 1 answers

Krish Agarwal 1 year, 1 month ago

This content has been hidden. One or more users have flagged this content as inappropriate. Once content is flagged, it is hidden from users and is reviewed by myCBSEguide team against our Community Guidelines. If content is found in violation, the user posting this content will be banned for 30 days from using Homework help section. Suspended users will receive error while adding question or answer. Question comments have also been disabled. Read community guidelines at https://mycbseguide.com/community-guidelines.html

Few rules to keep homework help section safe, clean and informative.
  • Don't post personal information, mobile numbers and other details.
  • Don't use this platform for chatting, social networking and making friends. This platform is meant only for asking subject specific and study related questions.
  • Be nice and polite and avoid rude and abusive language. Avoid inappropriate language and attention, vulgar terms and anything sexually suggestive. Avoid harassment and bullying.
  • Ask specific question which are clear and concise.

Remember the goal of this website is to share knowledge and learn from each other. Ask questions and help others by answering questions.
  • 1 answers

Prasanta Ganguly 1 year, 1 month ago

Python was first discovered by Guido van Rossum in 1991.It is most easiest programming language as compared to C,C++,Java,perl,etc.Python uses interpreter and it is an interpreted language. Python can be used in both interactive and script mode.Python has lesser libraries than C,C++,Java,etc. But it is programmer friendly. It is free and open source.python extension is used as'.py'.
  • 1 answers

Prasanta Ganguly 1 year, 1 month ago

Database is a system where you can record all the informations in a suitable file or in a sequential format. The informations which are kept in a tabular format is known as relational database(RDBMS).
  • 1 answers

Prasanta Ganguly 1 year, 1 month ago

The query would go like this...... CREATE TABLE STUDENTS (STUDENTID CHAR(10), CLASS VARCHAR(5), SECTION VARCHAR(5), GENDER CHAR(5), NAME VARCHAR(20), DATE_OF_ BIRTH DATE,MARKS INT);
  • 2 answers

Preeti Dabral 1 year, 4 months ago

Guido Van Rossum. PyCharm, a proprietary and Open Source IDE for Python development. PyScripter, Free and open-source software Python IDE for Microsoft Windows. PythonAnywhere, an online IDE and Web hosting service. Python Tools for Visual Studio, Free and open-source plug-in for Visual Studio.

Account Deleted 1 year, 2 months ago

Guido van Rossum 2 software- PYTHON IDLE and SCRIPT MODE
  • 2 answers

Preeti Dabral 1 year, 4 months ago

compiler is a special program that processes statements written in a particular programming language and turns them into machine language or "code" that a computer's processor uses. 

Anita Sharma 9 months ago

It is a type of language processor used to convert high level language to binary language (computer understandable language) in one go
  • 1 answers

Preeti Dabral 1 year, 4 months ago

<th>BASIS FOR COMPARISON</th> <th>COMPILER</th> <th>INTERPRETER</th>
Input It takes an entire program at a time. It takes a single line of code or instruction at a time.
Output It generates intermediate object code. It does not produce any intermediate object code.
Working mechanism The compilation is done before execution. Compilation and execution take place simultaneously.
Speed
 
Comparatively faster Slower
Memory
 
Memory requirement is more due to the creation of object code. It requires less memory as it does not create intermediate object code.
  • 1 answers

Preeti Dabral 1 year, 4 months ago

#We will make use of user-defined python functions for this task.

#we will import math library to use sqrt(), this will be used to #calculate square root.

 

import math

def area_square(a):

area1=float(a*a);

print("Area of square is:",area1)

def area_circle(r):

area2=float(3.14*r*r);

print("Area of circle is:",area2)

def area_rectangle(a,b):

area3=float(a*b);

print("Area of rectangle is:",area3)

def area_triangle(x,y):

area4=float((x*y)/2);

print("Area of triangle is:",area4)

def peri_square(a):

peri1=float(4*a);

print("Perimeter of square is:",peri1)

def peri_circle(r):

peri2=float(2*3.14*r);

print("Perimter of circle is:",peri2)

def peri_triangle(a,b):

hypotenuse=float(math.sqrt(a*a+b*b))

peri3=float(a+b+hypotenuse)

print("Perimter of right angled triangle is:",peri3)

def peri_rectangle(a,b):

peri4=float(2*(a+b))

print("Perimter of rectangle is:",peri4)

side=float(input("enter the side of square:"))

area_square(side)

print()

peri_square(side)

radius=float(input("enter the radius of circle:"))

area_circle(radius)

peri_circle(radius)

length=float(input("enter the length of rectangle:"))

breadth=float(input("enter the breadth of rectangle:"))

area_rectangle(length,breadth)

peri_rectangle(length,breadth)

base=float(input("enter the base of right angled triangle:"))

height=float(input("enter the height of right angled triangle:"))

area_triangle(base,height)

peri_triangle(base,height)

  • 1 answers

Account Deleted 1 year, 2 months ago

Focus in school class itself and practice some coding If u want to pursue ip in future u should join geeksforgeeks to excel in it otherwise just do what is in ur syllabus
  • 1 answers

Bhumika B 1 year, 5 months ago

Unsolved question of ch 6 dictionary question no 16 answer
  • 0 answers
  • 1 answers

Heemanshu Pandey 1 year, 7 months ago

Python is a high level language. Your class Teacher will give more information about this because it is in the syllabus.

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App