SEARCH
🇬🇧
MEM
O
RY
.COM
4.37.48
Guest
Log In
Â
Homepage
0
0
0
0
0
Create Course
Courses
Last Played
Dashboard
Notifications
Classrooms
Folders
Exams
Custom Exams
Help
Leaderboard
Shop
Awards
Forum
Friends
Subjects
Dark mode
User ID: 999999
Version: 4.37.48
www.memory.com
You are in browse mode. You must login to use
MEM
O
RY
  Log in to start
Index
 »Â
Computer science
 »Â
Programming
 »Â
Operators
level: Operators
Questions and Answers List
level questions: Operators
Question
Answer
Symbols that tell the compiler or interpreter to perform specific mathematical, relational or logical operations are called?
Operators
MOD gives the _______ of an integer division.
Remainder
Operators that help us take decisions based on certain conditions are called?
Logical operators
Operators which produce Boolean results, which means the result will be either true or false are called?
Relational operators
Which operator demands both the input as integers?
MOD
Can we use float datatype for MOD operation?
No
Which operator compares the values of operands and produces logical value?
Relational operator
Which operator is used to perform binary level operations?
Bitwise operator
What is called the variable declared outside all the functions?
Global variable
What is the size of a character variable?
1 byte
In expression a=b, if the value of 'b' changes later, does it affect the value of 'a'?
No