Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
askgurdit committed Apr 13, 2024
1 parent 0ceb44b commit a80dc7b
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 2 deletions.
58 changes: 57 additions & 1 deletion C++ PROGAMMING/.vscode/settings.json
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
}
2 changes: 1 addition & 1 deletion C++ PROGAMMING/Practice/passbyreferrence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ void changevalue(int &z) {
int main() {
int a=55;
changevalue(a);
cout<<a;
cout<<a;
return 0;
}
82 changes: 82 additions & 0 deletions HTML & CSS/MINI PROJECTS/Table/criteria.html
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>

0 comments on commit a80dc7b

Please sign in to comment.