Skip to content

Commit

Permalink
Fixed question numbering in the CPP file (#6790)
Browse files Browse the repository at this point in the history
* Fixed question numbering in the CPP file

* Microsoft Access Documentation with Answer Marking

* improevement option representation in jquery

---------

Co-authored-by: Evgenii Bazhanov <evg.bazhanov@yahoo.com>
  • Loading branch information
alpha2207 and Ebazhanov committed Oct 25, 2023
1 parent ad3c772 commit da00658
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions c++/c++-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -2494,15 +2494,15 @@ class my_class{
- [ ] The variable cannot be modified by any part of the code in the same application or thread. However, other threads may modify it.
- [ ] The variable is allocated only once, regardless of how many objects are instantiated, because it is bound to the class itself, not its instances.
#### Q11. What is the purpose of the `constexpr` keyword in C++?
- Ref(https://learn.microsoft.com/en-us/cpp/cpp/constexpr-cpp?view=msvc-170#:~:text=constexpr%20indicates%20that%20the%20value,template%20arguments%20and%20array%20declarations.)
#### Q155. What is the purpose of the `constexpr` keyword in C++?
- [ ] It is used to define constants in C++.
- [ ] `constexpr` is used to specify that a variable is a constant pointer.
- [x] `constexpr` is used to indicate that an expression can be evaluated at compile-time, making it suitable for use in constant expressions.
- [ ] It is a keyword used to create asynchronous functions.
[Ref](https://learn.microsoft.com/en-us/cpp/cpp/constexpr-cpp?view=msvc-170#:~:text=constexpr%20indicates%20that%20the%20value,template%20arguments%20and%20array%20declarations.)
#### Q16. What is a template metaprogram in C++?
- Ref(https://www.geeksforgeeks.org/template-metaprogramming-in-c/)
Expand Down
5 changes: 4 additions & 1 deletion jquery/jquery-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1642,4 +1642,7 @@ $('a.active').addClass('hover');

#### Q87. Which symbol is commonly used to represent the jQuery object?

-[x] $ -[ ] # -[ ] % -[ ] &
-[x] $<br>
-[ ] # <br>
-[ ] % <br>
-[ ] &
8 changes: 4 additions & 4 deletions microsoft-access/microsoft-access-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,14 +456,14 @@ SELECT City FROM Customers WHERE City = "houston" Or "boston" Or "chicago"; -- e

#### Q45. A databse has a form with the AllowEdits property set to No. You open the form using an OpenForm macro step with the Data Mode property set to Edit. Given this, which statement is true?

- [ ] You cannot edit existing records but can add new records.
- [x] You cannot edit existing records but can add new records.
- [ ] You cannot edit or add records.
- [ ] You can edit existing records but cannot add new records.
- [ ] You can edit existing records and new records.

#### Q46. What rule type must you choose to conditionally format a value in a report based on another value in the same record?

- [ ] Field Value Is...
- [x] Field Value Is...
- [ ] Evaluation Is...
- [ ] Expression Is...
- [ ] Compare to...
Expand All @@ -480,11 +480,11 @@ SELECT City FROM Customers WHERE City = "houston" Or "boston" Or "chicago"; -- e
- [ ] Create a data macro to validate the foreign key values in the chekcout table.
- [ ] Create a combo box on a checkout form that displays only valid library members.
- [ ] Create a one-to-many relationship between the checkout table and the member table.
- [ ] Enforce referential integrity between the checkout table and the member table.
- [x] Enforce referential integrity between the checkout table and the member table.

#### Q49. When designing a report, clicking the Build button (..) in the Record Source property will do what?

- [ ] create a linked table reference in the Navigation Pane
- [ ] create an expression in the report object
- [ ] create an embedded query in the report object
- [x] create an embedded query in the report object
- [ ] create a data macro in the report object

0 comments on commit da00658

Please sign in to comment.