HELLO EVERYONE, WELCOME TO MY BLOG. TODAY I AM GOIN TO SHOW YOU SOME QUICK NOTES FOR YOUR VIVA,PRACTICALS AND EXAMS. TOPIC- MULTIPLEXER AND DEMULTIPLEXER MULTIPLEXER- INTRODUCTION A multiplexer, also known as a data selector, is a device that selects between several analog or digital input signals an...
ventional computers, translation of the program or the source code into object/machine code is done by various methods which include assembler, compiler and interpreter. Below are the underlying details of how they differ from one another. What You Need To Know About Assembler An assembler is a program that takes basic computer instruction or instructions and then converts them into a pattern of bits that the computer processor can use to perform its basic operations. Usually, language used to program the assembler is referred to as assembly language . Assembler converts source code to an object code first then it converts the object code to machine language with the help of the linker programs. OR ASSEMBLER An assembler is a program that converts assembly language into machine code. It takes the basic commands and op...
1. 3,4,5,6A represent it in array code:- array = [3, 4, 5, "6A"] for element in array: print(element) 2. show * in array code:- #include <stdio.h> int main() { int array[] = { 1, 2, 3, 42}; printf("%d\n", array[0]); printf("%d\n", array[1]); printf("%d\n", array[2]); printf("%c\n", array[3]); return 0; } 3. Calculate the no. of numerical digits in a string. code:- s tring = "Madhav 9034, I have 34 Rubbe4." count = 0 for char in string: if char.isdigit(): count = count + 1 print("Number of numerical digits:", count) or def count_digits(input_string): count = sum(1 for char in input_string if char.isdigit()) return count if __name__ == "__main__": user_input = input("Enter a string: ") digit_count = count_digits(user_input) ...
Nice Blog. Thanks for sharing very useful blog for students. It will be really helpful.
ReplyDeleteTop 5 Skills that Give Engineering Graduates Boost in Career
Top Reasons Why You Should Pursue B.Ed Course
Find Your Route To A Successful Career After Graduation
What is the future scope of a BSc in fisheries?
Career Opportunities for Students after Pursuing Diploma Courses
Thanku so much for your appreciation 😊
Delete