Skip to content
  • Home
  • CCNA Labs
    • CCNA 1 LAB Activities (v6 & v7)
    • CCNA 2 LAB Activities (v6 & v7)
    • CCNA 3 LAB Activities (v6 & v7)
    • CCNA 4 Lab Activities
  • Linux
    • Linux Unhatched
    • Linux Essentials 2.0
    • Linux Essentials
    • Introduction to Linux I
    • Introduction to Linux II
  • Programming
    • PCAP – Programming Essentials in Python
    • CLA – Programming Essentials in C
    • CPA Programming Essentials in C++
  • About
    • Contact Us
    • Privacy Policy

CCNA 7 Exam Answers 2023

Go with our CCIE, Passed 100%

  • ITE
    • ITE - IT Essentials v7.0
    • ITE - IT Essentials v6.0
      • IT Essentials Lab 2019
    • ITE v5.0 Exam
    • Virtual Activity Laptop
    • Virtual Activity Desktop
  • NE
    • MF
  • CCNA
    • CCNA1
      • CCNA1 v7.0 – ITN
      • CCNA1 v6.0
    • CCNA2
      • CCNA2 v7.0 – SRWE
      • CCNA2 v6.0
    • CCNA3
      • CCNA3 v7.0 – ENSA
      • CCNA3 v6.0
    • CCNA4
      • CCNA4 v6.0
  • Cyber-Security
    • ITC – Introduction to Cybersecurity 2.1 (Level 1)
    • CE – Cybersecurity Essentials 1.1 (Level 2)
    • CCNA CyberOps 1.1 (Level 3)
  • Security
    • CCNA Security v2
  • DevNet
  • CCNA PT Lab 2023

CLA – Programming Essentials in C Quizzes Chapter 3 Assessment Exam Answers Full 100%

Last Updated on May 20, 2021 by Admin

CLA – Programming Essentials in C Quizzes Chapter 3 Assessment Exam Answers Full 100%

  1. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j, k; 
            i = -1; 
            j = 1; 
            if(i) 
            	j--; 
            if(j) 
            	i++; 
            k = i * j; 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs2
    • the program outputs -1
    • the program outputs 1
    • the program outputs 0
  2. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j, k; 
            i = 0; 
            j = 0; 
            if(j) 
            	j--; 
            else 
            	i++; 
            if(i) 
            	i--; 
            else 
            	j++; 
    
            k = i + j; 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 2
    • the program outputs -1
    • the program outputs 0
    • the program outputs 1
  3. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j, k; 
            i = 2; 
            j = 3; 
            if(j) 
            	j--; 
            else if(i) 
            	i++; 
            else 
            	j++; 
            if(j) 
            	i--; 
            else if(j) 
            	j++; 
            else 
            	j = 0; 
            k = i + j; 
            printf("%d",k); 
            return 0; 
        }

     

    • the program outputs 3
    • the program outputs 1
    • the program outputs 2
    • the program outputs 0
  4. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            double x = -.1; 
            int i = x; 
            printf("%d",i); 
            return 0; 
        }
    • the program outputs -0.100000
    • the program outputs -1
    • the program outputs 0.100000
    • the program outputs 0
  5. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            float x,y; 
            int i,j; 
            x = 1.5; y = 2.0; 
            i = 2; j = 3; 
            x = x * y + i / j; 
            printf("%f",x); 
            return 0; 
        }
    • the program outputs 3.000000
    • the program outputs 2.000000
    • the program outputs 1.000000
    • the program outputs 0.000000
  6. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            float x,y; 
            int i,j; 
            x = 1.5; y = 2.0; 
            i = 2; j = 4; 
            x = x * y + (float)i / j; 
            printf("%f",x); 
            return 0; 
        }
    • the program outputs 2.000000
    • the program outputs 3.000000
    • the program outputs 4.000000
    • the program outputs 3.500000
  7. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i; 
            i = 1; 
            while(i < 16) 
            	i *= 2; 
            printf("%d",i); 
            return 0; 
        }

     

    • the program outputs 32
    • the program outputs 4
    • the program outputs 16
    • the program outputs 8
  8. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j; 
            i = 1; j = 1; 
            while(i < 16) { 
            	i += 4; 
            	j++; 
            } 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 4
    • the program outputs 7
    • the program outputs 5
    • the program outputs 6
  9. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 7, j = i - i; 
            while(i) { 
            	i /= 2; 
            	j++; 
            } 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 3
    • the program outputs 2
    • the program outputs 1
    • the program outputs 0
  10. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 7, j = i - i; 
            while(!i) { 
            	i /= 2; 
            	j++; 
            } 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 1
    • the program outputs 0
    • the program outputs 2
    • the program outputs 3
  11. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j = 1; 
            for(i = 11; i > 0; i /= 3) 
            	j++; 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 3
    • the program outputs 5
    • the program outputs 4
    • the program outputs 2
  12. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i, j = 0; 
            for(i = 0; !i ; i++) 
            	j++; 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 1
    • the program outputs 3
    • the program outputs 0
    • the program outputs 2
  13. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = -2; 
            for(;;) { 
            	i *= 3; 
            	j++; 
            	if(i > 30) 
            		break; 
            } 
            printf("%d",j); 
            return 0; 
        }

     

    • the program outputs 3
    • the program outputs 1
    • the program outputs 0
    • the program outputs 2
  14. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = -2, k; 
            k = (i >= 0) && (j >= 00) || (i <= 0) && (j <= 0); 
            printf("%d",k); 
            return 0; 
        }

     

    • the program outputs 3
    • the program outputs 2
    • the program outputs 0
    • the program outputs 1
  15. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = -2, k; 
            k = (i >= 0) || (j >= 00) && (i <= 0) || (j <= 0); 
            printf("%d",k); 
            return 0; 
        }

     

    • the program outputs 1
    • the program outputs 3
    • the program outputs 0
    • the program outputs 2
  16. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = -2, k; 
            k = !(i >= 0) || !(j >= 00) && !(i <= 0) || !(j <= 0); 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 0
    • the program outputs 1
    • the program outputs 2
    • the program outputs 3
  17. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = 0, k; 
            k = i & j; 
            k |= !!k; 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 1
    • the program outputs 2
    • the program outputs 0
    • the program outputs 3
  18. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = 0, k; 
            k = !i | j; 
            k = !k; 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 2
    • the program outputs 0
    • the program outputs 1
    • the program outputs 3
  19. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 1, j = 0, k; 
            k = (i ^ j) + (!i ^ j) + (i ^ !j) + (!i ^ !j); 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 1
    • the program outputs 2
    • the program outputs 3
    • the program outputs 0
  20. What happens if you try to compile and run this program?

        #include <stdio.h> 
        int main(void) { 
            int i = 0, j = 1, k; 
            k = i << j + j << i; 
            printf("%d",k); 
            return 0; 
        }
    • the program outputs 0
    • the program outputs 2
    • the program outputs 3
    • the program outputs 1
  • CCNA1 v7
  • CCNA2 v7
  • CCNA3 v7
System Test Exam Answers
Modules 1 – 3 Exam Answers
Modules 4 – 7 Exam Answers
Modules 8 – 10 Exam Answers
Modules 11 – 13 Exam Answers
Modules 14 – 15 Exam Answers
Modules 16 – 17 Exam Answers
Practice Final – ITN Answers
Course Feedback
ITN Practice PT Skills Assessment (PTSA)
Final Exam Answers
Modules 1 – 4 Exam Answers
Modules 5 – 6 Exam Answers
Modules 7 – 9 Exam Answers
Modules 10 – 13 Exam Answers
Modules 14 – 16 Exam Answers
ITN Practice Skills Assessment – PT Answers
SRWE Practice Skills Assessment – PT Part 1 Answers
SRWE Practice Skills Assessment – PT Part 2 Answers
SRWE Hands On Skills Exam Answers
SRWE Practice Final Exam Answers
SRWE Final Exam Answers 
Modules 1 – 2 Exam Answers
Modules 3 – 5 Exam Answers
Modules 6 – 8 Exam Answers
Modules 9 – 12 Exam Answers
Modules 13 – 14 Exam Answers
ITN Practice PT Skills Assessment (PTSA) Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 1 Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 2 Answers
ENSA Practice PT Skills Assessment (PTSA) Answers
ENSA Hands On Skills Exam Answers
Practice Final – ENSA Answers
ENSA Final Exam Answers
CCNA Certification Practice Exam Answers

Copyright © 2023 PressExam.