IdeasCuriosas - Every Question Deserves an Answer Logo

Questions in computers-and-technology

[Answered] Which communication channel can you use to send quick, informal messages to family or friends? A. Phone call B. Work email C. Text message D. Office meeting

[Answered] Imagine your future in the next 10 years, particularly related to AI, and write a letter or email to yourself, outlining what you want to see in the future or what you want to remind yourself of.

[Answered] Anmol maintains a database of Medicines for his pharmacy using SQL to store the data. The structure of the table PHARMA is as follows: Name of the table – PHARMA Attributes: MID - numeric MNAME - character of size 20 PRICE - numeric UNITS - numeric EXPIRY - date Table: PHARMA | MID | MNAME | PRICE | UNITS | EXPIRY | |-----|------------|-------|-------|-----------| | M1 | PARACETAMOL| 12 | 120 | 2022-12-25| | M2 | CETRIZINE | 6 | 125 | 2022-10-12| | M3 | METFORMIN | 14 | 150 | 2022-05-23| | M4 | VITAMIN B-6| 12 | 120 | 2022-07-01| | M5 | VITAMIN D3 | 25 | 150 | 2022-06-30| | M6 | TELMISARTAN| 22 | 115 | 2022-02-25| (a) Write the degree and cardinality of the table PHARMA. (b) Identify the attribute best suitable to be declared as a primary key. (c) Anmol has received a new medicine to be added into his stock, but he does not know the number of UNITS. The rest of the values are: | MID | MNAME | PRICE | UNITS | EXPIRY | |-----|-----------|-------|-------|-----------| | M7 | SUCRALFATE| 17 | | 2022-03-20| Write the SQL command to add this medicine without the UNITS value. (d) Anmol wants to change the name of the attribute UNITS to QUANTITY in the table PHARMA. Which command will he use? (i) UPDATE (ii) DROP TABLE (iii) CREATE TABLE (iv) ALTER TABLE (e) Anmol wants to increase the PRICE of all medicines by 5. Which command will he use? (i) UPDATE SET (ii) INCREASE BY (iii) ALTER TABLE (iv) INSERT INTO

[Answered] What numbers are included in the binary number system? A. $1-9$ B. $1-7$ C. $0-1$ D. $0-8$

[Answered] Which one is a browser? A. ChatGPT B. Chrome C. Brade D. Google

[Answered] In Internet terms, what is an "avatar"? A. Yahoo's Logo B. Online Image Or Representation Of Person C. Personal Profile Of ID D. Smiley Face

[Answered] 1. An electric device delivers a current of [tex]$15.0 A$[/tex] for 30 seconds. How many electrons flow through it? 2. Which best explains why Irving sets "The Adventure of the Mysterious Stranger" in a land of "masks and gondolas"? A. The setting is symbolic of the idea that a life of quiet study is the ideal pursuit. B. The setting is symbolic of the idea that innocence cannot be outgrown. C. The setting is symbolic of the idea that ease and affluence are available to all. D. The setting is symbolic of the idea that appearances can be deceiving. 3. Read the lines from 'The Tide Rises, The Tide Falls.' "Darkness settles on roofs and walls, But the sea, the sea in darkness calls;" The imagery in these lines evokes a sense of A. laziness B. fear C. mystery D. despair 4. Solve for x. 3x = 6x - 2 5. Read and choose the option with the regular verb in the imperfect tense. A. Tú leías hechizos. B. Tú hablaste con la maestra. C. Tú usaste un huso. D. Tú vas al parque. 6. Alguien puede traducirlo?: What's the fastest animal in the world? 7. What are the four objectives of planning for security? (a) Be confident, be vigilante and be quick (b) Identify, design, test and monitor (c) Test, purchase, view and discuss 8. Individual networks may be affected by DoS attacks without being direct. (a) True (b) False

[Answered] Which statements about API Management are true? There are three correct answers. 1. It is not a capability of SAP Integration Suite. 2. It provides flow steps to map and transform messages. 3. It provides a central API catalog - API Business Hub Enterprise for application developers that lists APIs from SAP API Gateway. 4. It helps API developers to manage, monitor, and engage with app developers in a low-code manner. 5. It enables you to discover APIs by connecting to cloud or on-premise backends.

[Answered] Answer the following: (a) Give four examples of programming languages. (b) Write the full form of the following: IDE BASIC BEDMAS (c) What is the use of the END statement in QBasic? (d) What is debugging? (e) Which statement in QBasic is not executed and ignored? (f) Which relational operator is used to check equality? (g) Which function key is used to run a program in QBasic? Write True or False: (a) Computer is an electronic device. (b) Pen drive is an input device used to enter data. (c) The person who uses a computer is called a programmer.

[Answered] Write a program to find whether the given number is odd or even (Prolog).