Search
Questions in computers-and-technology
[Answered] The SSIS Runtime object could not be created. Verify that DTS.dll is available and registered. The wizard cannot continue and it will terminate. Additional information: Retrieving the COM class factory for component with CLSID {07E0FB35-8193-4F73-BD6E-F689AD1D9112} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). (DTSWizard)
[Answered] Convert the NFA equivalent to the given DFA, such that both NFA and DFA will accept the same language. | | 0 | 1 | |---|-------|-------| | →p | {p, q} | {p} | | q | {r} | {r} | | r | {s} | ∅ | | *s | {s} | {s} |
[Answered] You have an Azure subscription. You need to create an Azure container instance named cont1. The solution must meet the following requirements: - Ensure that specific configuration parameters are applied to cont1 during the container startup. - Provide secure values to cont1 during the container startup. What should you configure for cont1? A. environment variables B. customer-managed keys C. a command override D. tags
[Answered] 3. Write the full form of GIGO. 4. Write the full form of CPU. 5. What kind of software is Microsoft Windows? 6. Write one difference between hardware and software. Name any one of each of the following: 1. Input device 2. Output device 3. System software
[Answered] SAP kernel files are available under which directory within the Operating System? A. exe directory B. kernel directory C. j2ee directory D. trans directory
[Answered] #include using namespace std; typedef long long ll; int main() { ll x, y, z, t; cin >> x >> y >> z >> t; cout << x << ", " << y << ", " << z << ", " << t << endl; cout << x + y + z + t << endl; cout << x - y + z * t << endl; return 0; }
[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))
« Prev
1
...
84
85
86
87
88
...
106
Next »