Search results for '' in Knowledge

We've found '41155' results.

Solved programs for Python

It will give a basic idea of python programming and relate with other programming languages.

Fluid mechanics important questions Unit 1

This document contains all the important questions for last minute exam preparations from UNIT-1 of the paper fluid mechanics and machinery. All the topics are in question answer pattern and are based on exam point of view.

Ct2 program ing in srm university

Programing in ct2 srm university

American Well Case solution

American Well Case solution

Numerical control

Notes for course mechanical and subject production available here. The document attached below includes notes on the topics Fundamentals of NC Technology, Computer Numerical Control, Distributed Numerical Control, Applications of NC, etc. #VIT Chennai

Python Booleans

Python BooleansBooleans represent one of two values: True or False.Boolean ValuesIn programming you often need to know if an expression is True or False.You can evaluate any expression in Python, and get one of two answers, True or False.When you compare two values, the expression is evaluated and Python returns the Boolean answer:Example print(10 > 9)print(10 == 9)print(10 < 9) When you run a condition in an if statement, Python returns True or False:ExamplePrint a message based on whether the condition is True or False: a = 200b = 33if b > a: print("b is greater than a") else: print("b is not greater than a") Evaluate Values and VariablesThe bool() function allows you to evaluate any value, and give you True or False in return,ExampleEvaluate a string and a number: print(bool("Hello"))print(bool(15)) ExampleEvaluate two variables: x = "Hello"y = 15print(bool(x))print(bool(y))

Comparison between AC & DC Transmission

Below attached are the notes for the course electronics, subject (Tele)Communications. The document below contains content about Comparison between AC & DC Transmission. #KIIT University

Fm ORIFICES AND MOUTHPIECES 3 sem

Fm ORIFICES AND MOUTHPIECES 3 sem

pulse amplitude modulation

experiment to study pulse amplitude modulation

Python Program To Convert Binary To Decimal

def binaryToDecimal(n):     num = n;     dec_value = 0;       # value to 1, i.e 2^0     base = 1;            temp = num;     while(temp):         last_digit = temp % 10;         temp = int(temp / 10);                    dec_value += last_digit * base;         base = base*2;     return dec_value;   num = 10101001; print(binaryToDecimal(num));

IM20 4Sem Oligopoly Revision R3, R4, R5

This PDF file contains the scanned copy of OLIGOPOLY (REVISION) for second year students of Economics Honors of Delhi University 4th semester.

PRODUCT & BRANDING

PRODUCT & BRANDING

CUMULATIVE BINOMIAL PROBABILITIES

This PDF file contains the scanned copy of CUMULATIVE BINOMIAL PROBABILITIES for second year students of Economics Honors of Delhi University 4th semester.

Political THEORY

These are the notes you can refer to of the Delhi University.

Hydraulics used in cars

Students studying Mechanical can get access to notes here. Available are the notes for Automotive. Topics discussed in the attachment are The vane pump, The axial piston pump with rotating barrel, The internal radial piston motor, etc. #VIT Chennai