SlideShare une entreprise Scribd logo
1  sur  11
1.                 >    ?
     1.                     3.
     2.                     4.
2.                 <    ?
     1.                     3.
     2.                     4.
3.                          ?
     1.                     3.
     2.                     4.
4.                 <=       ?
     1.                     3.
     2.                     4.
5.                 >=       ?
     1.                     3.
     2.                     4.


                                  C
                                 6-10
#include <stdio.h>
#include <conio.h>
void main ( ) {
int X ;
float Y ;
     Char A, B ;
     Z, Ans :boolean;
clrscr ( );
X == 5;
     Y == 23.67;
     A == 'W');
     B == 'c');
     Z == true;
Ans == (X<>Y) and (A < B);
printf ("%d", Ans);
Ans == (Y>==X) and not (X<>Y);
printf ("%d", Ans);
Ans == (A<>B) or (X<==Y);
printf ("%d", Ans);
Ans == (X<>Y) and (A > B);
printf ("%d", Ans);
Ans == (Y>==X) or (X<>Y);
printf ("%d", Ans);
getch ( );
}
                                    'W'        87 'c'       99
6.          X <> Y) and (A < B)                   ?
     1.                                   3.
     2.                                   4.
7.          Y>=X) and not (X <>Y)                       ?
     1.                                   3.
     2.                                   4.
8.          A <> B) or (X < =Y)                   ?
1.                            3.
     2.                            4.
9.          X <> Y) and (A > B)             ?
     1.                            3.
     2.                            4.
10.          Y >= X) or (X <> Y)            ?
     1.                            3.
     2.                            4.


                                        11-12
#include <stdio.h>
#include <conio.h>
void main ( ) {
IntNum1 ;
     Float Num2 ;
     Char Ch ;
     String Str ;
     Num1 == 23 ;
     Num2 == 0.97 ;
Ch == 'z' ;
Str == 'Great !' ;
printf ("Num1 = ", Num1) ;
printf ("Num2 = ", Num2) ;
printf ("Ch = ", Ch) ;
printf ("Str = ", Str) ;
getch ( ) ;
}


11.         printf ('Str = ', Str');                ?
    1. 23                              3. z
    2. 0.97                            4. Great !
12.                     Run
printf                    ?
    1.             Number
    2.             String
    3.
    4.
                                          13-15
#include <stdio.h>
#include <conio.h>
void main ( ) {
IntNum1 ;
    Float Num2 ;
    Char Ch ;
    String Str ;
Clrscr;
    Num1 == 23;
    Num2 == 0.97;
Ch == "z";
Str == "Great !";
printf ("Num1 = ", Num1);
printf ("Num2 = ", Num2);
printf ("Ch = ", Ch);
printf ("Str = ", Str);
getch ( );
}


13.          printf ("Ch = ", Ch);                    ?
    1. 0.97                              3. z
    2. 23                                4. Great !
14.          printf ("Num2 = ", Num2);                    ?
    1. 0.97                              3. 23
    2. 22.03                             4. 23.97
15.                    Run
printf                    ?
    1.             Number
    2.             String
    3.
    4.


                                            16-17
#include <stdio.h>
#include <conio.h>
void main ( ) {
int Number ;
ClrScr;
printf ("Enter an integer number : ");
scanf ("%d", Number);
printf ("You entered ", Number);
scanf ("%d", Number);
getch ( );
}


16.          Printf        7                     ?
    1. =                                 3. :=
    2. =>                                4. ;=
17.          Scanf         10                        ?
    1. Single Quote                      3. Comma
    2. Double Quote                      4. Semi Colon




                                            18-20
#include <stdio.h>
#include <conio.h>
void main ( ) {
IntNum1 ;
    Float Num2 ;
    String Name ;
Clrscr ;
printf ("Enter your name : ") ;
scanf ("%C", Name) ;
printf ('Enter your age and salary : ') ;
scanf ("%C",Num1) ;
scanf ("%C",Num2) ;
printf ('Your name is ', Name) ;
printf ('You are ', Num1,' years old.') ;
printf ('Your salary ', Num2:2:2) ;
getch ( ) ;
}


18. ReadLn               9             ?
    1.                                     3.
         Num1                                   Num1
    2.                                     4.
         Name                                   Name
19. WriteLn              13             ?
    1.                                     3.
         Num1                                   Num1
    2.                                     4.
         Name                                   Name
20.                                      15           Num2:2:2 ?
  1.                Num2                          2                      2
  2.                Num                       2                      2
  3.                Num2                          2
  4.                Num                       2


                          Variables)
21. Float A, B ;     A       B                               ?
  1.                                      3.
  2.                                      4.
22.     10, 12, 0                    ?
  1. Number                               3. Char
  2. Float                                4. String
23. int A , B ;     A        B                           ?
  1. Integer                              3. Char
  2. Float                                4. String
24. Double A, B ;        A       B                               ?
  1.                                      3.
  2.                                      4.
25. Char A, B ;      A       B                               ?
  1.                                      3.
  2.                                      4.



                                          6-10
#include <stdio.h>
#include <conio.h>
void main( )
{
    A = 3;
    B = 15;
    C = 12;
    D = 8;
printf ("A+B+C =", A+B+C);
printf ("A+(B-C) =", A+(B-C));
printf ("(D-A)-2 =", (D-A)-2);
printf ("B DIV A =", B DIV A);
printf ("C MOD D =", C MOD D);
getch ( );
}


26. A+B+C = ?
    1. 30                        3. 3
    2. 6                         4. ABC
27. A+(B-C) = ?
    1. 30                        3. 3
    2. 6                         4. A+(B-C)
28. (D-A) - 2 = ?
    1. 30                        3. 3
    2. 6                         4. (D-A) - 2
29. B DIV A = ?
  1. 30                   3. 5
  2. 6                    4. 3
30. C MOD D = ?
  1. 30                   3. 3
  2. 4                    4. 1
                        1-10
31.                              ?
  1. If...                3. switch...else
  2. If...else            4.
32.                        ?
  1.                      3.
  2.                      4.
33.          case                    switch
                    ?
  1. break                3. while
  2. { }                  4. include
34.
                                              ?
  1. for                  3. while
  2. do-while             4. If....else
35.                                       ?
  1. continue             3. break
  2. switch               4.
36.            case                                   switch
                              ?
    1. break                               3. while
    2. { }                                 4. include
37.            6
?
    1. if                                  3. do.....while
    2. default                             4.
38.                               switch
                          ?
    1. break                               3. default
    2. else                                4. case
39.                                             ?
    1. case '1' :                          3. case num + 7
    2. if (ch== 'Y' +1)                    4.
40.                   if                   ?
    1. if (sale >=100000 <= 500000) Commission 0.025
    2. if (sale >=100,000 and sales 500,000) Commission 2.5%
    3. if (sale >=200000 && sales 500000) Commission 0.050
    4. if (sale between 100000 to 500000) Commission 0.025

Contenu connexe

Tendances

C Prog. - ASCII Values, Break, Continue
C Prog. -  ASCII Values, Break, ContinueC Prog. -  ASCII Values, Break, Continue
C Prog. - ASCII Values, Break, Continuevinay arora
 
Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Alex Penso Romero
 
C Prog. - Structures
C Prog. - StructuresC Prog. - Structures
C Prog. - Structuresvinay arora
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซีkramsri
 
C Prog - Strings
C Prog - StringsC Prog - Strings
C Prog - Stringsvinay arora
 
C Prog. - Strings (Updated)
C Prog. - Strings (Updated)C Prog. - Strings (Updated)
C Prog. - Strings (Updated)vinay arora
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซีkramsri
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanriturajj
 
Computer graphics programs in c++
Computer graphics programs in c++Computer graphics programs in c++
Computer graphics programs in c++Ankit Kumar
 
C programs Set 3
C programs Set 3C programs Set 3
C programs Set 3Koshy Geoji
 
Bayane moujazine umt cdt- untm
Bayane moujazine umt  cdt- untmBayane moujazine umt  cdt- untm
Bayane moujazine umt cdt- untmsharqedu
 
Nonlinear analysis of braced frame with hinge by hinge method in c programming
Nonlinear analysis of braced frame with hinge by hinge method in c programmingNonlinear analysis of braced frame with hinge by hinge method in c programming
Nonlinear analysis of braced frame with hinge by hinge method in c programmingSalar Delavar Qashqai
 
Metodologia de la programación - expresiones
Metodologia de la programación - expresionesMetodologia de la programación - expresiones
Metodologia de la programación - expresionesMar_Angeles
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File Rahul Chugh
 

Tendances (20)

Vcs16
Vcs16Vcs16
Vcs16
 
C Prog. - ASCII Values, Break, Continue
C Prog. -  ASCII Values, Break, ContinueC Prog. -  ASCII Values, Break, Continue
C Prog. - ASCII Values, Break, Continue
 
Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))Programa en C++ ( escriba 3 números y diga cual es el mayor))
Programa en C++ ( escriba 3 números y diga cual es el mayor))
 
C Prog. - Structures
C Prog. - StructuresC Prog. - Structures
C Prog. - Structures
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
C Prog - Strings
C Prog - StringsC Prog - Strings
C Prog - Strings
 
C Prog. - Strings (Updated)
C Prog. - Strings (Updated)C Prog. - Strings (Updated)
C Prog. - Strings (Updated)
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
C lab manaual
C lab manaualC lab manaual
C lab manaual
 
2 d matrices
2 d matrices2 d matrices
2 d matrices
 
Cpds lab
Cpds labCpds lab
Cpds lab
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshan
 
Computer graphics programs in c++
Computer graphics programs in c++Computer graphics programs in c++
Computer graphics programs in c++
 
Mini-curso JavaFX Aula2
Mini-curso JavaFX Aula2Mini-curso JavaFX Aula2
Mini-curso JavaFX Aula2
 
C programs Set 3
C programs Set 3C programs Set 3
C programs Set 3
 
Bayane moujazine umt cdt- untm
Bayane moujazine umt  cdt- untmBayane moujazine umt  cdt- untm
Bayane moujazine umt cdt- untm
 
Nonlinear analysis of braced frame with hinge by hinge method in c programming
Nonlinear analysis of braced frame with hinge by hinge method in c programmingNonlinear analysis of braced frame with hinge by hinge method in c programming
Nonlinear analysis of braced frame with hinge by hinge method in c programming
 
Metodologia de la programación - expresiones
Metodologia de la programación - expresionesMetodologia de la programación - expresiones
Metodologia de la programación - expresiones
 
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File
 

Similaire à ภาษา C

C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2Koshy Geoji
 
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU Hyderabad
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU HyderabadSrinivas Reddy Amedapu, CPDS, CP Lab, JNTU Hyderabad
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU HyderabadSrinivas Reddy Amedapu
 
Srinivas Reddy Amedapu C and Data Structures JNTUH Hyderabad
Srinivas Reddy Amedapu C and Data Structures JNTUH HyderabadSrinivas Reddy Amedapu C and Data Structures JNTUH Hyderabad
Srinivas Reddy Amedapu C and Data Structures JNTUH HyderabadSrinivas Reddy Amedapu
 
Simple C programs
Simple C programsSimple C programs
Simple C programsab11cs001
 
C programs
C programsC programs
C programsMinu S
 
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6 1
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6  1ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6  1
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6 1Little Tukta Lita
 
Lab 10 sem ii_12_13
Lab 10 sem ii_12_13Lab 10 sem ii_12_13
Lab 10 sem ii_12_13alish sha
 
Slide set 6 Strings and pointers.pdf
Slide set 6 Strings and pointers.pdfSlide set 6 Strings and pointers.pdf
Slide set 6 Strings and pointers.pdfHimanshuKansal22
 
MATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdfMATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdfahmed8651
 
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1Little Tukta Lita
 

Similaire à ภาษา C (20)

C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2
 
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU Hyderabad
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU HyderabadSrinivas Reddy Amedapu, CPDS, CP Lab, JNTU Hyderabad
Srinivas Reddy Amedapu, CPDS, CP Lab, JNTU Hyderabad
 
Srinivas Reddy Amedapu C and Data Structures JNTUH Hyderabad
Srinivas Reddy Amedapu C and Data Structures JNTUH HyderabadSrinivas Reddy Amedapu C and Data Structures JNTUH Hyderabad
Srinivas Reddy Amedapu C and Data Structures JNTUH Hyderabad
 
Simple C programs
Simple C programsSimple C programs
Simple C programs
 
C programs
C programsC programs
C programs
 
บทที่ 3
บทที่ 3บทที่ 3
บทที่ 3
 
C lab excellent
C lab excellentC lab excellent
C lab excellent
 
C and Data Structures Lab Solutions
C and Data Structures Lab SolutionsC and Data Structures Lab Solutions
C and Data Structures Lab Solutions
 
C and Data Structures
C and Data Structures C and Data Structures
C and Data Structures
 
c programs.pptx
c programs.pptxc programs.pptx
c programs.pptx
 
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6 1
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6  1ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6  1
ฟังก์ชั่นย่อยและโปรแกรมมาตรฐาน ม. 6 1
 
Lab 10 sem ii_12_13
Lab 10 sem ii_12_13Lab 10 sem ii_12_13
Lab 10 sem ii_12_13
 
Slide set 6 Strings and pointers.pdf
Slide set 6 Strings and pointers.pdfSlide set 6 Strings and pointers.pdf
Slide set 6 Strings and pointers.pdf
 
C lab programs
C lab programsC lab programs
C lab programs
 
C lab programs
C lab programsC lab programs
C lab programs
 
MATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdfMATLAB Questions and Answers.pdf
MATLAB Questions and Answers.pdf
 
C lab-programs
C lab-programsC lab-programs
C lab-programs
 
C Programming Exam problems & Solution by sazzad hossain
C Programming Exam problems & Solution by sazzad hossainC Programming Exam problems & Solution by sazzad hossain
C Programming Exam problems & Solution by sazzad hossain
 
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1
โปรแกรมย่อยและฟังชั่นมาตรฐาน ม.6 1
 
Progr3
Progr3Progr3
Progr3
 

Plus de พงศธร ภักดี

แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6
แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6
แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6พงศธร ภักดี
 
แผนการสอน เว็บไซต์ ม.5
แผนการสอน เว็บไซต์ ม.5แผนการสอน เว็บไซต์ ม.5
แผนการสอน เว็บไซต์ ม.5พงศธร ภักดี
 
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4พงศธร ภักดี
 
แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3พงศธร ภักดี
 
แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3พงศธร ภักดี
 
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2พงศธร ภักดี
 
แผนการสอน ระบบปฏิบัติการ Windows ม.1
แผนการสอน ระบบปฏิบัติการ Windows ม.1แผนการสอน ระบบปฏิบัติการ Windows ม.1
แผนการสอน ระบบปฏิบัติการ Windows ม.1พงศธร ภักดี
 
สร้างตัวหนังสือแตกๆ ด้วย Photoshop
สร้างตัวหนังสือแตกๆ ด้วย Photoshopสร้างตัวหนังสือแตกๆ ด้วย Photoshop
สร้างตัวหนังสือแตกๆ ด้วย Photoshopพงศธร ภักดี
 

Plus de พงศธร ภักดี (20)

วิชากราฟิก
วิชากราฟิกวิชากราฟิก
วิชากราฟิก
 
Web
WebWeb
Web
 
Powerpoint
PowerpointPowerpoint
Powerpoint
 
Excel
ExcelExcel
Excel
 
คอมเบื้องต้น1web
คอมเบื้องต้น1webคอมเบื้องต้น1web
คอมเบื้องต้น1web
 
C
CC
C
 
แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6
แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6
แผนการสอน ผลิตสื่อวีดีทัศน์ ม.6
 
แผนการสอน เว็บไซต์ ม.5
แผนการสอน เว็บไซต์ ม.5แผนการสอน เว็บไซต์ ม.5
แผนการสอน เว็บไซต์ ม.5
 
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4
แผนการสอน โปรแกรมคอมพิวเตอร์กราฟิก ม.4
 
แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3
 
แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3แผนการสอน ระบบเครือข่าย ม.3
แผนการสอน ระบบเครือข่าย ม.3
 
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2
แผนการจัดการเรียนรู้ ส่วนประกอบคอมพิวเตอร์ ม.2
 
แผนการสอน ระบบปฏิบัติการ Windows ม.1
แผนการสอน ระบบปฏิบัติการ Windows ม.1แผนการสอน ระบบปฏิบัติการ Windows ม.1
แผนการสอน ระบบปฏิบัติการ Windows ม.1
 
Namo webeditor 6
Namo webeditor 6Namo webeditor 6
Namo webeditor 6
 
Java
JavaJava
Java
 
Excel
ExcelExcel
Excel
 
Photoshop
PhotoshopPhotoshop
Photoshop
 
สร้างตัวหนังสือแตกๆ ด้วย Photoshop
สร้างตัวหนังสือแตกๆ ด้วย Photoshopสร้างตัวหนังสือแตกๆ ด้วย Photoshop
สร้างตัวหนังสือแตกๆ ด้วย Photoshop
 
คู่มือOpen office
คู่มือOpen officeคู่มือOpen office
คู่มือOpen office
 
คู่มือOpen office
คู่มือOpen officeคู่มือOpen office
คู่มือOpen office
 

Dernier

𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...rahim quresi
 
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With... Shivani Pandey
 
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...rahim quresi
 
📞 Contact Number 8617697112 VIP East Sikkim Call Girls
📞 Contact Number 8617697112 VIP East Sikkim Call Girls📞 Contact Number 8617697112 VIP East Sikkim Call Girls
📞 Contact Number 8617697112 VIP East Sikkim Call GirlsNitya salvi
 
📞 Contact Number 8617697112 VIP Ganderbal Call Girls
📞 Contact Number 8617697112 VIP Ganderbal Call Girls📞 Contact Number 8617697112 VIP Ganderbal Call Girls
📞 Contact Number 8617697112 VIP Ganderbal Call GirlsNitya salvi
 
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034 Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034  Independent Chenna...Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034  Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034 Independent Chenna... Shivani Pandey
 
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034 Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034  Independe...Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034  Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034 Independe... Shivani Pandey
 
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...hotbabesbook
 
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls Service
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls ServiceCollege Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls Service
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls ServiceNitya salvi
 
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment Booking
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment BookingKanpur call girls 📞 8617697112 At Low Cost Cash Payment Booking
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment BookingNitya salvi
 
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...rahim quresi
 
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...rahim quresi
 
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...SUHANI PANDEY
 
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...rahim quresi
 
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL... Shivani Pandey
 
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...priyasharma62062
 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Kolkata Call Girls Service ❤️ at @30% discount Everyday
Kolkata Call Girls Service ❤️ at @30% discount EverydayKolkata Call Girls Service ❤️ at @30% discount Everyday
Kolkata Call Girls Service ❤️ at @30% discount Everydayonly4webmaster01
 

Dernier (20)

𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Sonagachi Call Girls In All Kolkata 24/7 Provide Call W...
 
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
 
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...
𓀤Call On 6297143586 𓀤 Park Street Call Girls In All Kolkata 24/7 Provide Call...
 
📞 Contact Number 8617697112 VIP East Sikkim Call Girls
📞 Contact Number 8617697112 VIP East Sikkim Call Girls📞 Contact Number 8617697112 VIP East Sikkim Call Girls
📞 Contact Number 8617697112 VIP East Sikkim Call Girls
 
📞 Contact Number 8617697112 VIP Ganderbal Call Girls
📞 Contact Number 8617697112 VIP Ganderbal Call Girls📞 Contact Number 8617697112 VIP Ganderbal Call Girls
📞 Contact Number 8617697112 VIP Ganderbal Call Girls
 
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034 Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034  Independent Chenna...Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034  Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai ✔✔7427069034 Independent Chenna...
 
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034 Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034  Independe...Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034  Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai ✔✔7427069034 Independe...
 
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...
Model VVIP Call Girls In Porur 👉 Chennai 🍬 7427069034 Escort Service & Hotel ...
 
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls Service
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls ServiceCollege Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls Service
College Call Girls Pune 8617697112 Short 1500 Night 6000 Best call girls Service
 
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment Booking
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment BookingKanpur call girls 📞 8617697112 At Low Cost Cash Payment Booking
Kanpur call girls 📞 8617697112 At Low Cost Cash Payment Booking
 
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
𓀤Call On 6297143586 𓀤 Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
 
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Bellandur ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...
(Verified Models) Airport Kolkata Escorts Service (+916297143586) Escort agen...
 
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Koregaon Park ( Pune ) Call ON 8005736733 Starting From ...
 
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
 
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...
Low Rate Call Girls Dhakuria (8005736733) 100% GENUINE ESCORT SERVICE & HOTEL...
 
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...
Navi Mumbai Call Girls -📞9833754194-Call Girls Number Vashi-Nerul Call Girls ...
 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
 
Kolkata Call Girls Service ❤️ at @30% discount Everyday
Kolkata Call Girls Service ❤️ at @30% discount EverydayKolkata Call Girls Service ❤️ at @30% discount Everyday
Kolkata Call Girls Service ❤️ at @30% discount Everyday
 

ภาษา C

  • 1. 1. > ? 1. 3. 2. 4. 2. < ? 1. 3. 2. 4. 3. ? 1. 3. 2. 4. 4. <= ? 1. 3. 2. 4. 5. >= ? 1. 3. 2. 4. C 6-10 #include <stdio.h> #include <conio.h> void main ( ) { int X ; float Y ; Char A, B ; Z, Ans :boolean; clrscr ( );
  • 2. X == 5; Y == 23.67; A == 'W'); B == 'c'); Z == true; Ans == (X<>Y) and (A < B); printf ("%d", Ans); Ans == (Y>==X) and not (X<>Y); printf ("%d", Ans); Ans == (A<>B) or (X<==Y); printf ("%d", Ans); Ans == (X<>Y) and (A > B); printf ("%d", Ans); Ans == (Y>==X) or (X<>Y); printf ("%d", Ans); getch ( ); } 'W' 87 'c' 99 6. X <> Y) and (A < B) ? 1. 3. 2. 4. 7. Y>=X) and not (X <>Y) ? 1. 3. 2. 4. 8. A <> B) or (X < =Y) ?
  • 3. 1. 3. 2. 4. 9. X <> Y) and (A > B) ? 1. 3. 2. 4. 10. Y >= X) or (X <> Y) ? 1. 3. 2. 4. 11-12 #include <stdio.h> #include <conio.h> void main ( ) { IntNum1 ; Float Num2 ; Char Ch ; String Str ; Num1 == 23 ; Num2 == 0.97 ; Ch == 'z' ; Str == 'Great !' ; printf ("Num1 = ", Num1) ; printf ("Num2 = ", Num2) ; printf ("Ch = ", Ch) ; printf ("Str = ", Str) ;
  • 4. getch ( ) ; } 11. printf ('Str = ', Str'); ? 1. 23 3. z 2. 0.97 4. Great ! 12. Run printf ? 1. Number 2. String 3. 4. 13-15 #include <stdio.h> #include <conio.h> void main ( ) { IntNum1 ; Float Num2 ; Char Ch ; String Str ; Clrscr; Num1 == 23; Num2 == 0.97; Ch == "z"; Str == "Great !";
  • 5. printf ("Num1 = ", Num1); printf ("Num2 = ", Num2); printf ("Ch = ", Ch); printf ("Str = ", Str); getch ( ); } 13. printf ("Ch = ", Ch); ? 1. 0.97 3. z 2. 23 4. Great ! 14. printf ("Num2 = ", Num2); ? 1. 0.97 3. 23 2. 22.03 4. 23.97 15. Run printf ? 1. Number 2. String 3. 4. 16-17 #include <stdio.h> #include <conio.h> void main ( ) { int Number ;
  • 6. ClrScr; printf ("Enter an integer number : "); scanf ("%d", Number); printf ("You entered ", Number); scanf ("%d", Number); getch ( ); } 16. Printf 7 ? 1. = 3. := 2. => 4. ;= 17. Scanf 10 ? 1. Single Quote 3. Comma 2. Double Quote 4. Semi Colon 18-20 #include <stdio.h> #include <conio.h> void main ( ) {
  • 7. IntNum1 ; Float Num2 ; String Name ; Clrscr ; printf ("Enter your name : ") ; scanf ("%C", Name) ; printf ('Enter your age and salary : ') ; scanf ("%C",Num1) ; scanf ("%C",Num2) ; printf ('Your name is ', Name) ; printf ('You are ', Num1,' years old.') ; printf ('Your salary ', Num2:2:2) ; getch ( ) ; } 18. ReadLn 9 ? 1. 3. Num1 Num1 2. 4. Name Name 19. WriteLn 13 ? 1. 3. Num1 Num1 2. 4. Name Name
  • 8. 20. 15 Num2:2:2 ? 1. Num2 2 2 2. Num 2 2 3. Num2 2 4. Num 2 Variables) 21. Float A, B ; A B ? 1. 3. 2. 4. 22. 10, 12, 0 ? 1. Number 3. Char 2. Float 4. String 23. int A , B ; A B ? 1. Integer 3. Char 2. Float 4. String 24. Double A, B ; A B ? 1. 3. 2. 4. 25. Char A, B ; A B ? 1. 3. 2. 4. 6-10
  • 9. #include <stdio.h> #include <conio.h> void main( ) { A = 3; B = 15; C = 12; D = 8; printf ("A+B+C =", A+B+C); printf ("A+(B-C) =", A+(B-C)); printf ("(D-A)-2 =", (D-A)-2); printf ("B DIV A =", B DIV A); printf ("C MOD D =", C MOD D); getch ( ); } 26. A+B+C = ? 1. 30 3. 3 2. 6 4. ABC 27. A+(B-C) = ? 1. 30 3. 3 2. 6 4. A+(B-C) 28. (D-A) - 2 = ? 1. 30 3. 3 2. 6 4. (D-A) - 2
  • 10. 29. B DIV A = ? 1. 30 3. 5 2. 6 4. 3 30. C MOD D = ? 1. 30 3. 3 2. 4 4. 1 1-10 31. ? 1. If... 3. switch...else 2. If...else 4. 32. ? 1. 3. 2. 4. 33. case switch ? 1. break 3. while 2. { } 4. include 34. ? 1. for 3. while 2. do-while 4. If....else 35. ? 1. continue 3. break 2. switch 4.
  • 11. 36. case switch ? 1. break 3. while 2. { } 4. include 37. 6 ? 1. if 3. do.....while 2. default 4. 38. switch ? 1. break 3. default 2. else 4. case 39. ? 1. case '1' : 3. case num + 7 2. if (ch== 'Y' +1) 4. 40. if ? 1. if (sale >=100000 <= 500000) Commission 0.025 2. if (sale >=100,000 and sales 500,000) Commission 2.5% 3. if (sale >=200000 && sales 500000) Commission 0.050 4. if (sale between 100000 to 500000) Commission 0.025