-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
140 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,59 @@ | ||
{ | ||
"C_Cpp_Runner.msvcBatchPath": "" | ||
"C_Cpp_Runner.msvcBatchPath": "", | ||
"C_Cpp_Runner.cCompilerPath": "gcc", | ||
"C_Cpp_Runner.cppCompilerPath": "g++", | ||
"C_Cpp_Runner.debuggerPath": "gdb", | ||
"C_Cpp_Runner.cStandard": "", | ||
"C_Cpp_Runner.cppStandard": "", | ||
"C_Cpp_Runner.useMsvc": false, | ||
"C_Cpp_Runner.warnings": [ | ||
"-Wall", | ||
"-Wextra", | ||
"-Wpedantic", | ||
"-Wshadow", | ||
"-Wformat=2", | ||
"-Wcast-align", | ||
"-Wconversion", | ||
"-Wsign-conversion", | ||
"-Wnull-dereference" | ||
], | ||
"C_Cpp_Runner.msvcWarnings": [ | ||
"/W4", | ||
"/permissive-", | ||
"/w14242", | ||
"/w14287", | ||
"/w14296", | ||
"/w14311", | ||
"/w14826", | ||
"/w44062", | ||
"/w44242", | ||
"/w14905", | ||
"/w14906", | ||
"/w14263", | ||
"/w44265", | ||
"/w14928" | ||
], | ||
"C_Cpp_Runner.enableWarnings": true, | ||
"C_Cpp_Runner.warningsAsError": false, | ||
"C_Cpp_Runner.compilerArgs": [], | ||
"C_Cpp_Runner.linkerArgs": [], | ||
"C_Cpp_Runner.includePaths": [], | ||
"C_Cpp_Runner.includeSearch": [ | ||
"*", | ||
"**/*" | ||
], | ||
"C_Cpp_Runner.excludeSearch": [ | ||
"**/build", | ||
"**/build/**", | ||
"**/.*", | ||
"**/.*/**", | ||
"**/.vscode", | ||
"**/.vscode/**" | ||
], | ||
"C_Cpp_Runner.useAddressSanitizer": false, | ||
"C_Cpp_Runner.useUndefinedSanitizer": false, | ||
"C_Cpp_Runner.useLeakSanitizer": false, | ||
"C_Cpp_Runner.showCompilationTime": false, | ||
"C_Cpp_Runner.useLinkTimeOptimization": false, | ||
"C_Cpp_Runner.msvcSecureNoWarnings": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ void changevalue(int &z) { | |
int main() { | ||
int a=55; | ||
changevalue(a); | ||
cout<<a; | ||
cout<<a; | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>New Member Evaluation Form</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
} | ||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
} | ||
th, td { | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
text-align: left; | ||
} | ||
th { | ||
background-color: #f2f2f2; | ||
} | ||
.center { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h2 class="center">New Member Evaluation Form</h2> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Name of the Member</th> | ||
<th>Position Applied for</th> | ||
<th>Date of Evaluation</th> | ||
<th>Leadership Skills (out of 25)</th> | ||
<th>Technical Skills (out of 25)</th> | ||
<th>Creativity and Innovation (out of 20)</th> | ||
<th>Team Collaboration (out of 15)</th> | ||
<th>Results and Impact (out of 15)</th> | ||
<th>Communication Skills (out of 15)</th> | ||
<th>Problem-Solving Skills (out of 15)</th> | ||
<th>Time Management (out of 10)</th> | ||
<th>Adaptability (out of 10)</th> | ||
<th>Attention to Detail (out of 10)</th> | ||
<th>Customer Focus (out of 10)</th> | ||
<th>Analytical Skills (out of 15)</th> | ||
<th>Professionalism (out of 10)</th> | ||
<th>Digital Marketing Knowledge (out of 20)</th> | ||
<th>Team Player (out of 15)</th> | ||
<th>Total Points</th> | ||
<th>Overall Rating</th> | ||
<th>Comments/Feedback</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<!-- Use this row for each new member --> | ||
<tr> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td contenteditable="true"></td> | ||
<td></td> | ||
<td></td> | ||
<td contenteditable="true"></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</body> | ||
</html> |