Coding_vieb @coding_vieb Channel on Telegram

Coding_vieb

@coding_vieb


Welcome to coding_vieb
I will keep providing you the source code here, so keep subscribing to the channel.

Coding_vieb (English)

Are you a coding enthusiast looking to enhance your skills and knowledge in programming? Look no further, as 'Coding_vieb' is here to provide you with a treasure trove of source code to help you on your coding journey. Whether you're a beginner looking to learn the basics or an experienced programmer seeking to delve into advanced topics, this Telegram channel has something for everyone.

'Coding_vieb' is a dedicated channel curated by passionate developers who are committed to sharing their expertise and insights with the programming community. With regular updates and a wide range of programming languages covered, you can stay ahead of the curve and expand your coding repertoire. From Python and Java to HTML and CSS, the channel offers a diverse collection of source code snippets, tutorials, and resources to aid you in your coding projects.

By subscribing to 'Coding_vieb', you gain access to a supportive community of fellow coders who are eager to learn and grow together. Share your ideas, ask questions, and collaborate with like-minded individuals who share your passion for coding. With a friendly and engaging environment, you can connect with others who can provide valuable feedback and guidance to help you improve your coding skills.

So, what are you waiting for? Join 'Coding_vieb' today and take your coding skills to the next level. Let's code, learn, and grow together on this exciting programming journey. Welcome to coding_vieb! I will keep providing you the source code here, so keep subscribing to the channel.

Coding_vieb

17 Nov, 15:19


SQL Concise Interview Notes.pdf Don't for to make reactions

Coding_vieb

17 Nov, 15:17


5_6147662195736973318.pdf don't forget to make reactions

Coding_vieb

17 Nov, 15:17


DSA checklist.pdf। Don't forget to press red heart and reactions

Coding_vieb

15 Nov, 16:03


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Quiz</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
padding: 20px;
}
.quiz-container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.question {
margin-bottom: 20px;
}
.question h3 {
margin-bottom: 10px;
}
.question input[type="radio"] {
margin-right: 10px;
}
.submit-btn {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-btn:hover {
background-color: #45a049;
}
.result {
margin-top: 20px;
padding: 10px;
background-color: #e0ffe0;
border: 1px solid #b2d8b2;
border-radius: 5px;
}
</style>
</head>
<body>

<div class="quiz-container">
<h2>HTML Quiz</h2>
<form id="quizForm">
<div class="question">
<h3>1. What does the &lt;a&gt; tag define?</h3>
<label><input type="radio" name="q1" value="a"> Hyperlink</label><br>
<label><input type="radio" name="q1" value="b"> Audio</label><br>
<label><input type="radio" name="q1" value="c"> Article</label>
</div>

<div class="question">
<h3>2. Which HTML tag is used to define an unordered list?</h3>
<label><input type="radio" name="q2" value="a"> &lt;ol&gt;</label><br>
<label><input type="radio" name="q2" value="b"> &lt;ul&gt;</label><br>
<label><input type="radio" name="q2" value="c"> &lt;li&gt;</label>
</div>

<div class="question">
<h3>3. What does the &lt;title&gt; tag do?</h3>
<label><input type="radio" name="q3" value="a"> Displays a title in the body</label><br>
<label><input type="radio" name="q3" value="b"> Sets the title in the browser tab</label><br>
<label><input type="radio" name="q3" value="c"> Defines a header section</label>
</div>

<button type="button" class="submit-btn" onclick="checkAnswers()">Submit Quiz</button>
</form>

<div id="result" class="result" style="display: none;"></div>
</div>

<script>
function checkAnswers() {
const correctAnswers = {
q1: 'a',
q2: 'b',
q3: 'b'
};

let score = 0;
let totalQuestions = Object.keys(correctAnswers).length;

for (let question in correctAnswers) {
const userAnswer = document.querySelector(`input[name="${question}"]:checked`);
if (userAnswer && userAnswer.value === correctAnswers[question]) {
score++;
}
}

const resultDiv = document.getElementById('result');
resultDiv.style.display = 'block';
resultDiv.textContent = Your Score: ${score} / ${totalQuestions};
}
</script>

</body>
</html>

Coding_vieb

15 Nov, 15:27


// Display questions and options
$index = 1;
foreach ($questions as $question => $options) {
echo "<div class='question'>";
echo "<h3>Q$index: $question</h3>";
foreach ($options as $key => $value) {
echo "<label><input type='radio' name='answer$index' value='$key' required> $key) $value</label><br>";
}
echo "</div>";
$index++;
}
?>

<input type="submit" class="submit-btn" name="submit" value="Submit Quiz">
</form>

<?php
// Check the form submission
if (isset($_POST['submit'])) {
$score = 0;
$index = 1;

foreach ($correct_answers as $question => $correct_answer) {
$user_answer = $_POST["answer$index"] ?? '';
if ($user_answer === $correct_answer) {
$score++;
}
$index++;
}

echo "<h3>Your Score: $score / 10</h3>";
}
?>
</div>
</body>
</html>

Coding_vieb

15 Nov, 15:27


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Quiz</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
padding: 20px;
}
.quiz-container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.question {
margin-bottom: 20px;
}
.question h3 {
margin-bottom: 10px;
}
.question input[type="radio"] {
margin-right: 10px;
}
.submit-btn {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="quiz-container">
<h2>PHP Quiz - 10 Questions</h2>
<form action="quiz.php" method="POST">
<?php
// Define the questions and options
$questions = [
"What does HTML stand for?" => [
"a" => "Hyper Text Markup Language",
"b" => "Hyperlinks and Text Markup Language",
"c" => "Home Tool Markup Language"
],
"What does CSS stand for?" => [
"a" => "Cascading Style Sheets",
"b" => "Creative Style System",
"c" => "Computer Style Sheets"
],
"Which language is used for web development?" => [
"a" => "Python",
"b" => "PHP",
"c" => "JavaScript"
],
"What does PHP stand for?" => [
"a" => "Personal Hypertext Processor",
"b" => "Preprocessor Hypertext",
"c" => "PHP: Hypertext Preprocessor"
],
"Which of the following is a JavaScript framework?" => [
"a" => "React.js",
"b" => "Django",
"c" => "Laravel"
],
"Which tag is used to link a CSS file in HTML?" => [
"a" => "<css>",
"b" => "<style>",
"c" => "<link>"
],
"What is the correct syntax to output 'Hello World' in PHP?" => [
"a" => "echo 'Hello World';",
"b" => "print('Hello World');",
"c" => "write('Hello World');"
],
"Which of the following is not a programming language?" => [
"a" => "HTML",
"b" => "Python",
"c" => "Java"
],
"Which company developed JavaScript?" => [
"a" => "Google",
"b" => "Microsoft",
"c" => "Netscape"
],
"Which version control system is widely used for source code management?" => [
"a" => "Git",
"b" => "SVN",
"c" => "Mercurial"
]
];

// Define correct answers
$correct_answers = [
"What does HTML stand for?" => "a",
"What does CSS stand for?" => "a",
"Which language is used for web development?" => "c",
"What does PHP stand for?" => "c",
"Which of the following is a JavaScript framework?" => "a",
"Which tag is used to link a CSS file in HTML?" => "c",
"What is the correct syntax to output 'Hello World' in PHP?" => "a",
"Which of the following is not a programming language?" => "a",
"Which company developed JavaScript?" => "c",
"Which version control system is widely used for source code management?" => "a"
];

Coding_vieb

14 Nov, 03:13


learning Java Full Stack Developer Roadmap in 2024

Stage 1 – HTML
Stage 2 – CSS
Stage 3 – JavaScript
Stage 4 – Git + GitHub
Stage 5 – Build Frontend Project
Stage 6 – Java (Core Java, OOP)
Stage 7 – Build Backend Project
Stage 8 – Spring Framework (Spring Boot, MVC)
Stage 9 – RESTful APIs
Stage 10 – Databases (MySQL, PostgreSQL)
Stage 11 – Hibernate (JPA)
Stage 12 – Build Full Stack Project
Stage 13 – Testing (JUnit, Mockito)
Stage 14 – Deployment (Kubernetes)

🏆 Java Full Stack Developer 🏆

Coding_vieb

13 Nov, 15:24


Stay connected on LinkedIn

Coding_vieb

13 Nov, 15:24


https://www.linkedin.com/in/chetan-sharma-584629264?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app

Coding_vieb

13 Nov, 05:42


zip file also i uploaded