what are the functions of language in logic?​

Answers

Answer 1

Answer:

Three basic functions of language: Informative, Expressive, and Directive Language

Informative language. Simply put, informative language can be looked at as though it is either right or wrong, or true or falseExpressive languageDirective language


Related Questions

explain the working principle of computer? can anyone tell​

Answers

Answer:

input process and output hehe

Fasilitas untuk pengaturan batas kertas pada Microsoft Word adalah….

a. Margin
b. View
c. LayOut
d. Paragraph

Office 92 sering disebut juga dengan….

a. Office 3.0
b. Office 7.0
c. Office Xp
d. Office 2.0


Answers

Fasilitas untuk pengaturan batas kertas pada Microsoft Word adalah

B.View

Office 92 sering disebut juga dengan

A.Office 3.0

e) Point out the errors( if any) and correct them:-
class simple
{
inta,b,c;
double sumNumber
{
int d = a + b + c;
double e = d/5.6;
return e;
}
void show Number()
{
a = 10, b = 20, c=5;
System.out.println(d);
double f = sumNumber(a,b,c);
System.out.print(e);
}
}​

Answers

Explanation:

double e-d/5.6;is wrong it should return to c

What do you do if your computer dies/malfunctions? Reboot (Restart) Shut Down Recovery CD and Recover your system Call a person to fix it​

Answers

Answer:

Restart

Explanation:

Simply I may restart my pc if it dies/malfunctions. I'll not restart immediately, I'll wait for an hour and do restart my computer. If it doesn't work then maybe I'll Call a person to fix it.

Write a program that asks the user to enter in a username and then examines that username to make sure it complies with the rules above. Here's a sample running of the program - note that you want to keep prompting the user until they supply you with a valid username:

Answers

user_in = input ("Please enter your username: " )

if user_in in "0123456789":

print ("Username cannot contain numbers")

elif user_in in "?":

print ("Username cannot continue special character")

else:

print (" Welcome to your ghetto, {0}! ".format(user_in))

Write a program that randomly chooses among three different colors for displaying text on the screen. Use a loop to display 20 lines of text, each with a randomly chosen color. The probabilities for each color are to be as follows: white 30%, blue 10%, green 60%. Suggestion: Generate a random integer between 0 and 9. If the resulting integer falls in the range 0 to 2 (inclusive), choose white. If the integer equals to 3, choose blue. If the integer falls in the range 4 to 9 (inclusive), choose green. Test your program by running it ten times, each time observing whether the distribution of line colors appears to match the required probabilities.

Answers

INCLUDE Irvine32.inc

.data

msgIntro  byte "This is Your Name's fourth assembly extra credit program. Will randomly",0dh,0ah

        byte "choose between three different colors for displaying twenty lines of text,",0dh,0ah

        byte "each with a randomly chosen color. The color probabilities are as follows:",0dh,0ah

        byte "White=30%,Blue=10%,Green=60%.",0dh,0ah,0

msgOutput byte "Text printed with one of 3 randomly chosen colors",0

.code

main PROC

;

//Intro Message

      mov edx,OFFSET msgIntro  ;intro message into edx

      call WriteString         ;display msgIntro

      call Crlf                ;endl

      call WaitMsg             ;pause message

      call Clrscr              ;clear screen

      call Randomize           ;seed the random number generator

      mov edx, OFFSET msgOutput;line of text

      mov ecx, 20              ;counter (lines of text)

      L1:;//(Loop - Display Text 20 Times)

      call setRanColor         ;calls random color procedure

      call SetTextColor        ;calls the SetTextColor from library

      call WriteString         ;display line of text

      call Crlf                ;endl

      loop L1

exit

main ENDP

;--

setRanColor PROC

;

; Selects a color with the following probabilities:

; White = 30%, Blue = 10%, Green = 60%.

; Receives: nothing

; Returns: EAX = color chosen

;--

      mov eax, 10              ;range of random numbers (0-9)

      call RandomRange         ;EAX = Random Number

      .IF eax >= 4          ;if number is 4-9 (60%)

      mov eax, green           ;set text green

      .ELSEIF eax == 3         ;if number is 3 (10%)

      mov eax, blue            ;set text blue

      .ELSE                    ;number is 0-2 (30%)

      mov eax, white           ;set text white

      .ENDIF                   ;end statement

      ret

setRanColor ENDP

What are some 5 constraints in using multimedia in teaching​

Answers

Answer:

Explanation:

Technological resources, both hardware and software

Technological skills, for both the students and teacher

Time required to plan, design, develop, and evaluate multimedia activities

Production of multimedia is more expensive than others because it is made up of more than one medium.

Production of multimedia requires an electronic device, which may be relatively expensive.

Multimedia requires electricity to run, which adds to the cost of its use

There are constraints in using multimedia in teaching​; The Technological resources, both hardware and software Also, Technological skills, for both the students and teacher

What is a characteristic of multimedia?

A Multimedia system has four characteristics and they are use to deliver the content as well as the functionality.

The Multimedia system should be be computer controlled. The interface is interactive for their presentation and lastly the information should be in digital.

There are constraints in using multimedia in teaching​;

The Technological resources, both hardware and software

Also, Technological skills, for both the students and teacher

Since Time required to plan, design, develop, and evaluate multimedia activities

The Production of multimedia is more expensive than others because it is made up of more than one medium.

The Production of multimedia requires an electronic device, which may be relatively expensive.

The Multimedia requires electricity to run, which adds to the cost of its use.

Learn more about multimedia here;

https://brainly.com/question/9774236

#SPJ2

Code Example 17-1 class PayCalculator { private: int wages; public: PayCalculator& calculate_wages(double hours, double wages) { this->wages = hours * wages; return *this; } double get_wages() { return wages; } }; (Refer to Code Example 17-1.) What coding technique is illustrated by the following code? PayCalculator calc; double pay = calc.calculate_wages(40, 20.5).get_wages(); a. self-referencing b. function chaining c. dereferencing d. class chaining

Answers

Answer:

The answer is "Option b".

Explanation:

Function chaining is shown by this code, as the functions are called one after the other with one statement. Whenever you want to call a series of methods through an object, that technique is beneficial. Just because of that, you may give the same effect with less code and have a single given value only at top of the leash of operations.

2. Which property is used for hiding text of the textbox?
a) Password Char b) Text Char c) Char Password d) Pass Char

Answers

Answer:

password char

Explanation:

The password char property allows the text being written in the textbox to be hidden in the form of dots or stars. As such the user entering the password is secure, as no one nearby can know the password by watching the texts.

tinh S(n) = 1+2+3+.....+n

Answers

Answer:

-1/12

Explanation:

[tex]\sum_{k=0}^{k=n} k = \frac{n(n+1)}{2}\\[/tex]

look up the derivation by Srinivasa Ramanujan for a formal proof.

3. Using Assume the following list of keys: 36, 55, 89, 95, 65, 75, 13, 62, 86, 9, 23, 74, 2, 100, 98 This list is to be sorted using the quick sort algorithm as discussed in this chapter. Use pivot as the middle element of the list. a. Give the resulting list after one call to the function partition. b. What is the size of the list that the function partition partitioned

Answers

Answer:

a. 36, 55, 13, 9, 23, 2, 62, 86, 95, 65,74, 75, 100, 98, 89

b. 15

Explanation:

How to use the AI System ?

Answers

ANSWER:

· New artificial intelligence systems are being developed to help teachers administer more effective testing that could uncover some of these often-hidden conditions. Once they can be properly identified, educators can tap into the resources available for a learning disability. Students can use AI to give reliable feedback.

Neymar machine that Run on electricity

Answers

"Neymar" = "name a"?

if so, well, there are many, like the little glowing box you use the type questions to the brainliest community, let it be a phone, a pc, or a molded Nintendo

if you meant Neymar indeed, I'm not sure if he runs on electricity, unless he is a soccer playing android somehow.

Other Questions
Theodore recently hired a contractor to do some necessary work. On the final bill, Theodore was charged a total of $715. $315 was listed for parts and the rest for labor. If the hourly rate for labor was $50, how many hours of labor was needed to complete the job? Why I Like Chocolate(1) There are many reasons why I like chocolate. (2) The first reason is that it tastes amazing. (3) Many people all over the world love chocolate and say that it is delicious. (4) Another reason why I like chocolate is that I can make other treats with it. (5) Chocolate pie, truffles, chocolate covered strawberries, and toffee are just a few of the treats that can be made with chocolate. (6) Finally, I like chocolate because it is good for your body. (7) I read many articles that say that dark chocolate is good for your heart. (8) The above reasons are just a few of the many reasons why I like chocolate.Identify the support detail for the third main point. i love pets in a complex sentence Can anyone please help? The correlation coefficient, r, between the prices of smartphones, x, and the number of sales of phones, y, equals 0.63.Select the statement which best describes the relationship between the price and sales.The value of r indicates that the number of sales decreases as the price decreases.The value of r indicates that the number of sales decreases as the price stays the same.The value of r indicates that the number of sales decreases as the price increases.The value of r indicates that the number of sales is not related to the price.I think its (C): The value of r indicates that the number of sales decreases as the price increases. Which artist photographed the above images? What did he pioneer?Name the series of photographs above, and its significance. What is the verbs and adverbs in this passage please help a) Un edificio proyecta una sombra de 15 m de largo. Al mismo tiempo, un nio de 1.15 m de alto proyecta una sombra de 3.75 m de largo. Qu altura tiene el edificio? Dibuja y realiza las operaciones correspondientes para obtener la respuesta correcta. Two heterozygous dominant parents for attached earlobes are crossed to predict the traits of their offspring. What is the ratio of attached earlobes to unattached earlobes in their offspring? A - 3:1B - 1:3C - 2:2D - 4:0 31. The/they/get/had/off/before/of/the/turn/light/office/out Ruth is touring New York City with her family. They want to visit the Empire State Building, Central Park, and Times Square before their dinner reservations at 7:10 P.M. They want to spend 1 hour and 25 minutes at the Empire State Building, 2 hours and 5 minutes in Central Park, and 50 minutes in Times Square. What is the latest time Ruth's family can start their tour in order to make it to dinner on time?Pls help :) 9)Using appropriate properties , find 7551231275115 18. If the ratio of males to females in eachof two different mathematics classesis 5 to 4, is the ratio of males tofemales still 5 to 4 if the classes wereconsidered as one large class insteadof two smaller classes?Ra A test tube can be used to holdAmore concentrated solutions than a beaker holds.Blarger amounts of chemicals than a beaker holds.Csmaller amounts of chemicals than a beaker holds.Dless dangerous substances than a beaker holds. Presented below are definitions of certain terms. Select the appropriate term from the dropdown list. Definitions 1. Quantity of input required if a production process is 100% efficient. 2. Managing by focusing on large differences from standard costs. 3. Record that accumulates standard cost information. 4. Preset cost for delivering a product or service under normal conditions. a. Standard cost card b. Management by exception c. Standard cost d. Ideal standard Which subjects at school do you find interesting and motivating? What makes them so? HELP PLEASEi would really appreciate if someone answered this correctly! 2.Lucy shares 42 marbles between her and her 6 friends. How many does each child? 5+64this is TOTALLY SOOOO hard so help me^thats what she said