Answer:
b) uppercase for variable names, and lowercase for constants and functions
Explanation:
Given
Programming language: prolog
Required
The case type for variables, constants and functions
In prolog,
Variable names begin with uppercase
e.g. Name, NAME
While constants and functions begin with lowercase
e.g. name, addnumbers()
<em>Hence, (b) is correct</em>
Answer:
i say hexadecimals
Explanation:
The hexadecimal numeral system, often shortened to "hex", is a numeral system made up of 16 symbols (base 16). The standard numeral system is called decimal (base 10) and uses ten symbols: 0,1,2,3,4,5,6,7,8,9. Hexadecimal uses the decimal numbers and six extra symbols.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This question has two option, and this question is asked about how study group working effectively.
A group has agreed to meet twice a week to study for an upcoming test. However, the study group has irregular attendance because some members skip sessions without notice.
This option does not fulfill the objective of the study group working effectively. Because, in this option some members are irregular and skip sessions without notice which does not the objective of study group working effectively.
During the study sessions, the attending group members discuss each other's class notes, ask each other open-
ended questions, drill each other on concepts, and come up with possible test questions. structuring their study sessions well using good listenings is having thoughtful discussions sharing their notes freely with each other showing a commitment to the group.
This option fulfills the objective of studying in a group. This option is correct and it matches with studying in a group effectively.
Program to display greater number:
#include <iostream> <em>// Needed to perform IO operations </em>
#include<conio.h> <em> // header file</em>
using namespace std;
int main() //start of the program
{
int a , b =0; //initialising the two integer variable
cout<< "Enter first number"<<endl;
cin >> a; //user's first number
cout<< "Enter second number"<<endl;
cin >> b; //user's second number
if (a>b) //comparing the two integers input by user
cout<< a << "is greater than" << b; //display the greater number
else
cout<< b << "is greater than" << a;
return 0; // exist
}
Answer:
The term information cycle refers to the way information is processed and distributed and how it changes over time. It is usually used to describe the progression of media coverage relating to a particular newsworthy event or topic during which information goes through various stages of reporting and publication.