Bài đăng

Đang hiển thị bài đăng từ Tháng 3, 2016

Tổng hợp một số câu hỏi trắc nghiệm Advanced features in C#

Hình ảnh
Advanced features in C#  1. Which of the following statements about throwing exceptions is false?     A. If you catch an exception and throw a new one to add more information, you should include the original exception in the new one’s InnerException property     B. If you rethrow the exception ex with the statement throw, the exception’s call stack is reset to start at the current line of code.     C. If you rethrow the exception ex with the statement throw ex, the exception’s call stack is reset to start at the current line of code     D. Before a method throws an exception, it should clean up as much as possible, so the calling code has to deal with the fewest possible side effects 2. Suppose the Car class provides a Stopped event that takes as parameters sender and StoppedArgsobjects. Suppose also that the code has already created an appropriate StoppedArgs object named args. Then which of the following code snippets correctly raises     A. if (!Stopped.IsEmpty)

BSQL - FINAL EXAM (THEORY)

Hình ảnh
BSQL - FINAL EXAM (THEORY)  1. Which of the following is expressed by an E-R diagram? A. Relation between process and relationship B. Relation between entity and process C. Relation between processes D. Relation between entities 2. Which of the following indicates the maximum number of entities that can be involved in a relationship? A. Minimum cardinality B. Maximum ca

RANKING in SQL (ROW_NUMBER, RANK, DENSE_RANK,NTILE)

Hình ảnh
Hàm Ranking là gì? Các hàm Ranking cho phép bạn có thể đánh số liên tục (xếp loại) cho các tập hợp kết quả. Các hàm này có thể được sử dụng để cung cấp số thứ tự trong hệ thống đánh số tuần tự khác nhau. Có thể hiểu đơn giản như sau: bạn có từng con số nằm trên từng dòng liên tục, tại dòng thứ nhất xếp loại số 1, dòng thứ 2 xếp loại số là 2… Bạn có thể sử dụng hàm ranking theo các nhóm số tuần tự, mỗi một nhóm sẽ được đánh số theo lược đồ 1,2,3 và nhóm tiếp theo lại bắt đầu bằng 1,2,3… Chúng ta bắt đầu xem xét cách hàm trong sql hổ trợ từ 2005 Dữ liệu thử : CREATE TABLE Person(          FirstName VARCHAR(10),      Age INT,      Gender CHAR(1) ) INSERT INTO Person VALUES ('Ted', 23, 'M') INSERT INTO Person VALUES ('John', 40, 'M') INSERT INTO Person VALUES ('George', 6, 'M') INSERT INTO Person VALUES ('Mary', 11, 'F') INSERT INTO Person VALUES ('Sam', 17, 'M') INSERT INTO Pe

Bài đăng phổ biến từ blog này

[Share] CSDL Quản lý Shop Online

Hướng dẫn cài đặt VRML Pad và Cortona 3D Viewer

RANKING in SQL (ROW_NUMBER, RANK, DENSE_RANK,NTILE)