Home
Ask directory
AP CS
August 2024
2
AP CS
Q&A Archive of
August 2, 2024
Select Question
August 2 of 2024
Match the list style markers with the appropriate list-style-type CSS property values: Prompts (1) disc (2) circle (3) square (4) decimal (5) upper-alpha (6) lower-alpha (7) upper-roman (8) lower-roman Answers \( \qquad \) \( \qquad \) \( \square \) \( 1,2,3, \ldots \) I, II, III, IV, ... A,ā¦
Collects and distributes the flow of data within the network and uses MAC address for data transmission
Imagine you are returning home after a tiring day at the office and you are robbed while taking a short cut through a lane. Describe the incident. Descriptive writing
(5) Use Dijkstra's Shertest Path Algorithun To find The shortest path from \( A T_{0} G \) in the graph
Geography
(g) \( \frac{1}{4} \geq \frac{2}{8} \) (h) \( \frac{6}{10} \sum \frac{4}{5} \) (i) \( \frac{3}{4} \square \frac{7}{8} \) (j) \( \frac{6}{10} \measuredangle \frac{3}{5} \) (k) \( \frac{5}{7} \square \frac{15}{21} \) The following fractions represent just three different numbers. Separate thā¦
why did deepti predict that the narrator would have a tough race ahead
kahalagahan ng panlipunan
Assume we have a 20 dataset consisting of \( (0,-6),(4,4),(0,0),(-5,2) \). We wish to do k-means and \( k \) medoids clustering with \( k=2 \). We initialize the cluster centers with \( (-5,2),(0,-6) \). For this small dataset, in choosing between two equally valid exemplars for a claster inā¦
History
abs cbn news posted at dec 11 2019 itala sa concept map ang mga isyu at suliraning maiuugnay sa larawan
Given the following logic function, design a minimum three-level NAND-gate only logic circuit using four NAND gates. Which circuit below is the correct design? \[ F(A, B, C, D)=\Pi M(0,1,2,3,4,6,7,8,9,14,15) \] 1 2 3
write a letter to the editor of a daily newspaper suggestion the ways of solving garoage problems
In terms of color, what is intensity? the hue of a color the lightness or darkness of the color the mix of colors the purity of the color
136 minutes remaining 6 OF 6 QUESTIONS REMAINING Question 1 52 Points The upward velocity of a rocket can be computed by the formula below. Compute for the time \( t \) at which the velocity is \( 1100 \mathrm{~m} / \mathrm{s} \) using Bisection method if \( \mathrm{u}=2200 \mathrm{~m} /ā¦
given an array oc inyegers and integer k determjne the length of lingest valid subsequence in the array
#include <iostream> #include <vector> using namespace std; bool areAllNumbersDistinct(const vector<int>& numbers) { for (size_t i = 0; i < numbers.size(); ++i) { for (size_t j = i + 1; j < numbers.size(); ++j) { if (numbers[i] == numbers[j]) { return false; // If any two numbers are the same,ā¦
Integrate using the Tabular Method \int x^(2)e^(6x)dx 4) Integrate using the Tabular Method $$\int x^2 e^{6x} dx$$
ā Question 14 1 pts In ASL, one example of morphological aspect is the number incorporated into certain noun signs. O True False
Usage of license free open source tools will reduce the Total cost of Ownership. True or False? True False
int i; int count; int evenSum; int oddSum; i = 0; evenSum = 0; oddSum = 0; for (count = console.nextInt(); (count > 0); --count) { i = console.nextInt(); if (i < 0) { break; } if (i == 0) { continue; } if ((i % 2) == 0) { evenSum += i; } else { oddSum += i; } } and the following input values 4ā¦
1. A data analyst at a logistics company is tasked with analyzing routes and transit times for all orders. The current database of orders contains millions of rows. What tool would be most efficient for the analyst to use? Word processor SQL Spreadsheet CSV
Both SIMD and MIMD machines have multiple processors and can operate on different pieces of data in parallel. However, in SIMD, all processors must execute the same instruction at the same time, while in MIMD, each processor can execute a different instruction. True False
1. Computers that are connected within the organizations are called as a. Connected Computers b. Local Computers c. Intranet d. Wide Area Computers Network.
3 Data filters are located in which Marketing Cloud Engagement app? A Journey Builder B Ad Studio C Email Studio D Content Builder
18. A secondary option to reporting a business violation to the OCR would be: (a) Inform the EHR software company's administrator about the exposed patient information. (b) Seek advice from your organization's HIPAA Privacy Officer to address the security breach and mitigate risks. (c) Documentā¦
In database systems, a ______ refers to a list of data. field row file record
Which of the following is an infrastructure definition tool? Terraform Templates Playbooks Ruby
Focus: Testing the Emerging Trends Articles Question: Match the following terms. 10 predictive analytics [Choose] prescriptive analytics [Choose] ort 0 root cause analysis [Choose] supervised learning [Choose] unsupervised learning [Choose]
) is the branch of science concerned with making computers behave like humans. Bioinformatics Cognitive computing Artificial intelligence Expert systems
The following two expressions will always yield identical results: (a + b) / c a + b / c O True O False
Question 22 Select the term that is the best match for the description. Prompts 1) Attempts to trick people into providing personal information such as account numbers and passwords via email messages is called Answers phishing ā” A small text file passed by a web server to a web browser to beā¦
8. ______ is an individual's constitutional right to be left alone and to limit access to his or her health care information. a. Privacy b. Security c. Confidentiality d. Protection
Which of the following is an essential concept related to the cloud? Productivity All of the options Abstraction Reliability
Write an algorithm for finding the maximum element in a finite set of integers. Describe the time complexity of it?
10. What will a host on an Ethernet network do if it receives a frame with a unicast destination MAC address that does not match its own MAC address? A) It will discard the frame. B) It will forward the frame to the next host. C) It will remove the frame from the media. D) It will strip off theā¦
//call function to calculate payments creditPayment = getPayment(carPrice - rebate, creditRate / 12, term * 12); dealerPayment = getPayment(carPrice, dealerRate / 12, term*12); //assign values to calculate payments //display payments cout << fixed << setprecision(2) << endl; cout << "Creditā¦
Howard Goodall states that the notes you choose, how high or low they are and the pattern they make one after the other creates _______?
The variables, arrays, or other data structures that are stored in the object are known as the object's ______.
Peggy the pigeon must peck a key with a horizontal black line any time the sample stimulus is a red key. If Peggy uses the rule, "The sample was red," to remember the correct response to make, she is utilizing which type of coding strategy? retrospective coding Oprospective coding analogueā¦
function firstIdx = firstZeroIndex3(inputArray) % receives a 1D array of numbers and finds the index of the first zero % Author: Marae Laws % create a logical indexing array to locate all zeros in the array logArray inputArray==0 %find the locations of all zero elements allzeroLocationsā¦
What does the following Scheme expression evaluate to? (= 3 (+ 1 3)) #f code produces an error. 7 -1
Chef was initially created by -------- Adam Joplin Adam Jacob Robbins Jesse
string str = "goofy"; string newStr = ""; for (int j = 0; j < str.length(); j++) newStr = str[j] + newStr; cout << newStr << endl; The output is ______. a. goofy b. ygoof c. foogy d. yfoog
7. The emerging technology behind m-commerce is mainly the: a. Wireless Applied Protocol b. Wireless Appeal Protocol c. Wireless Application Protocol d. Wired Application Protocol.
The image shows the left pane of which of the following windows that is accessed when you update a device driver? ā System Tools > Task Scheduler > Event Viewer < < > Shared Folders Local Users and Groups Performance Device Manager Computer Management O Settings Task Manager
Q3- Imagine we have patient table like below: Patient patient id: int first_name: string last_name: string nationality: string gender: string address: string dob: date phone: int email: string Write a stored procedure to insert two rows into patient table? You can insert any values youā¦
is a phenomenon that occurs when the functions of many physical devices are included in one physical device. Digitalization ITization Convergence Dematerialization
Paul Revere was not present at the Boston Massare but created his famous etching of the event to create support for the Patriots. True False
Question 21 (T/F) The most significant bit (most left bit) Edit Format Table 12pt Paragraph B I \cup _() A T^(2) Question 21 (T/F) The most significant bit (most left bit)
The Standard Template Library (STL) contains templates for useful algorithms and data structures. A True B False Clear selection
QUESTION 16 DevSecOps (also known as SecDevOps) is a set of best practices designed to allow organizations to build a culture of secure coding within their development approach that will bring the impact of DevOps development and deployment processes to enable the secure deployment ofā¦
Question 32 Which of the following statements allocates memory in the heap? int a; int* a = NULL; a = (int*)malloc(sizeof(int)); *a = 10;
Microsoft Word is a very powerful (__)? a. Spreadsheet Program b. Text Editor c. Database Management System d. Presentational Software
9. Which classification of information systems includes expert systems and artificial neural networks? a. decision support systems b. executive information or support systems c. intelligent support system d. office automation systems
Please create a thread, using your name in the Subject line, and respond to the following: How do social networks, auctions, and portals contribute to the e-commerce ecosystem? Discuss the unique value propositions of each platform type.
4. You are working with a database table that has columns about trees, such as tree_species. Which SUBSTR function and AS command will retrieve the first 3 characters of each species name and store the result in a new column called species_ID? SUBSTR AS (tree_species 1, 3)ā¦
10. Cellular networking is also known as ____ networking. computer organic wide area mobile
In BOT Factory, BOTS can be accessed by which of the following ways? Download from GIT Using Chatbot in BOT Factory Orchestrator Using Wizard in BOT Factory Orchestrator All the above
What if K is 1? 1 point possible (graded) Now, assume that we are given with K = 1 as the number of clusters. Now, does initialization matter at all? No, because cluster assignment does not change in step 2.1 Yes, because representative selection changes in step 2.2 Submit You have used 0 of 1ā¦
QUESTION 6 Given the factorial algorithm below: factorial(n) if n == 0 return 1 else return n * factorial(n-1) a) Identify the base case. (2 points) b) Identify the recursive case. (2 points) c) Find factorial(6) by using the above algorithm. Show all steps. 6 points the toolbar, press ALT+F10ā¦
Question 15 1 pts (T/F) Although RAID4 and RAID5 both allows one hard drive disk to fail, the bandwidth of RAID5 with same number of hard drive disks is slightly higher than RAID4. O True O False
Which one of the following is a Mealy machine that recognises the sequence 0110? When such a sequence is recognised anywhere in an input string, the output should be 0001; that is, output 0 until the sequence 0110 is discovered, when a 1 should be output. Also, 0110110 contains two 0110ā¦
Match the terms on the left with their definitions on the right. Function signature [Choose] Function header [Choose] The function's return value type, function name, and parameters. Variables declared in the function header Values passed to the function The function name and the parameterā¦
What piece of the executive information system has become more vital as organizations have become increasingly geographically dispersed? (A) The communications element B) The user interface (C) The supporting software infrastructure
The third stage in Simon's description of decision-making is implementation. A True B False
Hiding the implementation of a class is called encapsulation. True False
```java package application; import javafx.application.Application; import javafx.stage.Stage; import javafx.scene.Scene; import javafx.scene.layout.BorderPane; public class Main extends Application { @Override public void start(Stage primaryStage) { try { ā¦
Which of the following statements is true if A x B = 0? B is empty, but A is non-empty A and B are non-empty and finite Either A or B is empty A is empty, but B is non-empty Both A and B are infinite
Tactical automation can Automate simple activities Automate complex processes Are smart robots that learn from humans Reset Save
What are the cloud cost models? Pay as you use All of the options Plan payment Free payment
Which of these best describes a mistake? ā When the wrong goal or plan is established, but not on purpose When someone intentionally does the wrong action When a person intends to do one action, but does another
is more secure than Container, VMware VMware, Hypervisor VMware, Container Hypervisor, VMware
A recursive function cannot call a function other than itself. True False Clear selection
A certain problem can be solved by an algorithm whose running time is in O(nlogan), is this problem tractable?
Stats Air operates a daily flight between Sydney and Melbourne that has operated for five years. Flight XZ 414 is scheduled to depart Sydney at 11:40 and arrive in Melbourne at 13:15. Flight XZ 415 is scheduled to depart Melbourne at 14:05 and arrive in Sydney at 15:40. Both flights XZ 414 andā¦
Question 9 2 pts Suppose you want to copy a formula while keeping one of the cell references locked on the same cell. Which of the following would you use? Relative reference PivotTable Absolute reference ⢠ReferenceLock
How are Quick Sort and Merge Sort similar? They both split the unsorted array in equal halves with each pass They are both divide-and-conquer, recursive algorithms They both call BubbleSort They are not related
Q.3. You are asked to design an e-reservation system for different events. Following rules will be observed for reservation. I. Don't reserve before 30 days ahead of event. II. Get more discount on early reservation III. E-cards would be acceptable for full advance payment IV. Cash payments canā¦
causes more failure than Hardware failure, Human error Human error, Hardware failure Hardware failure, Software error Software failure, Human error
Draw a Pie diagram to represent the following data: Type of Commodity Expenditure in '000 Rs. Family A Family B Food 10 8 Rent 25 36 Clothes 4 7 Education 13 16 Miscellaneous 2 4 Savings 17 33 Total 58 80
Data is oftentimes considered a defensible source of competitive advantage; however, advantages based on capabilities and data that others can acquire will be massive short lived long lasting minimal
Which of the following occur in nondeterministic finite automata (NFAs) but not in deterministic finite automata (DFAs)? (select all that apply) multiple accept states lambda transitions multiple start states undefined transitions multiple transitions from the same state with the same label
ValueError Cell In[159], line 27 Traceback (most recent call last) 22 times = np.arange(y_combine['time'].min(), y_combine['time'].max()-0.002, 0.001) 23 rsf_surv_prob = np.row_stack([ 24 25 26 ]) fn(times) for fn in rsf.predict_survival_function(x_te, return_array=False) ---> 27 rsf_brier =ā¦
The saturation pressure of water is a function of its temperature as $$P_s = 1.4405 \times 10^{-6} T^4 - 1.6092 \times 10^{-4} T^3 + 0.01536 T^2 - 0.40831 T + 5.54347$$ where the temperature is in °C and the pressure is in kPa. The phase of water can be determined depending on the waterā¦
Automation amplifies human potential to do things With increased quality With reduced effort With more effort All of the above Reset Save
Which of the following are the advantages of dynamic routing? Each correct answer represents a complete solution. Choose all that apply. A Reduced bandwidth use, as there is no excessive router traffic B Failure of routers can be detected and paths to networks modified C Easy to configure onā¦
14. ______ protect systems that utilize the Internet from intrusions and threats from outside sources. a. Antivirus software b. Backups c. Firewalls d. Patches
Instructions A Tic Tac Toe game is classical which is played in a 3 x 3 grid by two player sides, X and O. One side is won if obtains 3 in a line (including diagonal). Figure 1 shows the class diagram for the Tic Tac Toe game. Based on the class diagram given, construct a use case diagramā¦
Question 2 1 pts Which of the following element is an example of a domain name? O www. O google O .com
Part (2) Write a Java application to do the following: A. Create two objects called hero1 and hero2 from the class Hero and initializes its private members using the constructor as follows: name hp attack_pt attack_no hero1 Alex 2000 300 5 hero2 Mark 2500 200 4 B. Print the info of the winningā¦
The following are attempts at NFAs to accept strings that optionally start with + or -, follow correctly accept the intended strings? (select all that apply) none of the answers given areā¦
Which of the following refers to a strategy that is used to simplify decision-making, sometimes at the cost of logic and rationality? An anchor An algorithm A frame A heuristic
Which of the following is a measure to ensure computer security? O Decoding data O Restricting access O Performing system upgrades O Purchasing an expensive software
6) A DBMS uses _____ to create a query. O forms O schemas O SQL O dictionaries
eBay is an example of the portal business model. A True B False
outcomes? |S| = 64 b. What is the probability that it will generate 101010? 1/64 c. What is the probability that it will generate an 6-bit string that ends with 101? 1/8 d. What is the probability that it will generate an 6-bit string that has weight 4? 15/64 e. What is the probability that itā¦
Which of these is not an automation technique? Tactical Robotic Process Faster Processing None of the above Reset Save
11) Each database consists of a single table of information. O True O False
You are using data validation to make sure that the data entered in a workbook is accurate and consistent. which of the following situations can you use Data Validation? When you want to restrict the data to predefined items in a list When you want to limit the number of text characters All ofā¦
In which cloud model, several organizations access to the same cloud for a similar application? Community Private Public Hybrid
Topic 1 Assignment 14 1.66 points Problem 3-4 (Static) Designing products for aesthetics and with the user in mind is generally called what? Multiple Choice eBook Print References Fit-and-finish design Quality-first design End-user design mapping Market research Industrial design Check my work
Power BI Overview Match the six areas of Power BI with the concepts we applied in each: User Experience Data Modeling Power BI Service Power Query DAX Measures Create & Format Report Visuals A Report Interaivity B Sharing Reports C Data Visualization D Data Analysis E Data Transformation F Starā¦
Prototyping is more iterative than the systems design life cycle approach. A) True B) False
A data type defines a collection of data values but not operations that can be used for variables declared with the type. O True O False
(T/F) You are allowed to create an ArrayList and set the first element using set method: true false
Select the best answer to complete the following sentence. Who ______ my neighbours? O are O was O is O am
Question: The point where the gradient changes from one shade of the color to another is called a _____.gradient fillmotion stopgradient stopend point The point where the gradient changes from one shade of the color to another is called a _____. gradient fill motion stop gradient stop end point
Question 25 When using the __logical operator, one or both of the subexpressions must be true for the compound expression to be true (Max). A AND B NOT C MAYBE D OR 1 Point
3. Which of the following is the most common network media? A) UTP B) STP C) Coaxial D) All of the above
COPs can make it easier for people to reuse knowledge. A True B) False
A function template's prefix contains __ in angled brackets. A one or more generic data types B the function definition C constant values D the function's return type E None of the above
Problem 2: What is the difference between transport layer reliability and data link layer reliability and why do we need it?
Traditional Automation is easy for non-technical people to use - there is no code to learn. True or False? True False
In the following figure, Computers and Laptops are of what type? Computers + printinfo() Laptops RAM: int brand: string + printinfo()
are used to signal errors or unexpected events that occur while a program is running. a. Virtual functions b. Destructors c. Exceptions d. Templates e. None of the above
A view that displays a document as it would appear on a webpage. A data element that is saved with a document but does not appear in the document as it is shown onscreen or is printed.
Convolution theorem states that convolution of two spatial functions (f and h) is equivalent to the pointwise product of their respective Fourier transform (F and H). (1 Point) $$f(t) \circledast h(t) \iff H(\mu)F(\mu)$$ True False
D Question 5 When artists combine any number of techniques to achieve unique results, this is referred to as ..... Integrated Digital Art Natural Media Digital Photography Digital Collage 1 pts
(T/F) Data memory is used in all instructions. O True False
While working on a netBanking solution for a bank, a team is laying down the deliverables for its first sprint. Which of the following is a potentially shippable increment as per Scrum? Product Backlog System Architecture document Prototype Implementation Test plan Reset save
A GUI program can have only one window. True False A GUI program can have only one window. True False
IaC is frequently referred to as __________ Programmable infrastructure Infrastructure programming Infrastructure automation Automated infrastructure
The procedures that the object performs are known as The procedures that the object performs are known as ______.
Q1) [25 points] [Check ch-9 slides] Consider the following relations on {1, 2, 3}. R1 = { (1, 1), (1,2), (1, 3), (2, 2),(2,3), (3,3)} R2 = {(x, y) | x + y ā 4} (a) What is R2? R2 = (b) Which of these relations are reflexive (circle)? Justify your answers. R1: yes/no: Justification: R2: yes/no:ā¦
What does clicking the + sign below do? 195 196 197 198 199 200 Basic Intermediate Advanced + Image not displaying? Adds a new Function Adds a new Row
Count the number of functions Ļ: {-8, -7,..., -3} ā {-8, -7,..., -3} so that (i) Ļ is one-to-one and Ļ(-4) = -7 (ii) Ļ is one-to-one and Ļ(-4) ā -7
Question 12 If an exception is not caught, it is stored for later use. True False 1 Point Clear selection
Question 7 Focus: Data Science Terms and Concepts Question: Select the data mining methods that would be considered Supervised. Link Prediction Profiling Clustering Classification ⢠Previous O pts Next
Which of the following has a compound predicate? Neither Michelle nor Charlotte likes coffee. The sun was hidden by the clouds so it was not warm at all. My dog's name is Daisy, and I love her. My brother grabbed my bike and rode away.
Question 4 (1.5 points) Consider the following instruction: LWI rt, rs Interpretation: R[rt] <-MEM[R[rs]] This is similar to LW instruction with no offset. a. Which new functional blocks (if any) do we need for this instruction? By new functional block, we mean if we need new adder, newā¦
What is Machine learning? Choose the best answer. Question 14 It is the study of algorithms and mathematical models and make predictions Machine learning is same as Data Mining None of the above options Reset Save
Which of the following statements are correct about white validation? Each correct answer represents a complete solution. Choose all that apply. A It refers to every possible pattern of bad input. B It looks for inputs that are present in the proper form. C It looks for inputs that are presentā¦
A pure virtual function A a. is a virtual function that has been completely debugged B b. is a virtual function that has no implementation C c. is a virtual function that performs a single task in program D d. is one that is only called from within a virtual constructor E e. None of the above
Below is the grammar for a binary tree Bintree. Bintree ::= (0) | (Int Bintree Bintree) (True/False) Based on this definition, we can conclude that (12 () (11 (7))) is a Bintree. True False
a. what is the purpose of a date type? b. What is the AutoNumber data type used for? c. In the database table, are the fields the columns or the rows? d. Provide an example of where you might use a "Yes/No" data type.
A pantine driver is registered when he or she gets the job and information is stored in a file. He or she drives N (1<N<20) number of days in a month and recorded his or her duty time in another file. Suppose you want to define a CRC card for a class named "Dutyrecord in that case which will beā¦
To determine that a number is not in an array of 50 numbers, how many values must Linear Search examine? 0 1 0 49 0 50 0 25
A prototype of an information system A makes maintenance and modifications easier to perform B is a quickly built system which allows the developer to get feedback, then modify the system C helps define procedures that different computers follow as they transmit data D allows alternativeā¦
A person has decided to code a particular set of sales data. A value of 0 is assigned if the salesoccurred on a weekday, and a value of 1 means it happened on a weekend. This isan example of Intervallevel data Ordinallevel data Nominal level data Ratiolevel data
Watson from IBM is one of the platforms to create RPA bots False True Reset Save
Enumeration types provide a way of defining and grouping collections of name constants. True False
Q9. Is it possible to develop a GTG that can recognize the Language ODD-ODD (a language that has odd number of a's and odd number of b's) and ends in in exactly 7 b's. Explain your answer concisely and clearly.
16) A data warehouse is a central repository for all the data that an enterprise uses, including internal databases and external sources such as vendors and customers. O True O False
QUESTION 19 When using the vi text editor, which of the following keys, when in command mode, will change to insert mode and place the cursor at the end of the current line? O a. A b.i O ca Od. I
Which of the following strings will be accepted by the NFA given here? (select all that apply) c q2 b a d q1 q3 q4 b Ī»
Select correct RPA tools from below list Work fusion QTP Selenium Kapow Softomotive Reset Save
A Windows technician is configuring a new customer relationship management application. To complete the setup, the technician must push all necessary folders to a remote tearn. Which of the following tools would the technician most likely use to complete this task? Select one: ORDP O NTFS Oā¦
Find Hit ratio and average access time for one instruction for the following cache-memory system and program. Assume for a program, instructions a,b,a,c, c, d, e, e, f, g are needed. Access time for cache is 5nsec and for main memory is 10nsec. Assume initially Cache is empty and can have uptoā¦
Which of the following is not an example of a computer crime? Phishing Identity theft Authorized access Piracy
8) Why might you want to display nonprinting characters? ā To assist with troubleshooting a document and modifying its appearance O To facilitate the inspection of a document for hidden or personal information O To enable spell checking on the document O To simplify the process of converting aā¦
Question 30 Which is the primary key in tblReturns? O ReturnID O ID O BookID O BorrowID D Question 31 To move across the records in a form, you would use the [Select] buttons located at the bottom left of the screen. Question 32 1 pts 1 pts 1 pts What command did you select to change the titleā¦
Determine the value for Overflow Flag (OF), Sign Flag (SF), Zero Flag (ZF) and Carry Flag (CF) respectively after each of the following related instruction has been executed. Complete the table below. Show your final answer in Hexadecimal number. Instructions a) MOV AX, B014H b) ADD AX,ā¦
MSCAN metadata repository document is primarily for Application Discovery and Reverse Engineering True False Reset Save Question 25
What are the components of a class's responsibilities? A) Attributes and methods B) Super Classes C Collaborators D) All of them
Question 14 Why would you want to create a report? Reports are used to add data collection fields to forms Reports make it easy to add records to a table Reports allow you to export a table as an Excel file Reports allow you to present tables and query results in an easy-to-read format 2 pts
6. Which of the following wireless standards is best suited for industrial and IoT environments? A) Zigbee B) WIMAX C) Wi-Fi D) Bluetooth
(True/False) A program with a free variable cannot be evaluated to its result. Hint: A free variable in a program is a variable the occurs fee in the program. True False
Q7. Build a TM that accepts the language L = {(xy)'(xy)',t = 1,2,3, ...).
What is the speed of a P2P wireless bridge? A Up to 44 Mbps B Up to 34 Mbps C Up to 24 Mbps D Up to 54 Mbps
What is an Agent? Explain Simple Reflex and Model Based agent with the help of diagram?
Why 6LoWPAN is used for loT? to connect lot devices to the cloud platforms to decrease the latency of transmission over media to encapsulates and compresses headers of IPv6 packets to increase the data rate of WPAN devices
Network Communication Diagram (DOCX)ā This activity supports Module Objectives 1, 3, 5, 7, & 8 an Learning Outcome 5. Question 3 20 pts Of the following, which cable type is most likely to be used to connect the end nodes to the switch? O Cat 3 O Cat 6 O Cat 16 O Cat 17
Explain in detail regarding the FIVE types of addressing modes in computer architecture and provide the examples for each addressing modes. Explain the advantages and disadvantages of the addressing modes. ⢠Immediate Addressing ⢠Direct Addressing ⢠Indirect Addressing ⢠Register Addressing ā¢ā¦
RPA requires extensive programming knowledge to create automated process? False True Reset Save
Webster Dictionary defines social media as web sites, web-based tools, applications, and media that connect users and allow them to Make purchases online Share information Collaborate Engage in dialogue ? Select all that apply.
Question 2 What type of programming is centered on the procedures or actions that take place in a program?
Q2: (6 marks) Subnetting and Addressing A. A block of addresses is granted to a small organization. We know that one of the addresses in 192.168.10.15/24. a) (1 mark) What are the first and the last addresses of this block? b) (0.5 mark) Determine the number of addresses granted to this smallā¦
To improve runtime performance, C++11 introduced a new family of member functions that use the emplacement technique to insert new elements. A True B False Clear selection
What is the only way to guarantee that computers and networks are safe from cyberattacks? A Limit administrative privileges B Take them offline C Install security software
Hi, Sura. When you submit this form, the owner will see your name and email address. 1. Based on your understanding of the types of networks discussed in class (LAN, WAN, WLAN, VPN), what would you expect to be setup in the following type of business: A medium sized office with a singleā¦
Which of the following statements are true about Quality of Service (QoS)? Each correct answer represents a complete solution. Choose all that apply. A QoS allows to strategically optimize a network's performance for selected traffic types. B With the use of QoS technologies, one can identifyā¦
A vector is an associative container that works like an array but is dynamic in size. A True B False
The following are lifecycle events of a server, except ________ Package a server template Update the server None of the options Create a new server Delete the server
10) Let's use the example of a finite state machine (FSM) for controlling an LED with a single button. The states and events will be defined as follows: States: STATE_OFF-LED is off. STATE_ON - LED is on. STATE_BLINKING - LED is blinking. Events: EVENT_BUTTON_PRESS - Button isā¦
3 Given the following data items, draw a diagram on a block of consecutive memory with 8 bits for each memory location to indicate how the following data items could be stored in memory, starts from offset address 0150H. a) A 1-byte item named VAR1 containing "A". b) A 2-byte item named VAR2ā¦
Match the concept to the description. Shifting Truncating Translation Transmogrify A. This is the combination of the other two concepts. The funciton is zeroed until initial time and then the resultant function is moved along the time access to some set delay time. B. This concept involvesā¦
31 27 26 25 24 20 19 15 0000000 shamt rsl 14 12 11 76 001 rd 0 0010011 SLLI Registers x2=5 and x8=4. Find content of both registers in binary after execution of the following instruction. slli x8, sp,2
- small restaurant wants to implement an e-commerce model. Which of the following would be more beneficial for the restaurant? Remove the physical installations of the restaurant and move to a webpage. The use of mobile applications to order food. Give customers of the physical restaurant aā¦
Salesforce.com is the largest service provider of __________. laaS SaaS BpaaS PaaS
Question THREE (15 Marks) A STUDENT file with STUDENTID as the hash key includes records with the following STUDENTID values: 123, 456, 789, 102, 131, 415, 161, 718, 192, 021, 222, 324, 252, 627, 282, 930 The file uses 8 buckets, numbered 0 to 7. Each bucket is one disk block and holdsā¦
% If the numbered entered is positive, add it to the end of a exi % array repeat this until the user enters a negative number %Prompts the user to enter a positive number. inputNum = input('Enter a positive number: '); posNums = []; %if the entered number is positive while inputNum > 0 posNumsā¦
Function firstIdx= firstZeroIndex1(inputArray) % function connected to the recieving of a 1D array of numbers and % finds the index of the first zero % Auhtor: Marae Laws len=length(inputArray); firstIdx=-1; for i = 1:len if inputArray(i)==0 firstIdx=i; break; end end
Which of the following statements is false regarding the process management function of Operating System (OS)? Time left 0:12:3 Select one: a. The process management function of OS controls the execution of the processes and acts on exceptional conditions arising during execution. b. Theā¦
Write a method called "containsPair" which takes three integers as parameters and returns true if any two of them are the same. If all three numbers are different, the method should return false. The table below shows sample calls and the value that should be returned. Method Call Valueā¦
Which of the following statements is false regarding the file management function of Operating System (OS)? Select one: Oa. The file management function of OS controls transfer of data to and from secondary storage. Ob. The file management function of OS should hide device specific details fromā¦
Q3: Shift registers can be used for Multiplication & Division by 2. (T or F) justify your answer
Discuss the implications among P, NP, PSPACE, coNP and PH if (a) TQBF ā NP (b) TQBF ā P
OR [3+4+3] i) Convert the following NFA to DFA: State Input a Input b Qo Qi. Q4 Q1 -- Q2 -- Q2 *Q3 Q3 Q2 Q4 Q5 -- Q5 Q6 -- * Q6 Q6 Q6
Below is the grammar for a binary tree Bintree. Bintree :: Int | (Int Bintree Bintree) A. Use define-datatype, in Scheme, to define a datatype called Bintree for the binary tree represented by this grammar. B. Use Bintree defined in part (A) and its constructors and observers, to implement aā¦
Which of the following are contained in a UML diagram for a class? O Class name O Class fields Class methods O All of these None of these
Focus: Lessons in Storytelling Question: According to Knaflic, one suggestion when storytelling is to Ogather clean data and then figure out the question Owrite the headlines first Ocapture the entire storyboard Omake sure to apply a "scout" mindset
# Name SYMBOL DEFINITION Example a Process b Data store c External entity d Data flow
Consider the following sequence of instructions. 1. R1 = A + B 2. R2 = B + C 3. R3 = R1 + R2 i) With a reason, state type of data hazard that is present in the following sequence of instructions. (3 Marks) ii) Using appropriate data hazard technique called data forwarding and stall, elaborateā¦
Which one of the following is not a feature of MSCAN? Root cause analysis Business rule extraction/flow analysis Data translation & Data transfer Building knowledge database Reset Save
Question 44 Which of the below technique should be used to identify specific products or objects within an image? RPA ML Cognitive All of the above Reset Save
A \_\_\_ function is one that calls itself. a. dynamic B b. static C c. recursive D d. data validation E e. None of the above
Capability Architecture has the feature to filter tools based on license type, Service Line & Technology. True or False? True False
In our lecture, it was stated that home-based networks have had the modem and wireless access points replaced by a ______. O Gateway Internet Appliance Combo Device Wireless Router
A catch block serves as A an exception handler. B an indicator of program correctness. C a temporary variable. D permanent storage for trapped errors. E None of the above
Collects and distributes the flow of data within the network and uses MAC address for data transmission
Geography
History
#include <iostream> #include <vector> using namespace std; bool areAllNumbersDistinct(const vector<int>& numbers) { for (size_t i = 0; i < numbers.size(); ++i) { for (size_t j = i + 1; j < numbers.size(); ++j) { if (numbers[i] == numbers[j]) { return false; // If any two numbers are the same,ā¦
Integrate using the Tabular Method \int x^(2)e^(6x)dx 4) Integrate using the Tabular Method $$\int x^2 e^{6x} dx$$
ā Question 14 1 pts In ASL, one example of morphological aspect is the number incorporated into certain noun signs. O True False
Usage of license free open source tools will reduce the Total cost of Ownership. True or False? True False
int i; int count; int evenSum; int oddSum; i = 0; evenSum = 0; oddSum = 0; for (count = console.nextInt(); (count > 0); --count) { i = console.nextInt(); if (i < 0) { break; } if (i == 0) { continue; } if ((i % 2) == 0) { evenSum += i; } else { oddSum += i; } } and the following input values 4ā¦
1. A data analyst at a logistics company is tasked with analyzing routes and transit times for all orders. The current database of orders contains millions of rows. What tool would be most efficient for the analyst to use? Word processor SQL Spreadsheet CSV
Both SIMD and MIMD machines have multiple processors and can operate on different pieces of data in parallel. However, in SIMD, all processors must execute the same instruction at the same time, while in MIMD, each processor can execute a different instruction. True False
1. Computers that are connected within the organizations are called as a. Connected Computers b. Local Computers c. Intranet d. Wide Area Computers Network.
3 Data filters are located in which Marketing Cloud Engagement app? A Journey Builder B Ad Studio C Email Studio D Content Builder
18. A secondary option to reporting a business violation to the OCR would be: (a) Inform the EHR software company's administrator about the exposed patient information. (b) Seek advice from your organization's HIPAA Privacy Officer to address the security breach and mitigate risks. (c) Documentā¦
In database systems, a ______ refers to a list of data. field row file record
Which of the following is an infrastructure definition tool? Terraform Templates Playbooks Ruby
Focus: Testing the Emerging Trends Articles Question: Match the following terms. 10 predictive analytics [Choose] prescriptive analytics [Choose] ort 0 root cause analysis [Choose] supervised learning [Choose] unsupervised learning [Choose]
) is the branch of science concerned with making computers behave like humans. Bioinformatics Cognitive computing Artificial intelligence Expert systems
The following two expressions will always yield identical results: (a + b) / c a + b / c O True O False
Question 22 Select the term that is the best match for the description. Prompts 1) Attempts to trick people into providing personal information such as account numbers and passwords via email messages is called Answers phishing ā” A small text file passed by a web server to a web browser to beā¦
8. ______ is an individual's constitutional right to be left alone and to limit access to his or her health care information. a. Privacy b. Security c. Confidentiality d. Protection
Which of the following is an essential concept related to the cloud? Productivity All of the options Abstraction Reliability
Write an algorithm for finding the maximum element in a finite set of integers. Describe the time complexity of it?
10. What will a host on an Ethernet network do if it receives a frame with a unicast destination MAC address that does not match its own MAC address? A) It will discard the frame. B) It will forward the frame to the next host. C) It will remove the frame from the media. D) It will strip off theā¦
//call function to calculate payments creditPayment = getPayment(carPrice - rebate, creditRate / 12, term * 12); dealerPayment = getPayment(carPrice, dealerRate / 12, term*12); //assign values to calculate payments //display payments cout << fixed << setprecision(2) << endl; cout << "Creditā¦
Howard Goodall states that the notes you choose, how high or low they are and the pattern they make one after the other creates _______?
The variables, arrays, or other data structures that are stored in the object are known as the object's ______.
Peggy the pigeon must peck a key with a horizontal black line any time the sample stimulus is a red key. If Peggy uses the rule, "The sample was red," to remember the correct response to make, she is utilizing which type of coding strategy? retrospective coding Oprospective coding analogueā¦
function firstIdx = firstZeroIndex3(inputArray) % receives a 1D array of numbers and finds the index of the first zero % Author: Marae Laws % create a logical indexing array to locate all zeros in the array logArray inputArray==0 %find the locations of all zero elements allzeroLocationsā¦
What does the following Scheme expression evaluate to? (= 3 (+ 1 3)) #f code produces an error. 7 -1
Chef was initially created by -------- Adam Joplin Adam Jacob Robbins Jesse
string str = "goofy"; string newStr = ""; for (int j = 0; j < str.length(); j++) newStr = str[j] + newStr; cout << newStr << endl; The output is ______. a. goofy b. ygoof c. foogy d. yfoog
7. The emerging technology behind m-commerce is mainly the: a. Wireless Applied Protocol b. Wireless Appeal Protocol c. Wireless Application Protocol d. Wired Application Protocol.
The image shows the left pane of which of the following windows that is accessed when you update a device driver? ā System Tools > Task Scheduler > Event Viewer < < > Shared Folders Local Users and Groups Performance Device Manager Computer Management O Settings Task Manager
Q3- Imagine we have patient table like below: Patient patient id: int first_name: string last_name: string nationality: string gender: string address: string dob: date phone: int email: string Write a stored procedure to insert two rows into patient table? You can insert any values youā¦
is a phenomenon that occurs when the functions of many physical devices are included in one physical device. Digitalization ITization Convergence Dematerialization
Paul Revere was not present at the Boston Massare but created his famous etching of the event to create support for the Patriots. True False
Question 21 (T/F) The most significant bit (most left bit) Edit Format Table 12pt Paragraph B I \cup _() A T^(2) Question 21 (T/F) The most significant bit (most left bit)
The Standard Template Library (STL) contains templates for useful algorithms and data structures. A True B False Clear selection
QUESTION 16 DevSecOps (also known as SecDevOps) is a set of best practices designed to allow organizations to build a culture of secure coding within their development approach that will bring the impact of DevOps development and deployment processes to enable the secure deployment ofā¦
Question 32 Which of the following statements allocates memory in the heap? int a; int* a = NULL; a = (int*)malloc(sizeof(int)); *a = 10;
Microsoft Word is a very powerful (__)? a. Spreadsheet Program b. Text Editor c. Database Management System d. Presentational Software
9. Which classification of information systems includes expert systems and artificial neural networks? a. decision support systems b. executive information or support systems c. intelligent support system d. office automation systems
Please create a thread, using your name in the Subject line, and respond to the following: How do social networks, auctions, and portals contribute to the e-commerce ecosystem? Discuss the unique value propositions of each platform type.
4. You are working with a database table that has columns about trees, such as tree_species. Which SUBSTR function and AS command will retrieve the first 3 characters of each species name and store the result in a new column called species_ID? SUBSTR AS (tree_species 1, 3)ā¦
10. Cellular networking is also known as ____ networking. computer organic wide area mobile
In BOT Factory, BOTS can be accessed by which of the following ways? Download from GIT Using Chatbot in BOT Factory Orchestrator Using Wizard in BOT Factory Orchestrator All the above
What if K is 1? 1 point possible (graded) Now, assume that we are given with K = 1 as the number of clusters. Now, does initialization matter at all? No, because cluster assignment does not change in step 2.1 Yes, because representative selection changes in step 2.2 Submit You have used 0 of 1ā¦
QUESTION 6 Given the factorial algorithm below: factorial(n) if n == 0 return 1 else return n * factorial(n-1) a) Identify the base case. (2 points) b) Identify the recursive case. (2 points) c) Find factorial(6) by using the above algorithm. Show all steps. 6 points the toolbar, press ALT+F10ā¦
Question 15 1 pts (T/F) Although RAID4 and RAID5 both allows one hard drive disk to fail, the bandwidth of RAID5 with same number of hard drive disks is slightly higher than RAID4. O True O False
Which one of the following is a Mealy machine that recognises the sequence 0110? When such a sequence is recognised anywhere in an input string, the output should be 0001; that is, output 0 until the sequence 0110 is discovered, when a 1 should be output. Also, 0110110 contains two 0110ā¦
Match the terms on the left with their definitions on the right. Function signature [Choose] Function header [Choose] The function's return value type, function name, and parameters. Variables declared in the function header Values passed to the function The function name and the parameterā¦
What piece of the executive information system has become more vital as organizations have become increasingly geographically dispersed? (A) The communications element B) The user interface (C) The supporting software infrastructure
The third stage in Simon's description of decision-making is implementation. A True B False
Hiding the implementation of a class is called encapsulation. True False
```java package application; import javafx.application.Application; import javafx.stage.Stage; import javafx.scene.Scene; import javafx.scene.layout.BorderPane; public class Main extends Application { @Override public void start(Stage primaryStage) { try { ā¦
Which of the following statements is true if A x B = 0? B is empty, but A is non-empty A and B are non-empty and finite Either A or B is empty A is empty, but B is non-empty Both A and B are infinite
Tactical automation can Automate simple activities Automate complex processes Are smart robots that learn from humans Reset Save
What are the cloud cost models? Pay as you use All of the options Plan payment Free payment
Which of these best describes a mistake? ā When the wrong goal or plan is established, but not on purpose When someone intentionally does the wrong action When a person intends to do one action, but does another
is more secure than Container, VMware VMware, Hypervisor VMware, Container Hypervisor, VMware
A recursive function cannot call a function other than itself. True False Clear selection
A certain problem can be solved by an algorithm whose running time is in O(nlogan), is this problem tractable?
Stats Air operates a daily flight between Sydney and Melbourne that has operated for five years. Flight XZ 414 is scheduled to depart Sydney at 11:40 and arrive in Melbourne at 13:15. Flight XZ 415 is scheduled to depart Melbourne at 14:05 and arrive in Sydney at 15:40. Both flights XZ 414 andā¦
Question 9 2 pts Suppose you want to copy a formula while keeping one of the cell references locked on the same cell. Which of the following would you use? Relative reference PivotTable Absolute reference ⢠ReferenceLock
How are Quick Sort and Merge Sort similar? They both split the unsorted array in equal halves with each pass They are both divide-and-conquer, recursive algorithms They both call BubbleSort They are not related
Q.3. You are asked to design an e-reservation system for different events. Following rules will be observed for reservation. I. Don't reserve before 30 days ahead of event. II. Get more discount on early reservation III. E-cards would be acceptable for full advance payment IV. Cash payments canā¦
causes more failure than Hardware failure, Human error Human error, Hardware failure Hardware failure, Software error Software failure, Human error
Draw a Pie diagram to represent the following data: Type of Commodity Expenditure in '000 Rs. Family A Family B Food 10 8 Rent 25 36 Clothes 4 7 Education 13 16 Miscellaneous 2 4 Savings 17 33 Total 58 80
Data is oftentimes considered a defensible source of competitive advantage; however, advantages based on capabilities and data that others can acquire will be massive short lived long lasting minimal
Which of the following occur in nondeterministic finite automata (NFAs) but not in deterministic finite automata (DFAs)? (select all that apply) multiple accept states lambda transitions multiple start states undefined transitions multiple transitions from the same state with the same label
ValueError Cell In[159], line 27 Traceback (most recent call last) 22 times = np.arange(y_combine['time'].min(), y_combine['time'].max()-0.002, 0.001) 23 rsf_surv_prob = np.row_stack([ 24 25 26 ]) fn(times) for fn in rsf.predict_survival_function(x_te, return_array=False) ---> 27 rsf_brier =ā¦
The saturation pressure of water is a function of its temperature as $$P_s = 1.4405 \times 10^{-6} T^4 - 1.6092 \times 10^{-4} T^3 + 0.01536 T^2 - 0.40831 T + 5.54347$$ where the temperature is in °C and the pressure is in kPa. The phase of water can be determined depending on the waterā¦
Automation amplifies human potential to do things With increased quality With reduced effort With more effort All of the above Reset Save
Which of the following are the advantages of dynamic routing? Each correct answer represents a complete solution. Choose all that apply. A Reduced bandwidth use, as there is no excessive router traffic B Failure of routers can be detected and paths to networks modified C Easy to configure onā¦
14. ______ protect systems that utilize the Internet from intrusions and threats from outside sources. a. Antivirus software b. Backups c. Firewalls d. Patches
Instructions A Tic Tac Toe game is classical which is played in a 3 x 3 grid by two player sides, X and O. One side is won if obtains 3 in a line (including diagonal). Figure 1 shows the class diagram for the Tic Tac Toe game. Based on the class diagram given, construct a use case diagramā¦
Question 2 1 pts Which of the following element is an example of a domain name? O www. O google O .com
Part (2) Write a Java application to do the following: A. Create two objects called hero1 and hero2 from the class Hero and initializes its private members using the constructor as follows: name hp attack_pt attack_no hero1 Alex 2000 300 5 hero2 Mark 2500 200 4 B. Print the info of the winningā¦
The following are attempts at NFAs to accept strings that optionally start with + or -, follow correctly accept the intended strings? (select all that apply) none of the answers given areā¦
Which of the following refers to a strategy that is used to simplify decision-making, sometimes at the cost of logic and rationality? An anchor An algorithm A frame A heuristic
Which of the following is a measure to ensure computer security? O Decoding data O Restricting access O Performing system upgrades O Purchasing an expensive software
6) A DBMS uses _____ to create a query. O forms O schemas O SQL O dictionaries
eBay is an example of the portal business model. A True B False
outcomes? |S| = 64 b. What is the probability that it will generate 101010? 1/64 c. What is the probability that it will generate an 6-bit string that ends with 101? 1/8 d. What is the probability that it will generate an 6-bit string that has weight 4? 15/64 e. What is the probability that itā¦
Which of these is not an automation technique? Tactical Robotic Process Faster Processing None of the above Reset Save
11) Each database consists of a single table of information. O True O False
You are using data validation to make sure that the data entered in a workbook is accurate and consistent. which of the following situations can you use Data Validation? When you want to restrict the data to predefined items in a list When you want to limit the number of text characters All ofā¦
In which cloud model, several organizations access to the same cloud for a similar application? Community Private Public Hybrid
Topic 1 Assignment 14 1.66 points Problem 3-4 (Static) Designing products for aesthetics and with the user in mind is generally called what? Multiple Choice eBook Print References Fit-and-finish design Quality-first design End-user design mapping Market research Industrial design Check my work
Power BI Overview Match the six areas of Power BI with the concepts we applied in each: User Experience Data Modeling Power BI Service Power Query DAX Measures Create & Format Report Visuals A Report Interaivity B Sharing Reports C Data Visualization D Data Analysis E Data Transformation F Starā¦
Prototyping is more iterative than the systems design life cycle approach. A) True B) False
A data type defines a collection of data values but not operations that can be used for variables declared with the type. O True O False
(T/F) You are allowed to create an ArrayList and set the first element using set method: true false
Select the best answer to complete the following sentence. Who ______ my neighbours? O are O was O is O am
Question: The point where the gradient changes from one shade of the color to another is called a _____.gradient fillmotion stopgradient stopend point The point where the gradient changes from one shade of the color to another is called a _____. gradient fill motion stop gradient stop end point
Question 25 When using the __logical operator, one or both of the subexpressions must be true for the compound expression to be true (Max). A AND B NOT C MAYBE D OR 1 Point
3. Which of the following is the most common network media? A) UTP B) STP C) Coaxial D) All of the above
COPs can make it easier for people to reuse knowledge. A True B) False
A function template's prefix contains __ in angled brackets. A one or more generic data types B the function definition C constant values D the function's return type E None of the above
Problem 2: What is the difference between transport layer reliability and data link layer reliability and why do we need it?
Traditional Automation is easy for non-technical people to use - there is no code to learn. True or False? True False
In the following figure, Computers and Laptops are of what type? Computers + printinfo() Laptops RAM: int brand: string + printinfo()
are used to signal errors or unexpected events that occur while a program is running. a. Virtual functions b. Destructors c. Exceptions d. Templates e. None of the above
A view that displays a document as it would appear on a webpage. A data element that is saved with a document but does not appear in the document as it is shown onscreen or is printed.
Convolution theorem states that convolution of two spatial functions (f and h) is equivalent to the pointwise product of their respective Fourier transform (F and H). (1 Point) $$f(t) \circledast h(t) \iff H(\mu)F(\mu)$$ True False
D Question 5 When artists combine any number of techniques to achieve unique results, this is referred to as ..... Integrated Digital Art Natural Media Digital Photography Digital Collage 1 pts
(T/F) Data memory is used in all instructions. O True False
While working on a netBanking solution for a bank, a team is laying down the deliverables for its first sprint. Which of the following is a potentially shippable increment as per Scrum? Product Backlog System Architecture document Prototype Implementation Test plan Reset save
A GUI program can have only one window. True False A GUI program can have only one window. True False
IaC is frequently referred to as __________ Programmable infrastructure Infrastructure programming Infrastructure automation Automated infrastructure
The procedures that the object performs are known as The procedures that the object performs are known as ______.
Q1) [25 points] [Check ch-9 slides] Consider the following relations on {1, 2, 3}. R1 = { (1, 1), (1,2), (1, 3), (2, 2),(2,3), (3,3)} R2 = {(x, y) | x + y ā 4} (a) What is R2? R2 = (b) Which of these relations are reflexive (circle)? Justify your answers. R1: yes/no: Justification: R2: yes/no:ā¦
What does clicking the + sign below do? 195 196 197 198 199 200 Basic Intermediate Advanced + Image not displaying? Adds a new Function Adds a new Row
Count the number of functions Ļ: {-8, -7,..., -3} ā {-8, -7,..., -3} so that (i) Ļ is one-to-one and Ļ(-4) = -7 (ii) Ļ is one-to-one and Ļ(-4) ā -7
Question 12 If an exception is not caught, it is stored for later use. True False 1 Point Clear selection
Question 7 Focus: Data Science Terms and Concepts Question: Select the data mining methods that would be considered Supervised. Link Prediction Profiling Clustering Classification ⢠Previous O pts Next
Which of the following has a compound predicate? Neither Michelle nor Charlotte likes coffee. The sun was hidden by the clouds so it was not warm at all. My dog's name is Daisy, and I love her. My brother grabbed my bike and rode away.
Question 4 (1.5 points) Consider the following instruction: LWI rt, rs Interpretation: R[rt] <-MEM[R[rs]] This is similar to LW instruction with no offset. a. Which new functional blocks (if any) do we need for this instruction? By new functional block, we mean if we need new adder, newā¦
What is Machine learning? Choose the best answer. Question 14 It is the study of algorithms and mathematical models and make predictions Machine learning is same as Data Mining None of the above options Reset Save
Which of the following statements are correct about white validation? Each correct answer represents a complete solution. Choose all that apply. A It refers to every possible pattern of bad input. B It looks for inputs that are present in the proper form. C It looks for inputs that are presentā¦
A pure virtual function A a. is a virtual function that has been completely debugged B b. is a virtual function that has no implementation C c. is a virtual function that performs a single task in program D d. is one that is only called from within a virtual constructor E e. None of the above
Below is the grammar for a binary tree Bintree. Bintree ::= (0) | (Int Bintree Bintree) (True/False) Based on this definition, we can conclude that (12 () (11 (7))) is a Bintree. True False
a. what is the purpose of a date type? b. What is the AutoNumber data type used for? c. In the database table, are the fields the columns or the rows? d. Provide an example of where you might use a "Yes/No" data type.
A pantine driver is registered when he or she gets the job and information is stored in a file. He or she drives N (1<N<20) number of days in a month and recorded his or her duty time in another file. Suppose you want to define a CRC card for a class named "Dutyrecord in that case which will beā¦
To determine that a number is not in an array of 50 numbers, how many values must Linear Search examine? 0 1 0 49 0 50 0 25
A prototype of an information system A makes maintenance and modifications easier to perform B is a quickly built system which allows the developer to get feedback, then modify the system C helps define procedures that different computers follow as they transmit data D allows alternativeā¦
A person has decided to code a particular set of sales data. A value of 0 is assigned if the salesoccurred on a weekday, and a value of 1 means it happened on a weekend. This isan example of Intervallevel data Ordinallevel data Nominal level data Ratiolevel data
Watson from IBM is one of the platforms to create RPA bots False True Reset Save
Enumeration types provide a way of defining and grouping collections of name constants. True False
Q9. Is it possible to develop a GTG that can recognize the Language ODD-ODD (a language that has odd number of a's and odd number of b's) and ends in in exactly 7 b's. Explain your answer concisely and clearly.
16) A data warehouse is a central repository for all the data that an enterprise uses, including internal databases and external sources such as vendors and customers. O True O False
QUESTION 19 When using the vi text editor, which of the following keys, when in command mode, will change to insert mode and place the cursor at the end of the current line? O a. A b.i O ca Od. I
Which of the following strings will be accepted by the NFA given here? (select all that apply) c q2 b a d q1 q3 q4 b Ī»
Select correct RPA tools from below list Work fusion QTP Selenium Kapow Softomotive Reset Save
A Windows technician is configuring a new customer relationship management application. To complete the setup, the technician must push all necessary folders to a remote tearn. Which of the following tools would the technician most likely use to complete this task? Select one: ORDP O NTFS Oā¦
Find Hit ratio and average access time for one instruction for the following cache-memory system and program. Assume for a program, instructions a,b,a,c, c, d, e, e, f, g are needed. Access time for cache is 5nsec and for main memory is 10nsec. Assume initially Cache is empty and can have uptoā¦
Which of the following is not an example of a computer crime? Phishing Identity theft Authorized access Piracy
8) Why might you want to display nonprinting characters? ā To assist with troubleshooting a document and modifying its appearance O To facilitate the inspection of a document for hidden or personal information O To enable spell checking on the document O To simplify the process of converting aā¦
Question 30 Which is the primary key in tblReturns? O ReturnID O ID O BookID O BorrowID D Question 31 To move across the records in a form, you would use the [Select] buttons located at the bottom left of the screen. Question 32 1 pts 1 pts 1 pts What command did you select to change the titleā¦
Determine the value for Overflow Flag (OF), Sign Flag (SF), Zero Flag (ZF) and Carry Flag (CF) respectively after each of the following related instruction has been executed. Complete the table below. Show your final answer in Hexadecimal number. Instructions a) MOV AX, B014H b) ADD AX,ā¦
MSCAN metadata repository document is primarily for Application Discovery and Reverse Engineering True False Reset Save Question 25
What are the components of a class's responsibilities? A) Attributes and methods B) Super Classes C Collaborators D) All of them
Question 14 Why would you want to create a report? Reports are used to add data collection fields to forms Reports make it easy to add records to a table Reports allow you to export a table as an Excel file Reports allow you to present tables and query results in an easy-to-read format 2 pts
6. Which of the following wireless standards is best suited for industrial and IoT environments? A) Zigbee B) WIMAX C) Wi-Fi D) Bluetooth
(True/False) A program with a free variable cannot be evaluated to its result. Hint: A free variable in a program is a variable the occurs fee in the program. True False
Q7. Build a TM that accepts the language L = {(xy)'(xy)',t = 1,2,3, ...).
What is the speed of a P2P wireless bridge? A Up to 44 Mbps B Up to 34 Mbps C Up to 24 Mbps D Up to 54 Mbps
What is an Agent? Explain Simple Reflex and Model Based agent with the help of diagram?
Why 6LoWPAN is used for loT? to connect lot devices to the cloud platforms to decrease the latency of transmission over media to encapsulates and compresses headers of IPv6 packets to increase the data rate of WPAN devices
Network Communication Diagram (DOCX)ā This activity supports Module Objectives 1, 3, 5, 7, & 8 an Learning Outcome 5. Question 3 20 pts Of the following, which cable type is most likely to be used to connect the end nodes to the switch? O Cat 3 O Cat 6 O Cat 16 O Cat 17
Explain in detail regarding the FIVE types of addressing modes in computer architecture and provide the examples for each addressing modes. Explain the advantages and disadvantages of the addressing modes. ⢠Immediate Addressing ⢠Direct Addressing ⢠Indirect Addressing ⢠Register Addressing ā¢ā¦
RPA requires extensive programming knowledge to create automated process? False True Reset Save
Webster Dictionary defines social media as web sites, web-based tools, applications, and media that connect users and allow them to Make purchases online Share information Collaborate Engage in dialogue ? Select all that apply.
Question 2 What type of programming is centered on the procedures or actions that take place in a program?
Q2: (6 marks) Subnetting and Addressing A. A block of addresses is granted to a small organization. We know that one of the addresses in 192.168.10.15/24. a) (1 mark) What are the first and the last addresses of this block? b) (0.5 mark) Determine the number of addresses granted to this smallā¦
To improve runtime performance, C++11 introduced a new family of member functions that use the emplacement technique to insert new elements. A True B False Clear selection
What is the only way to guarantee that computers and networks are safe from cyberattacks? A Limit administrative privileges B Take them offline C Install security software
Hi, Sura. When you submit this form, the owner will see your name and email address. 1. Based on your understanding of the types of networks discussed in class (LAN, WAN, WLAN, VPN), what would you expect to be setup in the following type of business: A medium sized office with a singleā¦
Which of the following statements are true about Quality of Service (QoS)? Each correct answer represents a complete solution. Choose all that apply. A QoS allows to strategically optimize a network's performance for selected traffic types. B With the use of QoS technologies, one can identifyā¦
A vector is an associative container that works like an array but is dynamic in size. A True B False
The following are lifecycle events of a server, except ________ Package a server template Update the server None of the options Create a new server Delete the server
10) Let's use the example of a finite state machine (FSM) for controlling an LED with a single button. The states and events will be defined as follows: States: STATE_OFF-LED is off. STATE_ON - LED is on. STATE_BLINKING - LED is blinking. Events: EVENT_BUTTON_PRESS - Button isā¦
3 Given the following data items, draw a diagram on a block of consecutive memory with 8 bits for each memory location to indicate how the following data items could be stored in memory, starts from offset address 0150H. a) A 1-byte item named VAR1 containing "A". b) A 2-byte item named VAR2ā¦
Match the concept to the description. Shifting Truncating Translation Transmogrify A. This is the combination of the other two concepts. The funciton is zeroed until initial time and then the resultant function is moved along the time access to some set delay time. B. This concept involvesā¦
31 27 26 25 24 20 19 15 0000000 shamt rsl 14 12 11 76 001 rd 0 0010011 SLLI Registers x2=5 and x8=4. Find content of both registers in binary after execution of the following instruction. slli x8, sp,2
- small restaurant wants to implement an e-commerce model. Which of the following would be more beneficial for the restaurant? Remove the physical installations of the restaurant and move to a webpage. The use of mobile applications to order food. Give customers of the physical restaurant aā¦
Salesforce.com is the largest service provider of __________. laaS SaaS BpaaS PaaS
Question THREE (15 Marks) A STUDENT file with STUDENTID as the hash key includes records with the following STUDENTID values: 123, 456, 789, 102, 131, 415, 161, 718, 192, 021, 222, 324, 252, 627, 282, 930 The file uses 8 buckets, numbered 0 to 7. Each bucket is one disk block and holdsā¦
% If the numbered entered is positive, add it to the end of a exi % array repeat this until the user enters a negative number %Prompts the user to enter a positive number. inputNum = input('Enter a positive number: '); posNums = []; %if the entered number is positive while inputNum > 0 posNumsā¦
Function firstIdx= firstZeroIndex1(inputArray) % function connected to the recieving of a 1D array of numbers and % finds the index of the first zero % Auhtor: Marae Laws len=length(inputArray); firstIdx=-1; for i = 1:len if inputArray(i)==0 firstIdx=i; break; end end
Which of the following statements is false regarding the process management function of Operating System (OS)? Time left 0:12:3 Select one: a. The process management function of OS controls the execution of the processes and acts on exceptional conditions arising during execution. b. Theā¦
Write a method called "containsPair" which takes three integers as parameters and returns true if any two of them are the same. If all three numbers are different, the method should return false. The table below shows sample calls and the value that should be returned. Method Call Valueā¦
Which of the following statements is false regarding the file management function of Operating System (OS)? Select one: Oa. The file management function of OS controls transfer of data to and from secondary storage. Ob. The file management function of OS should hide device specific details fromā¦
Q3: Shift registers can be used for Multiplication & Division by 2. (T or F) justify your answer
Discuss the implications among P, NP, PSPACE, coNP and PH if (a) TQBF ā NP (b) TQBF ā P
OR [3+4+3] i) Convert the following NFA to DFA: State Input a Input b Qo Qi. Q4 Q1 -- Q2 -- Q2 *Q3 Q3 Q2 Q4 Q5 -- Q5 Q6 -- * Q6 Q6 Q6
Below is the grammar for a binary tree Bintree. Bintree :: Int | (Int Bintree Bintree) A. Use define-datatype, in Scheme, to define a datatype called Bintree for the binary tree represented by this grammar. B. Use Bintree defined in part (A) and its constructors and observers, to implement aā¦
Which of the following are contained in a UML diagram for a class? O Class name O Class fields Class methods O All of these None of these
Focus: Lessons in Storytelling Question: According to Knaflic, one suggestion when storytelling is to Ogather clean data and then figure out the question Owrite the headlines first Ocapture the entire storyboard Omake sure to apply a "scout" mindset
# Name SYMBOL DEFINITION Example a Process b Data store c External entity d Data flow
Consider the following sequence of instructions. 1. R1 = A + B 2. R2 = B + C 3. R3 = R1 + R2 i) With a reason, state type of data hazard that is present in the following sequence of instructions. (3 Marks) ii) Using appropriate data hazard technique called data forwarding and stall, elaborateā¦
Which one of the following is not a feature of MSCAN? Root cause analysis Business rule extraction/flow analysis Data translation & Data transfer Building knowledge database Reset Save
Question 44 Which of the below technique should be used to identify specific products or objects within an image? RPA ML Cognitive All of the above Reset Save
A \_\_\_ function is one that calls itself. a. dynamic B b. static C c. recursive D d. data validation E e. None of the above
Capability Architecture has the feature to filter tools based on license type, Service Line & Technology. True or False? True False
In our lecture, it was stated that home-based networks have had the modem and wireless access points replaced by a ______. O Gateway Internet Appliance Combo Device Wireless Router
A catch block serves as A an exception handler. B an indicator of program correctness. C a temporary variable. D permanent storage for trapped errors. E None of the above
1
...
3
4
5
6
7