Search
Questions in computers-and-technology
[Answered] Which of the following attack signatures can open backdoors in a system, providing administrative controls to an outsider if not detected? A. Context-based signature B. Atomic signature C. Composite signature D. Content-based signature
[Answered] Listen Which is the correct formula to add the values in cells A1 and B1? A) = SUMA1 + B1 B) A1 + B1 C) SUM(A1 + B1) D) = SUM(A1 + B1)
[Answered] The binary numbering system uses only two symbols, the digits 0 and 1, to represent possible numbers. True False Pipelining increases the number of machine cycles completed per second.
[Answered] Consider the following grid of integer points in the plane: P_{ij} = (i, j), 0 ≤ i, j ≤ 4. We wish to represent this grid of points as a list of tuples. The name of the list should be 'points'. Each element of the list should be a tuple of the form (x, y). The first element of the tuple is the x-coordinate (horizontal) of the point, the second is the y-coordinate (vertical). We have employed the standard Cartesian coordinate system. Select all the correct implementations of this program. (MSQ) 1. points = [] for x in range(0, 5): for y in range(0, 5): (x, y) 2. points = [] for x in range(0, 5): for y in range(0, 5): ([x, y]) 3. points = () for x in range(0, 5): for y in range(0, 5): ((x, y)) 4. points = [] for x in range(0, 5): for y in range(0, 5): ((x, y))
[Answered] When two cells are merged, the contents will present the data of which cell? A. Only the First Cell B. Only Second Cell C. Both cells' data will merge D. Both cells' data will disappear
[Answered] 1. What is the main goal of image editing? A. To delete old photos B. To store images C. To alter or enhance digital or traditional images D. To print images 2. Which of the following describes a visual representation of something, like a photograph or drawing? A. Text B. Image C. Sound D. Video 3. What is the term for removing unwanted outer parts of an image? A. Resizing B. Sharpening C. Cropping D. Softening 4. If your photo looks a bit blurry and you want to make the details stand out more, which basic editing technique would you use? A. Softening B. Resizing C. Sharpening D. Correcting 5. Which process involves making an image file smaller for easier storage or sharing? A. Cropping B. Sharpening C. Compression D. Correcting
[Answered] A name is read from input into name_input. String name_input is output, followed by my_coworkers by adding tab characters (\t) so that my_coworkers is separated by a tab instead of a space. Ex: If the input is Huy, then the output is: Huy\tZak\tPal\tEve\tIra\tKim ```python name_input = input() # Modify the string literal below my_coworkers = "Zak Pal Eve Ira Kim" print(name_input, end="\t") print(my_coworkers.replace(' ', '\t')) ```
[Answered] Is a function introduced at the level of a module considered a variable?
[Answered] When creating a custom theme color in PowerPoint, which of the following should you select first? A. Text Color B. Accent Colors C. Background Color D. Placeholder Objects
[Answered] b) The database design has three tables to store the classes that students attend. STUDENT (StudentID, FirstName, LastName, Year, TutorGroup) CLASS (ClassID, Subject) CLASS-GROUP (StudentID, ClassID) Primary keys are not shown. There is a one-to-many relationship between CLASS and CLASS-GROUP. i) Describe how this relationship is implemented. [2] ii) Describe the relationship between CLASS-GROUP and STUDENT. [1] iii) Write an SQL script to display the StudentID and FirstName of all students who are in the tutor group 10B. Display the list in alphabetical order of LastName. [4] iv) Write an SQL script to display the LastName of all students who attend the class whose ClassID is CS1. [4]
« Prev
1
...
23
24
25
26
27
...
45
Next »