1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
adoni [48]
4 years ago
10

In Unified Modeling Language (UML) Class diagrams, a Class is represented by a rectangle. True or False True False

Computers and Technology
1 answer:
Dennis_Churaev [7]4 years ago
6 0

Answer:

or

Explanation: idk

You might be interested in
Which of these benefits can be achieved whensoftware is restructured?
Ivenika [448]

Answer:

iv. all of the given options

Explanation:

This is the correct answer because this is what happens when software is restructured.

<em>PLEASE</em><em> </em><em>DO MARK</em><em> </em><em>ME AS</em><em> </em><em>BRAINLIEST</em><em> </em><em>IF</em><em> </em><em>MY ANSWER</em><em> </em><em>IS HELPFUL</em><em> </em><em>;</em><em>)</em><em> </em>

4 0
4 years ago
What was the first general purpose, programmable, electronic computer?.
ryzh [129]

Answer:

ENIAC: first general-purpose electronic computer.

Explanation:

6 0
3 years ago
Create a linked list for library patrons. Put at least 8 patrons in the list. (You should hard code this data.) Ask for a person
Evgesh-ka [11]

Answer:

Explanation:

#include <bits/stdc++.h>

using namespace std;

/* Link list node */

class Node

{

public:

string Name;

long Library_card_number;

string Street;

string City;

long Zip;

Node* next;

};

/* Given a reference (pointer to pointer) to the head

of a list and an int, push a new node on the front

of the list. */

void push(Node** head_ref,string name,long lcn,string street,string city,long zip)

{

/* allocate node */

Node* new_node = new Node();

/* put in the key */

new_node->Name = name;

new_node->Library_card_number = lcn;

new_node->Street = street;

new_node->City = city;

new_node->Zip = zip;

/* link the old list off the new node */

new_node->next = (*head_ref);

/* move the head to point to the new node */

(*head_ref) = new_node;

}

/* Checks whether the value x is present in linked list */

Node* search(Node* head, string x)

{

Node* current = head; // Initialize current

while (current != NULL)

{

if (current->Name == x)

return current;

current = current->next;

}

return NULL;

}

/* Driver program to test count function*/

int main()

{

/* Start with the empty list */

Node* head = NULL;

int x = 21;

/* Use push() to construct below list

14->21->11->30->10 */

push(&head, "Joe",1,"hippy Street","Bay area",2009);

push(&head, "Marie",2,"lippy street","san jose",2010);

push(&head, "Harry",3,"gippy Street","Bay area",2009);

push(&head, "Ashish",4,"dippy street","san jose",2010);

push(&head, "Zuck",5,"sippy Street","Bay area",2009);

push(&head, "Gates",6,"kippy street","san jose",2010);

push(&head, "Page",7,"pippy Street","Bay area",2009);

push(&head, "Brin",8,"dippy street","san jose",2010);

string name;

cout<<"Enter name of the person to search: ";

cin>>name;

Node* z = search(head,name);

if(z!=NULL){

cout<<"\nPerson found in the list"<<endl;

cout<<"Name: "<<z->Name<<endl;

cout<<"Library Card Number: "<<z->Library_card_number<<endl;

cout<<"Street: "<<z->Street<<endl;

cout<<"City: "<<z->City<<endl;

cout<<"Zip: "<<z->Zip<<endl;

}else{

cout<<"No person found with the name "<<name<<endl;

}

return 0;

}

7 0
3 years ago
There’s only one game mode that stars with the letter ‘e’ in CS:GO. Which of the options below is it?
77julia77 [94]

Answer: elimination mission easy points love csgo btw

Explanation:

6 0
3 years ago
Read 2 more answers
write a mips program that runs on SPIM that allows the user to enter the number of hours, minutes and seconds and then prints ou
adell [148]

Answer:

The mips program will be as:

.MODEL SMALL

.STACK 100H

.DATA

  PROMPT_1  DB  \'Enter the time in seconds up to 65535 = $\'

  PROMPT_2  DB  0DH,0AH,\'The time in hh:mm:ss format is = $\'

  SEPARATOR DB  \' : $\'

.CODE

  MAIN PROC

    MOV AX, @DATA                ; initialize DS

    MOV DS, AX

    LEA DX, PROMPT_1             ; load and display the string PROMPT_1

    MOV AH, 9

    INT 21H

    CALL INDEC                   ; call the procedure INDEC

    PUSH AX                      ; puah AX onto the STACK

    LEA DX, PROMPT_2             ; load and display the string PROMPT_2

    MOV AH, 9

    INT 21H

    POP AX                       ; pop a value from STACK into AX

    XOR DX, DX                   ; clear DX

    MOV CX, 3600                 ; set CX=3600

    DIV CX                       ; set AX=DX:AX\\CX , DX=DX:AX%CX

    CMP AX, 10                   ; compare AX with 10

    JGE @HOURS                   ; jump to label @HOURS if AX>=10

    PUSH AX                      ; push AX onto the STACK

    MOV AX, 0                    ; set AX=0

    CALL OUTDEC                  ; call the procedure OUTDEC

    POP AX                       ; pop a value from STACK into AX

    @HOURS:                      ; jump label

    CALL OUTDEC                  ; call the procedure OUTDEC

    MOV AX, DX                   ; set AX=DX

    PUSH AX                      ; push AX onto the STACK

    LEA DX, SEPARATOR            ; load and display the string SEPARATOR

    MOV AH, 9

    INT 21H

    POP AX                       ; pop a value from STACK into AX

    XOR DX, DX                   ; clear DX

    MOV CX, 60                   ; set CX=60

    DIV CX                       ; set AX=DX:AX\\CX , DX=DX:AX%CX

    CMP AX, 10                   ; compare AX with 10

    JGE @MINUTES                 ; jump to label @MINUTES if AX>=10

    PUSH AX                      ; push AX onto the STACK

    MOV AX, 0                    ; set AX=0

    CALL OUTDEC                  ; call the procedure OUTDEC

    POP AX                       ; pop a value from STACK into AX

    @MINUTES:                    ; jump label

    CALL OUTDEC                  ; call the procedure OUTDEC

    MOV BX, DX                   ; set BX=DX

    LEA DX, SEPARATOR            ; load and display the string SEPARATOR

    MOV AH, 9

    INT 21H

    MOV AX, BX                   ; set AX=BX

    CMP AX, 10                   ; compare AX with 10  

    JGE @SECONDS                 ; jump to label @SECONDS if AX>=10

    PUSH AX                      ; push AX onto the STACK  

   MOV AX, 0                    ; set AX=0

    CALL OUTDEC                  ; call the procedure OUTDEC

    POP AX                       ; pop a value from STACK into AX

    @SECONDS:                    ; jump label

    CALL OUTDEC                  ; call the procedure OUTDEC

   MOV AH, 4CH                  ; return control to DOS

    INT 21H

  MAIN ENDP

7 0
3 years ago
Other questions:
  • The strength of the electromagnetic waves being radiated from an antenna is referred to as gain, which involves a measurement of
    9·1 answer
  • Ou are a web page designer and you set up a page with five different links. a user of the page can click on one of the links or
    10·1 answer
  • How to find determinant of ​
    15·1 answer
  • The ___________ button represents the start of a hyperlink in Table of contents.
    7·1 answer
  • Help
    13·1 answer
  • Haigy Paigy is as a children's invented language which sounds exactly like English, except that "aig" is inserted before the vow
    12·1 answer
  • 1) APPLICATION BASED QUESTION:-
    5·1 answer
  • Adobe gives away the Acrobat Reader to build a market for the sale of software that creates Acrobat files. This is an example of
    5·1 answer
  • P*********** is considered a serious social problem justify this statement​
    15·2 answers
  • When a file is used by a program, there are three steps that must be taken:
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!