-
Malarvizhi M wrote a new item 2 years, 8 months ago
Yes, we can insert a video from the device and also from online to a presentation. Follow the below step to insert a video: Open the file and go to that slide where you want to insert a video. Navigate to […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
A motion path is a method of moving objects on a slide. PowerPoint allows its users to add motion to an object in the slide. You can add motion to an object from the Animation tab by selecting an o […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
PowerPoint is a tool of Microsoft that is used to make presentations. It contains slides to present the data. With the help of MS PowerPoint tool, you can represent your idea or plan virtually using text, video, […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
List Lists are Mutable datatype. Lists consume more memory The list is better for performing operations, such as insertion and deletion. The implication of iterations is Time-consuming Tuple Tuples […]
-
Malarvizhi M started the topic Differentiate between List and Tuple in the forum Python 2 years, 8 months ago
List:
◇Lists are Mutable datatype.
◇Lists consume more memory
◇The list is better for performing operations, such as insertion and deletion.
◇The implication of iterations is Time-consumingTuple:
◇Tuples are Immutable datatype.
◇Tuple consumes less memory as compared to the list
◇A Tuple data type is appropriate for accessing the elements
◇The…[Read more] -
Malarvizhi M wrote a new item 2 years, 8 months ago
What is the final class
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is composition
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is this keyword in java
-
Malarvizhi M wrote a new item 2 years, 8 months ago
How many types of constructors are used in Java
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is an object
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is the purpose of static methods and variables
-
Malarvizhi M wrote a new item 2 years, 8 months ago
List the features of Java Programming language
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Multi-line comments appear in more than one line. All the lines to be commented are to be prefixed by a #. You can also a very good shortcut method to comment multiple lines. All you need to do is hold the ct […]
-
Malarvizhi M started the topic lambda function in the forum Python 2 years, 8 months ago
An anonymous function is known as a lambda function. This function can have any number of parameters but, can have just one statement.
Example:
a = lambda x,y : x+y
print(a(5, 6))Output:
11 -
Malarvizhi M started the topic functions in Python in the forum Python 2 years, 8 months ago
A function is a block of code which is executed only when it is called. To define a Python function, the def keyword is used.
Example:
def Newfunc():
print(“Hi, Welcome to Edureka”)
Newfunc(); #calling the functionOutput:
Hi, Welcome to Edureka -
Malarvizhi M started the topic Keywords in Python in the forum Python 2 years, 8 months ago
Keywords in python are reserved words that have special meaning.They are generally used to define type of variables. Keywords cannot be used for variable or function names. There are following 33 keywords in python-
♡And
♡Or
♡Not
♡If
♡Elif
♡Else
♡For
♡While
♡Break
♡ As
♡Def
♡Lambda
♡Pa…[Read more] -
Malarvizhi M started the topic local variables and global variables in Python in the forum Python 2 years, 8 months ago
Global Variables:
Variables declared outside a function or in global space are called global variables. These variables can be accessed by any function in the program.
Local Variables:
Any variable declared inside a function is known as a local variable. This variable is present in the local space and not in the global space.
Example:
a=2
def…[Read more] -
Malarvizhi M started the topic type conversion in Python in the forum Python 2 years, 8 months ago
Type conversion refers to the conversion of one data type into another.
◇int() – converts any data type into integer type
◇float() – converts any data type into float type
◇ord() – converts characters into integer
◇hex() – converts integers to hexadecimal
◇oct() – converts integer to octal
◇tuple() – This function is used to convert to a tu…[Read more]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is type conversion in Python
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What are local variables and global variables in Python
- Load More
