Skip to content

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

C Program To Create Simple Calculator Using If Else

15 August 2022 by zeroones.org

C Program To Create Simple Calculator Using If Else Example #include<stdio.h> #include<stdlib.h> void main() { int number, number1 = 9, number2 = 1; int sum, sub, mul, mod; float div; …

Read more

2×1 Multiplexer Design Using Verilog With Testbench

8 June 202514 August 2022 by zeroones.org

Introduction A multiplexer (MUX) is a fundamental digital circuit that selects one of several input signals and forwards it to a single output based on a control signal. A 2×1 …

Read more

C Program To Find Square And Cube Of Given Number

14 August 2022 by zeroones.org

C Program To Find Square And Cube Of Given Number Example #include<stdio.h> void main() { int number; printf("nn Enter Any Number Which is Greater Then 5: "); scanf("%d", &number); if …

Read more

Four Bit ALU Modeling Using Verilog With Testbench

8 June 202514 August 2022 by zeroones.org

Introduction An Arithmetic Logic Unit (ALU) is a critical component of a microprocessor, responsible for performing arithmetic and logical operations on binary data. A four-bit ALU, capable of processing four-bit …

Read more

C Program To Check Given Alphabet Is Vowel Or Consonant Using If Else Statement

13 August 2022 by zeroones.org

C Program To Check Given Alphabet Is Vowel Or Consonant Using If Else Statement Example #include<stdio.h> void main() { char character; printf("nn Enter any one Alphabet: "); scanf("%c",&character); if (character …

Read more

NOR Logic Gate Modeling Using NAND Gates In Verilog

13 August 2022 by zeroones.org

NOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 0 0 1 0 1 1 0   NOR GATE MODELING USING NAND GATES: …

Read more

C Program To Check Given Number Is Even Or Odd Using If Else Statement

12 August 2022 by zeroones.org

C Program To Check Given Number Is Even Or Odd Using If Else Statement Example #include<stdio.h> void main() { int number; printf(“n Enter A Integer: “); scanf(“%d”, &number); if (number …

Read more

XOR Logic Gate Modeling Using NAND Gates In Verilog

12 August 2022 by zeroones.org

XOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 0 1 0 1 0 1 1 1 1 0   XOR GATE MODELING USING NAND GATES: …

Read more

C Program To Check Given Value Is Digit, Alphabet Or Special Character

11 August 2022 by zeroones.org

C Program To Check Given Value Is Digit, Alphabet Or Special Character Example #include<stdio.h> void main() { char character; printf(“n Enter Ant One Character: “); scanf(“%c”, &character); if ((character >= …

Read more

NOT Logic Gate Modeling Using Verilog

11 August 2022 by zeroones.org

NOT GATE CIRCUIT: TRUTH TABLE: X Output(Z) 0 1 1 0   XNOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns / 1ps module notGate(output z, input x); assign z= …

Read more

Older posts
Newer posts
← Previous Page1 … Page27 Page28 Page29 … Page36 Next →

Recent Posts

  • Types of Semiconductor Memories
  • Volatile Memory: SRAM and DRAM
  • 4×1 Multiplexer Modeling Using Verilog With Testbench
  • Selection Sort Python Implementations
  • Bubble Sort Python Implementations
© 2025 zeroones, All Rights Reserved.