5 Importance of Educational Technology

5 Importance of Educational Technology

Importance of Educational technology for the teacher and student Introduction With the stimulation in technology, the educational industry has positively embraced technology for better outcomes. There has been a huge reform in the teaching tools since they were once restricted to chalk and hard copies. Thanks to the internet, students can simply click a button … Read more

Introduction to Computer Science Using Python

Introduction to Computer Science Using Python

Introduction to Computer Science Using Python || Introduction to Computer Science and Programming using python || Introduction to Computer Science and Programming Using Python book Introduction to Computer Science Using Python Understanding Computer Science and Its Importance Computer science is the theory, experimentation, and engineering that form the basis for computer technology. It studies the … Read more

Binary Search Algorithm in C++

Binary Search in C++

Binary Search in C++|| Binary search algorithm || Binary Search in C program || Binary searching in c++ Binary search is one of the most fundamental and effective search methods in the field of computer science and algorithms. It is frequently utilized in many applications where sorted data is arranged. We will go into the … Read more

The sum of n number of odd natural number in C | Free code Center

The sum of n number of odd natural number in C

The sum of n number of odd natural number in C Write a C program to display the n terms of odd natural numbers and their sum.like: 1 3 5 7 … n #include<stdio.h> void main () { int i,n,odd=0,sum=0; scanf(“%d”,&n); for(i=1;i<=n;i++){ if(i%2!=0){ printf (“%d”,i); sum=i+n; } } printf(“\nThe odd numbers are :%d\n”,i); printf(“The Sum … Read more

কিভাবে প্রোগ্রামিং শুরু করবেন | How to start programming

কিভাবে প্রোগ্রামিং শুরু করবেন

কিভাবে প্রোগ্রামিং শুরু করবেন বাংলায় কিভাবে প্রোগ্রামিং শুরু করবেন নিচের ধাপগুলি অনুসরণ করতে পারেন: ১. একটি প্রোগ্রামিং ভাষা নির্বাচন করুন: প্রোগ্রামিং শুরু করতে আপনাকে একটি প্রোগ্রামিং ভাষা নির্বাচন করতে হবে। অনেকগুলি প্রোগ্রামিং ভাষা রয়েছে, যেগুলির প্রতিটির নিজস্ব সুবিধা এবং উদ্দেশ্য রয়েছে। প্রাথমিক মানে বাংলায় প্রোগ্রামিং করতে পারেন Python, JavaScript এবং Ruby। আপনার লক্ষ্য এবং আগ্রহ … Read more

How do you add one object to another object in CPP?-3

How do you add one object to another object in CPP

How do you add one object to another object in CPP? In C++, objects are created using classes. A class is a user-defined data type that defines a blueprint for creating objects. One of the most common operations performed on objects is adding one object to another object. This operation is known as object addition, … Read more

Understanding the Bitwise XOR Operator in C++: A Beginner’s Guide

Bitwise XOR Operator in C++

Bitwise XOR Operator in C++ In C++, the bitwise XOR operator (^) is used to perform an exclusive OR (XOR) operation between two integers. This operation returns a value where each bit is set to 1 if and only if exactly one of the corresponding bits in the operands is 1. The bitwise XOR operator … Read more

Beecrowd 1178 Array Fill III Solution in C, C++|| Beecrowd 1178 || Free Code Center

Beecrowd 1178

Problem link Beecrowd 1178 Array Fill III Solution in C, C++ Read a number X. Put this X at the first position of an array N [100]. In each subsequent position (1 up to 99) put half of the number inserted at the previous position, according to the example below. Print all the vector N. Input The input contains … Read more